Skip to content

Commit

Permalink
switch hostfs_iattr to explicit unsigned short
Browse files Browse the repository at this point in the history
It's shared between kernel-compiled hostfs_kern and userland-compiled
hostfs_user (it's uml stuff).  Use explicit type instead of playing
silly buggers with mode_t.  It's not a userland API per se; it interacts
between code compiled with types same as for host kernel and, directly
linked to it, code talking to libc.  Both sides come from the same
kernel source...

Signed-off-by: Al Viro <[email protected]>
  • Loading branch information
Al Viro committed Jan 4, 2012
1 parent a85cfda commit 138d570
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fs/hostfs/hostfs.h
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@

struct hostfs_iattr {
unsigned int ia_valid;
mode_t ia_mode;
unsigned short ia_mode;
uid_t ia_uid;
gid_t ia_gid;
loff_t ia_size;
Expand Down

0 comments on commit 138d570

Please sign in to comment.