[PATCH] udev add wild card compare for ID

Allow wild card comparison of the ID.

Using strcmp_pattern here also means we on longer match partial values,
for example, a scsi rule like this won't match anymore:

	BUS="scsi", ID=":0", NAME="sdfoo-short-bus_id-1"

But this now works:

	BUS="scsi", ID="*:0", NAME="sdfoo-bus_id-wild-card-1"
This commit is contained in:
patmans@us.ibm.com 2004-02-12 01:25:28 -08:00 committed by Greg KH
parent 5a42932b9a
commit 3a8c51a771
1 changed files with 2 additions and 1 deletions

View File

@ -477,8 +477,9 @@ static int match_id(struct config_device *dev, struct sysfs_class_device *class_
strfieldcpy(path, sysfs_device->path);
temp = strrchr(path, '/');
temp++;
dbg("search '%s' in '%s', path='%s'", dev->id, temp, path);
if (strstr(temp, dev->id) == NULL)
if (strcmp_pattern(dev->id, temp) != 0)
return -ENODEV;
else
return 0;