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
4e5ccf60
Commit
4e5ccf60
authored
Jun 09, 2006
by
Trond Myklebust
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
NFS: Fix typo in nfs_do_clone_mount()
Doh! Signed-off-by:
Trond Myklebust
<
Trond.Myklebust@netapp.com
>
parent
860de071
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
fs/nfs/inode.c
fs/nfs/inode.c
+2
-2
No files found.
fs/nfs/inode.c
View file @
4e5ccf60
...
...
@@ -2450,7 +2450,7 @@ static struct vfsmount *nfs_do_clone_mount(struct nfs_server *server, char *devn
switch
(
server
->
rpc_ops
->
version
)
{
case
2
:
case
3
:
mnt
=
vfs_kern_mount
(
&
clone_nfs_fs_type
,
0
,
devname
,
&
mountdata
);
mnt
=
vfs_kern_mount
(
&
clone_nfs_fs_type
,
0
,
devname
,
mountdata
);
break
;
case
4
:
mnt
=
vfs_kern_mount
(
&
clone_nfs4_fs_type
,
0
,
devname
,
mountdata
);
...
...
@@ -2493,7 +2493,7 @@ static inline void unregister_nfs4fs(void)
#define unregister_nfs4fs()
static
struct
vfsmount
*
nfs_do_clone_mount
(
struct
nfs_server
*
server
,
char
*
devname
,
struct
nfs_clone_mount
*
mountdata
)
{
return
vfs_kern_mount
(
&
clone_nfs_fs_type
,
0
,
devname
,
&
mountdata
);
return
vfs_kern_mount
(
&
clone_nfs_fs_type
,
0
,
devname
,
mountdata
);
}
#endif
...
...
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