]> Git Repo - linux.git/blobdiff - fs/proc/proc_net.c
Merge branch 'WIP.x86/asm' into x86/urgent, because the topic is ready
[linux.git] / fs / proc / proc_net.c
index a2bf369c923dcf1c3b788fcd16320bbc425fc1fd..68c06ae7888c8cb5d07053863698b7a478d68d4e 100644 (file)
@@ -135,7 +135,7 @@ static struct dentry *proc_tgid_net_lookup(struct inode *dir,
        de = ERR_PTR(-ENOENT);
        net = get_proc_task_net(dir);
        if (net != NULL) {
-               de = proc_lookup_de(net->proc_net, dir, dentry);
+               de = proc_lookup_de(dir, dentry, net->proc_net);
                put_net(net);
        }
        return de;
@@ -172,7 +172,7 @@ static int proc_tgid_net_readdir(struct file *file, struct dir_context *ctx)
        ret = -EINVAL;
        net = get_proc_task_net(file_inode(file));
        if (net != NULL) {
-               ret = proc_readdir_de(net->proc_net, file, ctx);
+               ret = proc_readdir_de(file, ctx, net->proc_net);
                put_net(net);
        }
        return ret;
This page took 0.032329 seconds and 4 git commands to generate.