]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
clocksource: Fix permissions for available_clocksource
authorHeiko Carstens <heiko.carstens@de.ibm.com>
Fri, 2 May 2008 10:49:40 +0000 (12:49 +0200)
committerThomas Gleixner <tglx@linutronix.de>
Sat, 3 May 2008 16:11:48 +0000 (18:11 +0200)
File permissions for
/sys/devices/system/clocksource/clocksource0/available_clocksource
are 600 which allows write access. But this is in fact a read only
file. So change permissions to 400.

Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Cc: John Stultz <johnstul@us.ibm.com>
Cc: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
kernel/time/clocksource.c

index 73961f35fdc84ba1ba28251bb4115f52b094d908..83221ed76e64d87ffb3dbd4ed8c5828ce2309521 100644 (file)
@@ -474,7 +474,7 @@ sysfs_show_available_clocksources(struct sys_device *dev, char *buf)
 static SYSDEV_ATTR(current_clocksource, 0600, sysfs_show_current_clocksources,
                   sysfs_override_clocksource);
 
-static SYSDEV_ATTR(available_clocksource, 0600,
+static SYSDEV_ATTR(available_clocksource, 0400,
                   sysfs_show_available_clocksources, NULL);
 
 static struct sysdev_class clocksource_sysclass = {