chiark / gitweb /
[PATCH] wait_for_sysfs: clean up the logic for the list of devices that we do not...
authorgreg@kroah.com <greg@kroah.com>
Fri, 8 Oct 2004 04:06:07 +0000 (21:06 -0700)
committerGreg KH <gregkh@suse.de>
Wed, 27 Apr 2005 04:37:04 +0000 (21:37 -0700)
This makes it a lot easier to test for these devices, otherwise the list would have gotten very large

wait_for_sysfs.c

index 16ee50e4a765809aa8b983ac1c5c5038991ca641..cb94b64404e24e346f7e698c472704abae3ac99c 100644 (file)
@@ -99,49 +99,70 @@ static int wait_for_class_device_attributes(struct sysfs_class_device *class_dev
 /* skip waiting for physical device */
 static int class_device_expect_no_device_link(struct sysfs_class_device *class_dev)
 {
-       static char *devices_without_link[] = {
-               "nb",
-               "ram",
-               "loop",
-               "fd",
-               "md",
-               "dos_cd",
-               "double",
-               "flash",
-               "msd",
-               "rflash",
-               "rom",
-               "rrom",
-               "sbpcd",
-               "pcd",
-               "pf",
-               "scd",
-               "sit",
-               "lp",
-               "ubd",
-               "vcs",
-               "vcsa",
-               "console",
-               "tty",
-               "ttyS",
-               NULL
+       /* List of devices without a "device" symlink */
+       static struct class_device {
+               char *subsystem;
+               char *device;
+       } class_device[] = {
+               { .subsystem = "block",         .device = "double" },
+               { .subsystem = "block",         .device = "nb" },
+               { .subsystem = "block",         .device = "ram" },
+               { .subsystem = "block",         .device = "loop" },
+               { .subsystem = "block",         .device = "fd" },
+               { .subsystem = "block",         .device = "md" },
+               { .subsystem = "block",         .device = "dos_cd" },
+               { .subsystem = "block",         .device = "rflash" },
+               { .subsystem = "block",         .device = "rom" },
+               { .subsystem = "block",         .device = "rrom" },
+               { .subsystem = "block",         .device = "flash" },
+               { .subsystem = "block",         .device = "msd" },
+               { .subsystem = "block",         .device = "sbpcd" },
+               { .subsystem = "block",         .device = "pcd" },
+               { .subsystem = "block",         .device = "pf" },
+               { .subsystem = "block",         .device = "scd" },
+               { .subsystem = "block",         .device = "ubd" },
+               { .subsystem = "input",         .device = "event" },
+               { .subsystem = "input",         .device = "mice" },
+               { .subsystem = "input",         .device = "mouse" },
+               { .subsystem = "input",         .device = "ts" },
+               { .subsystem = "vc",            .device = "vcs" },
+               { .subsystem = "vc",            .device = "vcsa" },
+               { .subsystem = "tty",           .device = NULL },
+               { .subsystem = "cpuid",         .device = "cpu" },
+               { .subsystem = "graphics",      .device = "fb" },
+               { .subsystem = "mem",           .device = NULL },
+               { .subsystem = "misc",          .device = NULL },
+               { .subsystem = "msr",           .device = NULL },
+               { .subsystem = "netlink",       .device = NULL },
+               { .subsystem = "sound",         .device = NULL },
+               { .subsystem = "snd",           .device = NULL },
+               { .subsystem = "printer",       .device = "lp" },
+               { NULL, NULL }
        };
-       char **device;
+       struct class_device *classdevice;
+       int len;
 
-       for (device = devices_without_link; *device != NULL; device++) {
-               int len = strlen(*device);
+       /* look if we want to look for another file instead of "dev" */
+       for (classdevice = class_device; classdevice->subsystem != NULL; classdevice++) {
+               if (strcmp(class_dev->classname, classdevice->subsystem) == 0) {
+                       /* if device is NULL, all devices in this class are ok */
+                       if (classdevice->device == NULL)
+                               return 1;
 
-               /* look if name matches */
-               if (strncmp(class_dev->name, *device, len) != 0)
-                       continue;
+                       len = strlen(classdevice->device);
 
-               /* exact match */
-               if (strlen(class_dev->name) == len)
-                       return 1;
+                       /* see if device name matches */
+                       if (strncmp(class_dev->name, classdevice->device, len) != 0)
+                               continue;
 
-               /* instance numbers are matching too */
-               if (isdigit(class_dev->name[len]))
-                       return 1;
+                       /* exact match */
+                       if (strlen(class_dev->name) == len)
+                               return 1;
+
+                       /* instance numbers are matching too */
+                       if (isdigit(class_dev->name[len]))
+                               return 1;
+               }
        }
 
        return 0;