Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
matisse
android_kernel_samsung_matisse
Commits
e9496ff4
Commit
e9496ff4
authored
15 years ago
by
Al Viro
Browse files
Options
Download
Email Patches
Plain Diff
fix mismerge with Trond's stuff (create_mnt_ns() export is gone now)
Signed-off-by:
Al Viro
<
viro@zeniv.linux.org.uk
>
parent
b0446be4
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
1 addition
and
11 deletions
+1
-11
fs/namespace.c
fs/namespace.c
+1
-2
fs/nfs/super.c
fs/nfs/super.c
+0
-8
include/linux/mnt_namespace.h
include/linux/mnt_namespace.h
+0
-1
No files found.
fs/namespace.c
View file @
e9496ff4
...
...
@@ -2068,7 +2068,7 @@ struct mnt_namespace *copy_mnt_ns(unsigned long flags, struct mnt_namespace *ns,
* create_mnt_ns - creates a private namespace and adds a root filesystem
* @mnt: pointer to the new root filesystem mountpoint
*/
struct
mnt_namespace
*
create_mnt_ns
(
struct
vfsmount
*
mnt
)
static
struct
mnt_namespace
*
create_mnt_ns
(
struct
vfsmount
*
mnt
)
{
struct
mnt_namespace
*
new_ns
;
...
...
@@ -2080,7 +2080,6 @@ struct mnt_namespace *create_mnt_ns(struct vfsmount *mnt)
}
return
new_ns
;
}
EXPORT_SYMBOL
(
create_mnt_ns
);
SYSCALL_DEFINE5
(
mount
,
char
__user
*
,
dev_name
,
char
__user
*
,
dir_name
,
char
__user
*
,
type
,
unsigned
long
,
flags
,
void
__user
*
,
data
)
...
...
This diff is collapsed.
Click to expand it.
fs/nfs/super.c
View file @
e9496ff4
...
...
@@ -2648,21 +2648,13 @@ out_freepage:
static
int
nfs_follow_remote_path
(
struct
vfsmount
*
root_mnt
,
const
char
*
export_path
,
struct
vfsmount
*
mnt_target
)
{
struct
mnt_namespace
*
ns_private
;
struct
nameidata
nd
;
struct
super_block
*
s
;
int
ret
;
ns_private
=
create_mnt_ns
(
root_mnt
);
ret
=
PTR_ERR
(
ns_private
);
if
(
IS_ERR
(
ns_private
))
goto
out_mntput
;
ret
=
vfs_path_lookup
(
root_mnt
->
mnt_root
,
root_mnt
,
export_path
,
LOOKUP_FOLLOW
,
&
nd
);
put_mnt_ns
(
ns_private
);
if
(
ret
!=
0
)
goto
out_err
;
...
...
This diff is collapsed.
Click to expand it.
include/linux/mnt_namespace.h
View file @
e9496ff4
...
...
@@ -23,7 +23,6 @@ struct proc_mounts {
struct
fs_struct
;
extern
struct
mnt_namespace
*
create_mnt_ns
(
struct
vfsmount
*
mnt
);
extern
struct
mnt_namespace
*
copy_mnt_ns
(
unsigned
long
,
struct
mnt_namespace
*
,
struct
fs_struct
*
);
extern
void
put_mnt_ns
(
struct
mnt_namespace
*
ns
);
...
...
This diff is collapsed.
Click to expand it.
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