mirror of
https://github.com/tbsdtv/linux_media.git
synced 2025-07-23 12:43:29 +02:00
net: x25: Use list_for_each_entry() to simplify code in x25_link.c
Convert list_for_each() to list_for_each_entry() where applicable. This simplifies the code. Reported-by: Hulk Robot <hulkci@huawei.com> Signed-off-by: Wang Hai <wanghai38@huawei.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
36861d1f04
commit
3835a6614a
@@ -332,12 +332,9 @@ void x25_link_device_down(struct net_device *dev)
|
|||||||
struct x25_neigh *x25_get_neigh(struct net_device *dev)
|
struct x25_neigh *x25_get_neigh(struct net_device *dev)
|
||||||
{
|
{
|
||||||
struct x25_neigh *nb, *use = NULL;
|
struct x25_neigh *nb, *use = NULL;
|
||||||
struct list_head *entry;
|
|
||||||
|
|
||||||
read_lock_bh(&x25_neigh_list_lock);
|
read_lock_bh(&x25_neigh_list_lock);
|
||||||
list_for_each(entry, &x25_neigh_list) {
|
list_for_each_entry(nb, &x25_neigh_list, node) {
|
||||||
nb = list_entry(entry, struct x25_neigh, node);
|
|
||||||
|
|
||||||
if (nb->dev == dev) {
|
if (nb->dev == dev) {
|
||||||
use = nb;
|
use = nb;
|
||||||
break;
|
break;
|
||||||
|
Reference in New Issue
Block a user