LKML Archive on lore.kernel.org help / color / mirror / Atom feed
From: Dave Young <hidave.darkstar@gmail.com> To: Greg KH <gregkh@suse.de> Cc: stefanr@s5r6.in-berlin.de, James.Bottomley@hansenpartnership.com, a.zummo@towertech.it, peterz@infradead.org, cbou@mail.ru, linux-kernel@vger.kernel.org, David Brownell <david-b@pacbell.net>, stern@rowland.harvard.edu, dwmw2@infradead.org, davem@davemloft.net, jarkao2@gmail.com Subject: [PATCH 1/6] driver-core : add class iteration api Date: Tue, 22 Jan 2008 13:54:34 +0800 [thread overview] Message-ID: <20080122055434.GB3066@darkstar.te-china.tietoenator.com> (raw) In-Reply-To: <20080112094754.GA2893@darkstar.te-china.tietoenator.com> Add the following class iteration functions for driver use: class_for_each_device class_find_device class_for_each_child class_find_child Signed-off-by: Dave Young <hidave.darkstar@gmail.com> --- drivers/base/class.c | 159 +++++++++++++++++++++++++++++++++++++++++++++++++ include/linux/device.h | 11 ++- 2 files changed, 168 insertions(+), 2 deletions(-) diff -upr linux/drivers/base/class.c linux.new/drivers/base/class.c --- linux/drivers/base/class.c 2008-01-15 11:12:29.000000000 +0800 +++ linux.new/drivers/base/class.c 2008-01-15 11:12:29.000000000 +0800 @@ -798,6 +798,165 @@ void class_device_put(struct class_devic kobject_put(&class_dev->kobj); } +/** + * class_for_each_device - device iterator + * @class: the class we're iterating + * @data: data for the callback + * @fn: function to be called for each device + * + * Iterate over @class's list of devices, and call @fn for each, + * passing it @data. + * + * We check the return of @fn each time. If it returns anything + * other than 0, we break out and return that value. + */ +int class_for_each_device(struct class *class, void *data, + int (*fn)(struct device *, void *)) +{ + struct device *dev; + int error = 0; + + if (!class) + return -EINVAL; + down(&class->sem); + list_for_each_entry(dev, &class->devices, node) { + dev = get_device(dev); + if (dev) { + error = fn(dev, data); + put_device(dev); + } else + error = -ENODEV; + if (error) + break; + } + up(&class->sem); + + return error; +} +EXPORT_SYMBOL_GPL(class_for_each_device); + +/** + * class_find_device - device iterator for locating a particular device + * @class: the class we're iterating + * @data: data for the match function + * @match: function to check device + * + * This is similar to the class_for_each_dev() function above, but it + * returns a reference to a device that is 'found' for later use, as + * determined by the @match callback. + * + * The callback should return 0 if the device doesn't match and non-zero + * if it does. If the callback returns non-zero, this function will + * return to the caller and not iterate over any more devices. + + * Note, you will need to drop the reference with put_device() after use. + */ +struct device *class_find_device(struct class *class, void *data, + int (*match)(struct device *, void *)) +{ + struct device *dev; + int found = 0; + + if (!class) + return NULL; + + down(&class->sem); + list_for_each_entry(dev, &class->devices, node) { + dev = get_device(dev); + if (dev) { + if (match(dev, data)) { + found = 1; + break; + } else + put_device(dev); + } else + break; + } + up(&class->sem); + + return found ? dev : NULL; +} +EXPORT_SYMBOL_GPL(class_find_device); + +/** + * class_for_each_child - class child iterator + * @class: the class we're iterating + * @data: data for the callback + * @fn: function to be called for each child of the class + * + * Iterate over @class's list of children, and call @fn for each, + * passing it @data. + * + * We check the return of @fn each time. If it returns anything + * other than 0, we break out and return that value. + */ +int class_for_each_child(struct class *class, void *data, + int (*fn)(struct class_device *, void *)) +{ + struct class_device *dev; + int error = 0; + + if (!class) + return -EINVAL; + down(&class->sem); + list_for_each_entry(dev, &class->children, node) { + dev = class_device_get(dev); + if (dev) { + error = fn(dev, data); + class_device_put(dev); + } else + error = -ENODEV; + if (error) + break; + } + up(&class->sem); + + return error; +} +EXPORT_SYMBOL_GPL(class_for_each_child); + +/** + * class_find_child - device iterator for locating a particular class_device + * @class: the class we're iterating + * @data: data for the match function + * @match: function to check class_device + * + * This is similar to the class_for_each_child() function above, but it + * returns a reference to a class_device that is 'found' for later use, as + * determined by the @match callback. + * + * The callback should return 0 if the class_device doesn't match and non-zero + * if it does. If the callback returns non-zero, this function will + * return to the caller and not iterate over any more class_devices. + + * Note, you will need to drop the reference with class_device_put() after use. + */ +struct class_device *class_find_child(struct class *class, void *data, + int (*match)(struct class_device *, void *)) +{ + struct class_device *dev; + int found = 0; + + if (!class) + return NULL; + + down(&class->sem); + list_for_each_entry(dev, &class->children, node) { + dev = class_device_get(dev); + if (dev) { + if (match(dev, data)) { + found = 1; + break; + } else + class_device_put(dev); + } else + break; + } + up(&class->sem); + + return found ? dev : NULL; +} +EXPORT_SYMBOL_GPL(class_find_child); int class_interface_register(struct class_interface *class_intf) { diff -upr linux/include/linux/device.h linux.new/include/linux/device.h --- linux/include/linux/device.h 2008-01-15 11:12:29.000000000 +0800 +++ linux.new/include/linux/device.h 2008-01-15 11:12:29.000000000 +0800 @@ -180,8 +180,7 @@ struct class { struct list_head devices; struct list_head interfaces; struct kset class_dirs; - struct semaphore sem; /* locks both the children and interfaces lists */ - + struct semaphore sem; /* locks children, devices, interfaces */ struct class_attribute * class_attrs; struct class_device_attribute * class_dev_attrs; struct device_attribute * dev_attrs; @@ -199,6 +198,14 @@ struct class { extern int __must_check class_register(struct class *); extern void class_unregister(struct class *); +extern int class_for_each_device(struct class *class, void *data, + int (*fn)(struct device *dev, void *data)); +extern struct device *class_find_device(struct class *class, void *data, + int (*match)(struct device *, void *)); +extern int class_for_each_child(struct class *class, void *data, + int (*fn)(struct class_device *, void *)); +extern struct class_device *class_find_child(struct class *class, void *data, + int (*match)(struct class_device *, void *)); struct class_attribute {
next prev parent reply other threads:[~2008-01-22 5:53 UTC|newest] Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top 2008-01-12 9:47 [PATCH 1/7] driver-core : add class iteration api Dave Young 2008-01-12 10:50 ` Stefan Richter 2008-01-14 1:32 ` Dave Young 2008-01-12 20:11 ` Jarek Poplawski 2008-01-14 1:36 ` Dave Young 2008-01-14 6:58 ` Jarek Poplawski 2008-01-14 7:00 ` Dave Young 2008-01-14 12:13 ` Cornelia Huck 2008-01-15 0:17 ` Dave Young 2008-01-15 9:13 ` Dave Young 2008-01-15 9:45 ` Cornelia Huck 2008-01-22 5:54 ` Dave Young [this message] 2008-01-22 6:06 ` [PATCH 1/6] " Dave Young 2008-01-22 6:24 ` David Brownell 2008-01-22 6:30 ` Dave Young 2008-01-22 7:27 ` Dave Young 2008-01-22 8:44 ` Cornelia Huck 2008-01-22 22:25 ` Greg KH 2008-01-23 1:02 ` Dave Young
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=20080122055434.GB3066@darkstar.te-china.tietoenator.com \ --to=hidave.darkstar@gmail.com \ --cc=James.Bottomley@hansenpartnership.com \ --cc=a.zummo@towertech.it \ --cc=cbou@mail.ru \ --cc=davem@davemloft.net \ --cc=david-b@pacbell.net \ --cc=dwmw2@infradead.org \ --cc=gregkh@suse.de \ --cc=jarkao2@gmail.com \ --cc=linux-kernel@vger.kernel.org \ --cc=peterz@infradead.org \ --cc=stefanr@s5r6.in-berlin.de \ --cc=stern@rowland.harvard.edu \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: linkBe sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).