mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 12:28:41 +08:00
net: procfs: use index hashlist instead of name hashlist
Name hashlist is going to be used for more than just dev->name, so use rather index hashlist for iteration over net_device instances. Signed-off-by: Jiri Pirko <jiri@mellanox.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
be2644aac3
commit
6958c97a48
@ -20,8 +20,8 @@ static inline struct net_device *dev_from_same_bucket(struct seq_file *seq, loff
|
|||||||
struct hlist_head *h;
|
struct hlist_head *h;
|
||||||
unsigned int count = 0, offset = get_offset(*pos);
|
unsigned int count = 0, offset = get_offset(*pos);
|
||||||
|
|
||||||
h = &net->dev_name_head[get_bucket(*pos)];
|
h = &net->dev_index_head[get_bucket(*pos)];
|
||||||
hlist_for_each_entry_rcu(dev, h, name_hlist) {
|
hlist_for_each_entry_rcu(dev, h, index_hlist) {
|
||||||
if (++count == offset)
|
if (++count == offset)
|
||||||
return dev;
|
return dev;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user