Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linux-davinci
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
linux
linux-davinci
Commits
0ceeca5a
Commit
0ceeca5a
authored
Feb 05, 2010
by
Al Viro
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
hppfs can use existing proc_mnt, no need for do_kern_mount() in there
Signed-off-by:
Al Viro
<
viro@zeniv.linux.org.uk
>
parent
8089352a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
fs/hppfs/hppfs.c
fs/hppfs/hppfs.c
+1
-1
No files found.
fs/hppfs/hppfs.c
View file @
0ceeca5a
...
...
@@ -718,7 +718,7 @@ static int hppfs_fill_super(struct super_block *sb, void *d, int silent)
struct
vfsmount
*
proc_mnt
;
int
err
=
-
ENOENT
;
proc_mnt
=
do_kern_mount
(
"proc"
,
0
,
"proc"
,
NULL
);
proc_mnt
=
mntget
(
current
->
nsproxy
->
pid_ns
->
proc_mnt
);
if
(
IS_ERR
(
proc_mnt
))
goto
out
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment