skip SYMLINK rules for devices without a device node

This commit is contained in:
Kay Sievers 2008-10-23 21:42:23 +02:00
parent 7aeeaedc5f
commit 548459e939

View file

@ -1984,6 +1984,8 @@ int udev_rules_apply_to_event(struct udev_rules *rules, struct udev_event *event
if (event->devlink_final)
break;
if (major(udev_device_get_devnum(event->dev)) == 0)
break;
if (cur->key.op == KEY_OP_ASSIGN_FINAL)
event->devlink_final = 1;
if (cur->key.op == KEY_OP_ASSIGN || cur->key.op == KEY_OP_ASSIGN_FINAL)