Skip to content

Commit 7151aff

Browse files
TaeheeYoodavem330
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]> Signed-off-by: David S. Miller <[email protected]>
1 parent 064ff66 commit 7151aff

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)
@@ -7207,8 +7206,8 @@ static int __netdev_walk_all_lower_dev(struct net_device *dev,
72077206
return 0;
72087207
}
72097208

7210-
static struct net_device *netdev_next_lower_dev_rcu(struct net_device *dev,
7211-
struct list_head **iter)
7209+
struct net_device *netdev_next_lower_dev_rcu(struct net_device *dev,
7210+
struct list_head **iter)
72127211
{
72137212
struct netdev_adjacent *lower;
72147213

@@ -7220,6 +7219,7 @@ static struct net_device *netdev_next_lower_dev_rcu(struct net_device *dev,
72207219

72217220
return lower->dev;
72227221
}
7222+
EXPORT_SYMBOL(netdev_next_lower_dev_rcu);
72237223

72247224
static u8 __netdev_upper_depth(struct net_device *dev)
72257225
{

0 commit comments

Comments
 (0)