diff options
author | David S. Miller <davem@davemloft.net> | 2016-06-30 05:03:36 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2016-06-30 05:03:36 -0400 |
commit | ee58b57100ca953da7320c285315a95db2f7053d (patch) | |
tree | 77b815a31240adc4d6326346908137fc6c2c3a96 /fs/proc/root.c | |
parent | 6f30e8b022c8e3a722928ddb1a2ae0be852fcc0e (diff) | |
parent | e7bdea7750eb2a64aea4a08fa5c0a31719c8155d (diff) |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net
Several cases of overlapping changes, except the packet scheduler
conflicts which deal with the addition of the free list parameter
to qdisc_enqueue().
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'fs/proc/root.c')
-rw-r--r-- | fs/proc/root.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/fs/proc/root.c b/fs/proc/root.c index 55bc7d6c8aac..06702783bf40 100644 --- a/fs/proc/root.c +++ b/fs/proc/root.c | |||
@@ -121,6 +121,13 @@ static struct dentry *proc_mount(struct file_system_type *fs_type, | |||
121 | if (IS_ERR(sb)) | 121 | if (IS_ERR(sb)) |
122 | return ERR_CAST(sb); | 122 | return ERR_CAST(sb); |
123 | 123 | ||
124 | /* | ||
125 | * procfs isn't actually a stacking filesystem; however, there is | ||
126 | * too much magic going on inside it to permit stacking things on | ||
127 | * top of it | ||
128 | */ | ||
129 | sb->s_stack_depth = FILESYSTEM_MAX_STACK_DEPTH; | ||
130 | |||
124 | if (!proc_parse_options(options, ns)) { | 131 | if (!proc_parse_options(options, ns)) { |
125 | deactivate_locked_super(sb); | 132 | deactivate_locked_super(sb); |
126 | return ERR_PTR(-EINVAL); | 133 | return ERR_PTR(-EINVAL); |