Skip to content

Commit 2d8e9fa

Browse files
TaeheeYoointel-lab-lkp
authored andcommitted
net: export netdev_next_lower_dev_rcu()
netdev_next_lower_dev_rcu() will be used to implement a function, which is to walk all lower interfaces. There are already functions that they walk their lower interface. (netdev_walk_all_lower_dev_rcu, netdev_walk_all_lower_dev()). But, there would be cases that couldn't be covered by given netdev_walk_all_lower_dev_{rcu}() function. So, some modules would want to implement own function, which is to walk all lower interfaces. In the next patch, netdev_next_lower_dev_rcu() will be used. In addition, this patch removes two unused prototypes in netdevice.h. Signed-off-by: Taehee Yoo <[email protected]>
1 parent 295d531 commit 2d8e9fa

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

include/linux/netdevice.h

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,8 @@ void netdev_set_default_ethtool_ops(struct net_device *dev,
7272
#define NET_RX_SUCCESS 0 /* keep 'em coming, baby */
7373
#define NET_RX_DROP 1 /* packet dropped */
7474

75+
#define MAX_NEST_DEV 8
76+
7577
/*
7678
* Transmit return codes: transmit return codes originate from three different
7779
* namespaces:
@@ -4389,11 +4391,8 @@ void *netdev_lower_get_next(struct net_device *dev,
43894391
ldev; \
43904392
ldev = netdev_lower_get_next(dev, &(iter)))
43914393

4392-
struct net_device *netdev_all_lower_get_next(struct net_device *dev,
4394+
struct net_device *netdev_next_lower_dev_rcu(struct net_device *dev,
43934395
struct list_head **iter);
4394-
struct net_device *netdev_all_lower_get_next_rcu(struct net_device *dev,
4395-
struct list_head **iter);
4396-
43974396
int netdev_walk_all_lower_dev(struct net_device *dev,
43984397
int (*fn)(struct net_device *lower_dev,
43994398
void *data),

net/core/dev.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,6 @@
146146
#include "net-sysfs.h"
147147

148148
#define MAX_GRO_SKBS 8
149-
#define MAX_NEST_DEV 8
150149

151150
/* This should be increased if a protocol with a bigger head is added. */
152151
#define GRO_MAX_HEAD (MAX_HEADER + 128)
@@ -7201,8 +7200,8 @@ static int __netdev_walk_all_lower_dev(struct net_device *dev,
72017200
return 0;
72027201
}
72037202

7204-
static struct net_device *netdev_next_lower_dev_rcu(struct net_device *dev,
7205-
struct list_head **iter)
7203+
struct net_device *netdev_next_lower_dev_rcu(struct net_device *dev,
7204+
struct list_head **iter)
72067205
{
72077206
struct netdev_adjacent *lower;
72087207

@@ -7214,6 +7213,7 @@ static struct net_device *netdev_next_lower_dev_rcu(struct net_device *dev,
72147213

72157214
return lower->dev;
72167215
}
7216+
EXPORT_SYMBOL(netdev_next_lower_dev_rcu);
72177217

72187218
static u8 __netdev_upper_depth(struct net_device *dev)
72197219
{

0 commit comments

Comments
 (0)