@@ -471,8 +471,8 @@ struct netcp_hook_list {
int netcp_register_txhook(struct netcp_intf *netcp_priv, int order,
netcp_hook_rtn *hook_rtn, void *hook_data)
{
+ struct netcp_hook_list *next = NULL, *iter;
struct netcp_hook_list *entry;
- struct netcp_hook_list *next;
unsigned long flags;
entry = devm_kzalloc(netcp_priv->dev, sizeof(*entry), GFP_KERNEL);
@@ -484,11 +484,15 @@ int netcp_register_txhook(struct netcp_intf *netcp_priv, int order,
entry->order = order;
spin_lock_irqsave(&netcp_priv->lock, flags);
- list_for_each_entry(next, &netcp_priv->txhook_list_head, list) {
- if (next->order > order)
+ list_for_each_entry(iter, &netcp_priv->txhook_list_head, list) {
+ if (iter->order > order) {
+ next = iter;
+ list_add_tail(&entry->list, &iter->list);
break;
+ }
}
- __list_add(&entry->list, next->list.prev, &next->list);
+ if (!next)
+ list_add_tail(&entry->list, &netcp_priv->txhook_list_head);
spin_unlock_irqrestore(&netcp_priv->lock, flags);
return 0;
@@ -520,8 +524,8 @@ EXPORT_SYMBOL_GPL(netcp_unregister_txhook);
int netcp_register_rxhook(struct netcp_intf *netcp_priv, int order,
netcp_hook_rtn *hook_rtn, void *hook_data)
{
+ struct netcp_hook_list *next = NULL, *iter;
struct netcp_hook_list *entry;
- struct netcp_hook_list *next;
unsigned long flags;
entry = devm_kzalloc(netcp_priv->dev, sizeof(*entry), GFP_KERNEL);
@@ -533,11 +537,15 @@ int netcp_register_rxhook(struct netcp_intf *netcp_priv, int order,
entry->order = order;
spin_lock_irqsave(&netcp_priv->lock, flags);
- list_for_each_entry(next, &netcp_priv->rxhook_list_head, list) {
- if (next->order > order)
+ list_for_each_entry(iter, &netcp_priv->rxhook_list_head, list) {
+ if (iter->order > order) {
+ next = iter;
+ list_add_tail(&entry->list, &iter->list);
break;
+ }
}
- __list_add(&entry->list, next->list.prev, &next->list);
+ if (!next)
+ list_add_tail(&entry->list, &netcp_priv->rxhook_list_head);
spin_unlock_irqrestore(&netcp_priv->lock, flags);
return 0;
In preparation to limit the scope of a list iterator to the list traversal loop, use a dedicated pointer to point to the found element [1]. Before, the code implicitly used the head when no element was found when using &pos->list. Since the new variable is only set if an element was found, the list_add() is performed within the loop and only done after the loop if it is done on the list head directly. Link: https://lore.kernel.org/all/CAHk-=wgRr_D8CB-D9Kg-c=EHreAsk5SqXPwr9Y7k9sA6cWXJ6w@mail.gmail.com/ [1] Signed-off-by: Jakob Koschel <jakobkoschel@gmail.com> --- drivers/net/ethernet/ti/netcp_core.c | 24 ++++++++++++++++-------- 1 file changed, 16 insertions(+), 8 deletions(-)