chiark / gitweb /
[PATCH] udev-remove.c cleanups
authorkay.sievers@vrfy.org <kay.sievers@vrfy.org>
Sat, 20 Dec 2003 02:29:01 +0000 (18:29 -0800)
committerGreg KH <gregkh@suse.de>
Wed, 27 Apr 2005 04:13:09 +0000 (21:13 -0700)
I've moved the malloc out of the udevdb into udev-remove to free the
struct after use and not to allocate a different struct in the case the
device is not in the data base. I seems a bit easier to read.

udev-remove.c
udevdb.c
udevdb.h

index dad4a98570251f9a6cadacf8a05bac3fff722ece..6d7e2ad22a9c6d8af3becb485709a05e8d1ab202 100644 (file)
@@ -119,18 +119,21 @@ static int delete_node(struct udevice *dev)
 int udev_remove_device(char *path, char *subsystem)
 {
        struct udevice *dev;
-       struct udevice device;
        char *temp;
+       int retval;
+
+       dev = malloc(sizeof(*dev));
+       if (dev == NULL)
+               return -ENOMEM;
+       memset(dev, 0, sizeof(*dev));
 
-       dev = udevdb_get_dev(path);
-       if (dev == NULL) {
+       retval = udevdb_get_dev(path, dev);
+       if (retval) {
                dbg("'%s' not found in database, falling back on default name", path);
                temp = strrchr(path, '/');
                if (temp == NULL)
                        return -ENODEV;
-               memset(&device, 0, sizeof(device));
-               dev = &device;
-               strncpy(device.name, &temp[1], sizeof(device.name));
+               strncpy(dev->name, &temp[1], sizeof(dev->name));
        }
 
        dbg("name is '%s'", dev->name);
@@ -138,5 +141,7 @@ int udev_remove_device(char *path, char *subsystem)
 
        sysbus_send_remove(dev->name, path);
 
-       return delete_node(dev);
+       retval = delete_node(dev);
+       free(dev);
+       return retval;
 }
index 5be3c2515126efb327d2276bbaddfbdb98963597..bbbeddad477958a6cb9827879d82cf1675ae28b5 100644 (file)
--- a/udevdb.c
+++ b/udevdb.c
@@ -62,29 +62,22 @@ int udevdb_add_dev(const char *path, const struct udevice *dev)
        return tdb_store(udevdb, key, data, TDB_REPLACE); 
 }
 
-struct udevice *udevdb_get_dev(const char *path)
+int udevdb_get_dev(const char *path, struct udevice *dev)
 {
        TDB_DATA key, data;
-       struct udevice *dev;
 
        if (path == NULL)
-               return NULL;
+               return -ENODEV;
 
        key.dptr = (void *)path;
        key.dsize = strlen(path) + 1;
 
        data = tdb_fetch(udevdb, key);
        if (data.dptr == NULL || data.dsize == 0)
-               return NULL;
-
-       dev = malloc(sizeof(*dev));
-       if (dev == NULL)
-               goto exit;
+               return -ENODEV;
 
        memcpy(dev, data.dptr, sizeof(*dev));
-exit:
-       free(data.dptr);
-       return dev;
+       return 0;
 }
 
 int udevdb_delete_dev(const char *path)
index 97e1f9bc405c50d600d73cb14b7f3d2599be500b..d6c58ae76645fe1f36ea6bb00516da10014f82e6 100644 (file)
--- a/udevdb.h
+++ b/udevdb.h
@@ -13,7 +13,7 @@ extern void udevdb_exit(void);
 extern int udevdb_init(int init_flag);
 
 extern int udevdb_add_dev(const char *path, const struct udevice *dev);
-extern struct udevice *udevdb_get_dev(const char *path);
+extern int udevdb_get_dev(const char *path, struct udevice *dev);
 extern int udevdb_delete_dev(const char *path);
 
 #endif /* _UDEVDB_H_ */