[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <CAHp75VduJ2VQ-4r-vrARMyL6WAnsppwMtLRD-g4f-GEnew8m2g@mail.gmail.com>
Date: Thu, 15 Aug 2019 15:55:40 +0300
From: Andy Shevchenko <andy.shevchenko@...il.com>
To: Heikki Krogerus <heikki.krogerus@...ux.intel.com>
Cc: "Rafael J. Wysocki" <rafael@...nel.org>,
Greg Kroah-Hartman <gregkh@...uxfoundation.org>,
Darren Hart <dvhart@...radead.org>,
Andy Shevchenko <andy@...radead.org>,
Hans de Goede <hdegoede@...hat.com>,
Linux Kernel Mailing List <linux-kernel@...r.kernel.org>
Subject: Re: [PATCH 1/3] software node: Add software_node_find_by_name()
On Thu, Aug 15, 2019 at 2:32 PM Heikki Krogerus
<heikki.krogerus@...ux.intel.com> wrote:
>
> Function that searches software nodes by node name.
> +/**
> + * software_node_find_by_name - Find software node by name
> + * @parent: Parent of the software node
> + * @name: Name of the software node
> + *
> + * The function will find a node that is child of @parent and that is named
> + * @name. If no node is found, the function returns NULL.
Shouldn't we add that the caller responsible of putting kobject?
> + */
> +const struct software_node *
> +software_node_find_by_name(const struct software_node *parent, const char *name)
> +{
> + struct swnode *swnode;
> + struct kobject *k;
> +
> + if (!name)
> + return NULL;
> +
> + spin_lock(&swnode_kset->list_lock);
> +
> + list_for_each_entry(k, &swnode_kset->list, entry) {
> + swnode = kobj_to_swnode(k);
> + if (parent == swnode->node->parent && swnode->node->name &&
> + !strcmp(name, swnode->node->name)) {
> + kobject_get(&swnode->kobj);
> + break;
> + }
> + swnode = NULL;
> + }
> +
> + spin_unlock(&swnode_kset->list_lock);
> +
> + return swnode ? swnode->node : NULL;
> +}
> +EXPORT_SYMBOL_GPL(software_node_find_by_name);
> +
> static int
> software_node_register_properties(struct software_node *node,
> const struct property_entry *properties)
> diff --git a/include/linux/property.h b/include/linux/property.h
> index 5a910ad79591..9b3d4ca3a73a 100644
> --- a/include/linux/property.h
> +++ b/include/linux/property.h
> @@ -421,6 +421,10 @@ bool is_software_node(const struct fwnode_handle *fwnode);
> const struct software_node *to_software_node(struct fwnode_handle *fwnode);
> struct fwnode_handle *software_node_fwnode(const struct software_node *node);
>
> +const struct software_node *
> +software_node_find_by_name(const struct software_node *parent,
> + const char *name);
> +
> int software_node_register_nodes(const struct software_node *nodes);
> void software_node_unregister_nodes(const struct software_node *nodes);
>
> --
> 2.20.1
>
--
With Best Regards,
Andy Shevchenko
Powered by blists - more mailing lists