diff options
author | Jean Delvare <khali@linux-fr.org> | 2005-04-19 00:16:59 -0400 |
---|---|---|
committer | Greg KH <greg@press.kroah.org> | 2005-04-19 00:16:59 -0400 |
commit | 1d66c64c3cee10a465cd3f8bd9191bbeb718f650 (patch) | |
tree | 1ef3e58b8ff25f850c5bf9bbdce08001751662c5 /drivers/i2c/chips/via686a.c | |
parent | 86b5ac878d4a63c772d03c5017b72cc799a8f2f2 (diff) |
[PATCH] I2C: Fix incorrect sysfs file permissions in it87 and via686a drivers
The it87 and via686a hardware monitoring drivers each create a sysfs
file named "alarms" in R/W mode, while they should really create it in
read-only mode. Since we don't provide a store function for these files,
write attempts to these files will do something undefined (I guess) and
bad (I am sure). My own try resulted in a locked terminal (where I
attempted the write) and a 100% CPU load until next reboot.
As a side note, wouldn't it make sense to check, when creating sysfs
files, that readable files have a non-NULL show method, and writable
files have a non-NULL store method? I know drivers are not supposed to
do stupid things, but there is already a BUG_ON for several conditions
in sysfs_create_file, so maybe we could add two more?
Signed-off-by: Jean Delvare <khali@linux-fr.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/i2c/chips/via686a.c')
-rw-r--r-- | drivers/i2c/chips/via686a.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/i2c/chips/via686a.c b/drivers/i2c/chips/via686a.c index ecd1e1de3f05..6614a59cecd4 100644 --- a/drivers/i2c/chips/via686a.c +++ b/drivers/i2c/chips/via686a.c | |||
@@ -574,7 +574,7 @@ static ssize_t show_alarms(struct device *dev, char *buf) { | |||
574 | struct via686a_data *data = via686a_update_device(dev); | 574 | struct via686a_data *data = via686a_update_device(dev); |
575 | return sprintf(buf,"%d\n", ALARMS_FROM_REG(data->alarms)); | 575 | return sprintf(buf,"%d\n", ALARMS_FROM_REG(data->alarms)); |
576 | } | 576 | } |
577 | static DEVICE_ATTR(alarms, S_IRUGO | S_IWUSR, show_alarms, NULL); | 577 | static DEVICE_ATTR(alarms, S_IRUGO, show_alarms, NULL); |
578 | 578 | ||
579 | /* The driver. I choose to use type i2c_driver, as at is identical to both | 579 | /* The driver. I choose to use type i2c_driver, as at is identical to both |
580 | smbus_driver and isa_driver, and clients could be of either kind */ | 580 | smbus_driver and isa_driver, and clients could be of either kind */ |