dect
/
linux-2.6
Archived
13
0
Fork 0

sysfs: Pack sysfs_dirent more tightly.

Placing the 16bit s_mode between a pointer and a long doesn't pack well
especailly on 64bit where we wast 48 bits.  So move s_mode and
declare it as a unsigned short.  This is the sysfs backing store
after all we don't need fields extra large just in case someday
we want userspace to be able to use a larger value.

Acked-by: Tejun Heo <tj@kernel.org>
Signed-off-by: Eric W. Biederman <ebiederm@aristanetworks.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
Eric W. Biederman 2010-02-12 19:22:24 -08:00 committed by Greg Kroah-Hartman
parent f8d4f618fe
commit 19c38b632d
1 changed files with 1 additions and 1 deletions

View File

@ -66,8 +66,8 @@ struct sysfs_dirent {
};
unsigned int s_flags;
unsigned short s_mode;
ino_t s_ino;
umode_t s_mode;
struct sysfs_inode_attrs *s_iattr;
};