Age | Commit message (Collapse) | Author |
|
Update scsi_id to work with the libsysfs changes in udev: use
sysfs_get_classdev_attr and sysfs_get_device_attr in place of
sysfs_read_attribute_value.
|
|
Here's a patch updating udev's copy of scsi_id to version 0.6.
|
|
This patch syncs the scsi_id in the udev tree to version 0.5.
|
|
This patch syncs the scsi_id in the udev tree to version 0.4.
|
|
|
|
Scsi_id hasn't been changed to use the latest libsysfs changes. The
"directory" in the sysfs_class_device is now considered "private" and only
should be accessed using functions. Treating the structures as handles lets
us only load information when it's needed, reducing caching or stale
information and also helping performance.
Here's the problem.
static inline char *sysfs_get_attr(struct sysfs_class_device *dev,
const char *attr)
{
return sysfs_get_value_from_attributes(dev->directory->attributes,
attr);
}
Please try this quick fix:
|
|
This patch updates scsi_id under udev from version 0.1 to version 0.2.
|
|
|