summaryrefslogtreecommitdiff
path: root/udevtest.c
diff options
context:
space:
mode:
authorkay.sievers@vrfy.org <kay.sievers@vrfy.org>2004-10-18 19:11:51 -0700
committerGreg KH <gregkh@suse.de>2005-04-26 22:02:46 -0700
commit7a947ce51586fd4212447643df90580542777ab9 (patch)
treed9d30236cf65e489b9bc2c5003ef9e1fa838f53e /udevtest.c
parent8e0871196c916be60a9d0327ce8483c4f9763c17 (diff)
[PATCH] big cleanup of internal udev api
Here is the first patch to cleanup the internal processing of the various stages of an udev event. It should not change any behavior, but if your system depends on udev, please always test it before reboot :) We pass only one generic structure around between add, remove, namedev, db and dev_d handling and make all relevant data available to all internal stages. All udev structures are renamed to "udev". We replace the fake parameter by a flag in the udev structure. We open the class device in the main binaries and not in udev_add, to make it possible to use libsysfs for udevstart directory crawling. The last sleep parameters are removed.
Diffstat (limited to 'udevtest.c')
-rw-r--r--udevtest.c22
1 files changed, 18 insertions, 4 deletions
diff --git a/udevtest.c b/udevtest.c
index df882d2d8c..fa1629af25 100644
--- a/udevtest.c
+++ b/udevtest.c
@@ -55,9 +55,12 @@ void log_message (int level, const char *format, ...)
int main(int argc, char *argv[], char *envp[])
{
+ struct sysfs_class_device *class_dev;
char *devpath;
+ char path[SYSFS_PATH_MAX];
char temp[NAME_SIZE];
char *subsystem = "";
+ struct udevice udev;
main_argv = argv;
main_envp = envp;
@@ -88,9 +91,8 @@ int main(int argc, char *argv[], char *envp[])
info("looking at '%s'", devpath);
/* we only care about class devices and block stuff */
- if (!strstr(devpath, "class") &&
- !strstr(devpath, "block")) {
- info("not a block or class device");
+ if (!strstr(devpath, "class") && !strstr(devpath, "block")) {
+ dbg("not a block or class device");
goto exit;
}
@@ -100,8 +102,20 @@ int main(int argc, char *argv[], char *envp[])
if (argv[2] != NULL)
subsystem = argv[2];
+ /* fill in values and test_run flag*/
+ udev_set_values(&udev, devpath, subsystem);
+ udev.test_run = 1;
+
+ /* open the device */
+ snprintf(path, SYSFS_PATH_MAX, "%s%s", sysfs_path, udev.devpath);
+ class_dev = sysfs_open_class_device_path(path);
+ if (class_dev == NULL)
+ dbg ("sysfs_open_class_device_path failed");
+ else
+ dbg("opened class_dev->name='%s'", class_dev->name);
+
/* simulate node creation with fake flag */
- udev_add_device(devpath, subsystem, FAKE);
+ udev_add_device(&udev, class_dev);
exit:
return 0;