projects
/
GitHub
/
LineageOS
/
android_kernel_samsung_universal7580.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5a7ad7f
)
sysfs: reposition sysfs_dirent->s_mode.
author
Tejun Heo
<htejun@gmail.com>
Thu, 20 Sep 2007 07:05:10 +0000
(16:05 +0900)
committer
Greg Kroah-Hartman
<gregkh@suse.de>
Fri, 12 Oct 2007 21:51:10 +0000
(14:51 -0700)
Move s_mode downward such that it's side-by-side with s_iattr which is
used for the same thing.
Signed-off-by: Tejun Heo <htejun@gmail.com>
Acked-by: Cornelia Huck <cornelia.huck@de.ibm.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
fs/sysfs/sysfs.h
patch
|
blob
|
blame
|
history
diff --git
a/fs/sysfs/sysfs.h
b/fs/sysfs/sysfs.h
index 63adbecc9ba4c58206bc98d9b76e16880251c95f..6cf61c882baa93658f3cc60cb677a0d4037331fb 100644
(file)
--- a/
fs/sysfs/sysfs.h
+++ b/
fs/sysfs/sysfs.h
@@
-39,8
+39,8
@@
struct sysfs_dirent {
} s_elem;
unsigned int s_flags;
- umode_t s_mode;
ino_t s_ino;
+ umode_t s_mode;
struct iattr *s_iattr;
atomic_t s_event;
};