bcachefs-tools/libbcache/chardev.h

31 lines
687 B
C
Raw Normal View History

2017-01-08 12:13:18 +03:00
#ifndef _BCACHE_CHARDEV_H
#define _BCACHE_CHARDEV_H
#ifndef NO_BCACHE_CHARDEV
2017-03-11 00:40:01 +03:00
long bch_fs_ioctl(struct bch_fs *, unsigned, void __user *);
2017-03-11 00:40:01 +03:00
void bch_fs_chardev_exit(struct bch_fs *);
int bch_fs_chardev_init(struct bch_fs *);
void bch_chardev_exit(void);
int __init bch_chardev_init(void);
#else
2017-03-11 00:40:01 +03:00
static inline long bch_fs_ioctl(struct bch_fs *c,
unsigned cmd, void __user * arg)
{
return -ENOSYS;
}
2017-03-11 00:40:01 +03:00
static inline void bch_fs_chardev_exit(struct bch_fs *c) {}
static inline int bch_fs_chardev_init(struct bch_fs *c) { return 0; }
static inline void bch_chardev_exit(void) {}
static inline int __init bch_chardev_init(void) { return 0; }
#endif
2017-01-08 12:13:18 +03:00
#endif /* _BCACHE_CHARDEV_H */