All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] sysfs: change permissions for /sys from 0755 to 0555
@ 2011-12-14 15:34 Vitaly Kuznetsov
  2011-12-19  2:32 ` Eric W. Biederman
  2012-01-05  0:17 ` Greg KH
  0 siblings, 2 replies; 5+ messages in thread
From: Vitaly Kuznetsov @ 2011-12-14 15:34 UTC (permalink / raw)
  To: Greg Kroah-Hartman, linux-kernel

There is a misleading difference between /proc and /sys permissions, 
/proc is 0555 and /sys is 0755. But
as it is impossible to create or unlink something in /sys it would be 
nice to have same permissions.

Signed-off-by: Vitaly Kuznetsov <vitty@altlinux.ru>
---
  fs/sysfs/mount.c |    2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/fs/sysfs/mount.c b/fs/sysfs/mount.c
index 4974995..9d56fdd 100644
--- a/fs/sysfs/mount.c
+++ b/fs/sysfs/mount.c
@@ -36,7 +36,7 @@ struct sysfs_dirent sysfs_root = {
         .s_name         = "",
         .s_count        = ATOMIC_INIT(1),
         .s_flags        = SYSFS_DIR,
-       .s_mode         = S_IFDIR | S_IRWXU | S_IRUGO | S_IXUGO,
+       .s_mode         = S_IFDIR | S_IRUGO | S_IXUGO,
         .s_ino          = 1,
  };

-- 
1.7.7.4


^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2012-01-17 12:17 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-12-14 15:34 [PATCH] sysfs: change permissions for /sys from 0755 to 0555 Vitaly Kuznetsov
2011-12-19  2:32 ` Eric W. Biederman
2011-12-20 12:34   ` Vitaly Kuznetsov
2012-01-05  0:17 ` Greg KH
2012-01-17 12:17   ` Vitaly Kuznetsov

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.