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
|
|
|
|
|
|
|
|
long bch_fs_ioctl(struct cache_set *, unsigned, void __user *);
|
|
|
|
|
|
|
|
void bch_fs_chardev_exit(struct cache_set *);
|
|
|
|
int bch_fs_chardev_init(struct cache_set *);
|
|
|
|
|
|
|
|
void bch_chardev_exit(void);
|
|
|
|
int __init bch_chardev_init(void);
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
static inline long bch_fs_ioctl(struct cache_set *c,
|
|
|
|
unsigned cmd, void __user * arg)
|
|
|
|
{
|
|
|
|
return -ENOSYS;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void bch_fs_chardev_exit(struct cache_set *c) {}
|
|
|
|
static inline int bch_fs_chardev_init(struct cache_set *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 */
|