From: Vasiliy Kulikov Date: Tue, 22 Mar 2011 23:34:53 +0000 (-0700) Subject: drivers/rtc/rtc-ds1511.c: world-writable sysfs nvram file X-Git-Tag: v2.6.39-rc1~221 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=49d50fb1c28738ef6bad0c2b87d5355a1653fed5;p=~emulex%2Finfiniband.git drivers/rtc/rtc-ds1511.c: world-writable sysfs nvram file Don't allow everybogy to write to NVRAM. Signed-off-by: Vasiliy Kulikov Cc: Andy Sharp Cc: Alessandro Zummo Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/drivers/rtc/rtc-ds1511.c b/drivers/rtc/rtc-ds1511.c index 3fffd708711..fbabc773dde 100644 --- a/drivers/rtc/rtc-ds1511.c +++ b/drivers/rtc/rtc-ds1511.c @@ -468,7 +468,7 @@ ds1511_nvram_write(struct file *filp, struct kobject *kobj, static struct bin_attribute ds1511_nvram_attr = { .attr = { .name = "nvram", - .mode = S_IRUGO | S_IWUGO, + .mode = S_IRUGO | S_IWUSR, }, .size = DS1511_RAM_MAX, .read = ds1511_nvram_read,