af01bda509
The "bdev" library provides basic primitives for file systems to talk to block device drivers, hiding the details of the underlying protocol and interaction model. This version of libbdev is rather basic. It is planned to support the following features in the long run: - asynchronous requests and replies; - recovery support for underlying block drivers; - retrying of failed I/O requests. The commit also changes our block-based file systems (mfs, ext2, isofs) to make use of libbdev.
14 lines
396 B
C
14 lines
396 B
C
#ifndef _BDEV_PROTO_H
|
|
#define _BDEV_PROTO_H
|
|
|
|
/* driver.c */
|
|
extern void bdev_driver_init(void);
|
|
extern void bdev_driver_clear(dev_t dev);
|
|
extern void bdev_driver_set(dev_t dev, endpoint_t endpt);
|
|
extern endpoint_t bdev_driver_get(dev_t dev);
|
|
|
|
/* ipc.c */
|
|
extern void bdev_update(dev_t dev, endpoint_t endpt);
|
|
extern int bdev_sendrec(dev_t dev, const message *m_orig);
|
|
|
|
#endif /* _BDEV_PROTO_H */
|