> > Here is a patch to the eeprom driver in 2.6.1 that changes the way > > Vaio eeproms are handled. In 2.6.1, the eeprom is readable only by > > root, which isn't consistent with the 2.4 driver which simple hides > > (i.e. fills it with zeroes) the first row (16 bytes) of the eeprom > > to regular users. > > > > The patch restores a similar behaviour in the 2.6 driver. Greg, feel > > free to apply it if you like it. > > Hm, why not just prevent the user from reading those bytes at all? > Something like what the pci core does for the pci config files (see > drivers/pci/pci-sysfs.c::pci_read_config(). > > I'd take that kind of a patch :) I took a look at that piece of code this morning. I don't see how I could apply the same here. In pci-sysfs.c, the result of capable() defines how much bytes you can read (with offset=0). 256 bytes for sysadmin, else 128 or 64 depending on some device type. This makes sense, because if for example a non-sysadmin user asks for 256, he/she will get the first 128 or 64 only, and will be warned about that. Now for the eeprom driver, the sensible part that should be hidden to non-sysadmin users is the *first* row (16 bytes) of data. This means that if a non-sysadmin user asks for the whole eeprom (256 bytes) we cannot give him/her only 240. There's no way the caller would know that these are *not* the first 240 bytes but 240 bytes starting at offset 16. This means that we would have to fail and return 0 for such requests. Doesn't sound like the think to do, does it? If we do, I'd expect simple commands such as "cat eeprom" to fail. And even if it wouldn't, this prevent any further automated processing of the data read, because of the offset that would be introduced. If I missed something, please let me know. For now my method seems to fit our specific needs better. > > 1* Would the current 2.6 tweaks in libsensors let sensors take any > > benefit of it? > > > > 2* Such a trick makes the driver a little bigger (more internal > > vars, more code), and slightly slower in the case you really want to > > read the whole file. The step was taken for 2.4, will we do the same > > for 2.6? > > Is it really worth it? This isn't a speed issue at all, right? Code > simplicity should win out in such a case. This is about speed only. I made some stats back then, showing how faster "sensors" was with the enhancement. Since the 2.4 driver has is, it looks like a regression that the 2.6 driver doesn't and thus is slower. I agree that code simplicity matters at least as much as speed, but the speedup is as important as *8 for regular eeproms and *4 for Vaio eeproms. This is much IMHO, and at least enough to consider it as a serious option. Maybe you could take a look at how it is done in our 2.4 driver and see if you really don't want something of that kind in 2.6? The eeprom driver is so simple that a little more complexity should be still easily understandable. Thanks. -- Jean Delvare http://www.ensicaen.ismra.fr/~delvare/