diff options
| author | Eric W. Biederman <[email protected]> | 2007-11-15 00:59:08 +0000 |
|---|---|---|
| committer | Linus Torvalds <[email protected]> | 2007-11-15 02:45:38 +0000 |
| commit | e1a1c997afe907e6ec4799e4be0f38cffd8b418c (patch) | |
| tree | 3c1154a95c0a44a1015f3bfeb7e73d19024924cb /fs/proc/root.c | |
| parent | 8250_pnp: add support for "LG C1 EXPRESS DUAL" machines (diff) | |
| download | kernel-e1a1c997afe907e6ec4799e4be0f38cffd8b418c.tar.gz kernel-e1a1c997afe907e6ec4799e4be0f38cffd8b418c.zip | |
proc: fix proc_kill_inodes to kill dentries on all proc superblocks
It appears we overlooked support for removing generic proc files
when we added support for multiple proc super blocks. Handle
that now.
[[email protected]: coding-style cleanups]
Signed-off-by: Eric W. Biederman <[email protected]>
Acked-by: Pavel Emelyanov <[email protected]>
Cc: Alexey Dobriyan <[email protected]>
Acked-by: Sukadev Bhattiprolu <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
Diffstat (limited to 'fs/proc/root.c')
| -rw-r--r-- | fs/proc/root.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/proc/root.c b/fs/proc/root.c index ec9cb3b6c93b..1f86bb860e04 100644 --- a/fs/proc/root.c +++ b/fs/proc/root.c @@ -98,7 +98,7 @@ static void proc_kill_sb(struct super_block *sb) put_pid_ns(ns); } -static struct file_system_type proc_fs_type = { +struct file_system_type proc_fs_type = { .name = "proc", .get_sb = proc_get_sb, .kill_sb = proc_kill_sb, |
