diff --git a/[refs] b/[refs] index c4b421fea420..bc71cf8fa241 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: a5ee155136b4a8f4ab0e4c9c064b661da475e298 +refs/heads/master: dcbccbd4f1f6ad0f0e169d4b2e816e42bde06f82 diff --git a/trunk/include/linux/netdevice.h b/trunk/include/linux/netdevice.h index 9428793775a0..daf13d367498 100644 --- a/trunk/include/linux/netdevice.h +++ b/trunk/include/linux/netdevice.h @@ -1112,6 +1112,8 @@ extern rwlock_t dev_base_lock; /* Device list lock */ #define for_each_netdev(net, d) \ list_for_each_entry(d, &(net)->dev_base_head, dev_list) +#define for_each_netdev_reverse(net, d) \ + list_for_each_entry_reverse(d, &(net)->dev_base_head, dev_list) #define for_each_netdev_rcu(net, d) \ list_for_each_entry_rcu(d, &(net)->dev_base_head, dev_list) #define for_each_netdev_safe(net, d, n) \