Skip to content

Commit

Permalink
[VLAN]: Make the /proc/net/vlan/conf file show per-net info.
Browse files Browse the repository at this point in the history
It is created in a proper net, so make is show info, related
to this particular net.

Signed-off-by: Pavel Emelyanov <[email protected]>
Acked-by: Patrick McHardy <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
  • Loading branch information
xemul authored and davem330 committed Apr 16, 2008
1 parent a59a8c1 commit 80de2d9
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions net/8021q/vlanproc.c
Original file line number Diff line number Diff line change
Expand Up @@ -80,15 +80,16 @@ static const struct seq_operations vlan_seq_ops = {

static int vlan_seq_open(struct inode *inode, struct file *file)
{
return seq_open(file, &vlan_seq_ops);
return seq_open_net(inode, file, &vlan_seq_ops,
sizeof(struct seq_net_private));
}

static const struct file_operations vlan_fops = {
.owner = THIS_MODULE,
.open = vlan_seq_open,
.read = seq_read,
.llseek = seq_lseek,
.release = seq_release,
.release = seq_release_net,
};

/*
Expand Down Expand Up @@ -211,14 +212,15 @@ static void *vlan_seq_start(struct seq_file *seq, loff_t *pos)
__acquires(dev_base_lock)
{
struct net_device *dev;
struct net *net = seq_file_net(seq);
loff_t i = 1;

read_lock(&dev_base_lock);

if (*pos == 0)
return SEQ_START_TOKEN;

for_each_netdev(&init_net, dev) {
for_each_netdev(net, dev) {
if (!is_vlan_dev(dev))
continue;

Expand All @@ -232,14 +234,15 @@ static void *vlan_seq_start(struct seq_file *seq, loff_t *pos)
static void *vlan_seq_next(struct seq_file *seq, void *v, loff_t *pos)
{
struct net_device *dev;
struct net *net = seq_file_net(seq);

++*pos;

dev = (struct net_device *)v;
if (v == SEQ_START_TOKEN)
dev = net_device_entry(&init_net.dev_base_head);
dev = net_device_entry(&net->dev_base_head);

for_each_netdev_continue(&init_net, dev) {
for_each_netdev_continue(net, dev) {
if (!is_vlan_dev(dev))
continue;

Expand Down

0 comments on commit 80de2d9

Please sign in to comment.