mirror of
https://github.com/systemd/systemd.git
synced 2024-11-27 04:03:36 +08:00
[PATCH] add NUMBER support (basically same logic as TOPOLOGY, perhaps we should merge this...)
This commit is contained in:
parent
20051a5be9
commit
8a6fbab6dd
32
namedev.c
32
namedev.c
@ -433,11 +433,37 @@ static int get_attr(struct sysfs_class_device *class_dev, struct device_attr *at
|
||||
dev->attr.owner, dev->attr.group, dev->attr.mode);
|
||||
break;
|
||||
case NUMBER:
|
||||
dbg("NUMBER name = '%s', bus = '%s', id = '%s'"
|
||||
" owner = '%s', group = '%s', mode = '%#o'",
|
||||
dev->attr.name, dev->bus, dev->id,
|
||||
{
|
||||
char path[SYSFS_PATH_MAX];
|
||||
char *temp;
|
||||
|
||||
found = 0;
|
||||
strcpy(path, class_dev->sysdevice->directory->path);
|
||||
temp = strrchr(path, '/');
|
||||
dbg("NUMBER path = '%s'", path);
|
||||
dbg("NUMBER temp = '%s' id = '%s'", temp, dev->id);
|
||||
if (strstr(temp, dev->id) != NULL) {
|
||||
found = 1;
|
||||
} else {
|
||||
*temp = 0x00;
|
||||
temp = strrchr(path, '/');
|
||||
dbg("TOPOLOGY temp = '%s' id = '%s'", temp, dev->id);
|
||||
if (strstr(temp, dev->id) != NULL)
|
||||
found = 1;
|
||||
}
|
||||
if (!found)
|
||||
continue;
|
||||
|
||||
strcpy(attr->name, dev->attr.name);
|
||||
attr->mode = dev->attr.mode;
|
||||
strcpy(attr->owner, dev->attr.owner);
|
||||
strcpy(attr->group, dev->attr.group);
|
||||
dbg("device id '%s' becomes '%s' - owner = %s, group = %s, mode = %#o",
|
||||
dev->id, attr->name,
|
||||
dev->attr.owner, dev->attr.group, dev->attr.mode);
|
||||
return retval;
|
||||
break;
|
||||
}
|
||||
case TOPOLOGY:
|
||||
{
|
||||
char path[SYSFS_PATH_MAX];
|
||||
|
Loading…
Reference in New Issue
Block a user