summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkay.sievers@vrfy.org <kay.sievers@vrfy.org>2004-10-18 18:13:40 -0700
committerGreg KH <gregkh@suse.de>2005-04-26 22:02:45 -0700
commit0f634c33d7eb634737915dc1aa3b7d7342d1a5f2 (patch)
tree3e91c108d947bf8bc5ffc386d2c2fd05d801e04e
parentdcb9c852f563ce8c38c3558f8462be2d324c8de7 (diff)
downloadsystemd-0f634c33d7eb634737915dc1aa3b7d7342d1a5f2.tar.gz
[PATCH] Fix ppp net devices in wait_for_sysfs
On Sat, Oct 16, 2004 at 10:32:47AM -0500, Jason Dravet wrote: > FYI > > wait_for_sysfs[2986]: either wait_for_sysfs (udev 038) needs an update to > handle the device '/class/ppp/ppp' properly (5) or the sysfs-support of > your device's driver needs to be fixed, please report to > <linux-hotplug-devel@lists.sourceforge.net> > > I am running udev 38-2 and ppp-2.4.2-6.3 Yeah, the ppp-class is missing, we only covered the net ppp-devices.
-rw-r--r--wait_for_sysfs.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/wait_for_sysfs.c b/wait_for_sysfs.c
index aac42e2421..1d7044c61f 100644
--- a/wait_for_sysfs.c
+++ b/wait_for_sysfs.c
@@ -160,11 +160,12 @@ static int class_device_expect_no_device_link(struct sysfs_class_device *class_d
{ .subsystem = "msr", .device = NULL },
{ .subsystem = "netlink", .device = NULL },
{ .subsystem = "net", .device = "sit" },
- { .subsystem = "net", .device = "ppp" },
{ .subsystem = "net", .device = "lo" },
{ .subsystem = "net", .device = "tap" },
{ .subsystem = "net", .device = "ipsec" },
{ .subsystem = "net", .device = "irda" },
+ { .subsystem = "net", .device = "ppp" },
+ { .subsystem = "ppp", .device = NULL },
{ .subsystem = "sound", .device = NULL },
{ .subsystem = "printer", .device = "lp" },
{ .subsystem = "nvidia", .device = NULL },