diff options
Diffstat (limited to 'fs/befs/befs.h')
| -rw-r--r-- | fs/befs/befs.h | 7 | 
1 files changed, 5 insertions, 2 deletions
diff --git a/fs/befs/befs.h b/fs/befs/befs.h index d9a40abda6b..3a7813ab8c9 100644 --- a/fs/befs/befs.h +++ b/fs/befs/befs.h @@ -20,8 +20,8 @@ typedef u64 befs_blocknr_t;   */  typedef struct befs_mount_options { -	gid_t gid; -	uid_t uid; +	kgid_t gid; +	kuid_t uid;  	int use_gid;  	int use_uid;  	int debug; @@ -88,8 +88,11 @@ enum befs_err {  /****************************/  /* debug.c */ +__printf(2, 3)  void befs_error(const struct super_block *sb, const char *fmt, ...); +__printf(2, 3)  void befs_warning(const struct super_block *sb, const char *fmt, ...); +__printf(2, 3)  void befs_debug(const struct super_block *sb, const char *fmt, ...);  void befs_dump_super_block(const struct super_block *sb, befs_super_block *);  | 
