2017-01-08 12:13:18 +03:00
|
|
|
#ifndef _BCACHE_CHARDEV_H
|
|
|
|
#define _BCACHE_CHARDEV_H
|
|
|
|
|
2017-03-04 09:09:52 +03:00
|
|
|
#ifndef NO_BCACHE_CHARDEV
|
|
|
|
|
2017-03-11 00:40:01 +03:00
|
|
|
long bch_fs_ioctl(struct bch_fs *, unsigned, void __user *);
|
2017-03-04 09:09:52 +03:00
|
|
|
|
2017-03-11 00:40:01 +03:00
|
|
|
void bch_fs_chardev_exit(struct bch_fs *);
|
|
|
|
int bch_fs_chardev_init(struct bch_fs *);
|
2017-03-04 09:09:52 +03:00
|
|
|
|
|
|
|
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,
|
2017-03-04 09:09:52 +03:00
|
|
|
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; }
|
2017-03-04 09:09:52 +03:00
|
|
|
|
|
|
|
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 */
|