Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
11f17c9b
Commit
11f17c9b
authored
May 14, 2018
by
Al Viro
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cifs_lookup(): switch to d_splice_alias()
Signed-off-by:
Al Viro
<
viro@zeniv.linux.org.uk
>
parent
a8b75f66
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
18 deletions
+18
-18
fs/cifs/dir.c
fs/cifs/dir.c
+18
-18
No files found.
fs/cifs/dir.c
View file @
11f17c9b
...
...
@@ -779,21 +779,25 @@ cifs_lookup(struct inode *parent_dir_inode, struct dentry *direntry,
tlink
=
cifs_sb_tlink
(
cifs_sb
);
if
(
IS_ERR
(
tlink
))
{
free_xid
(
xid
);
return
(
struct
dentry
*
)
tlink
;
return
ERR_CAST
(
tlink
)
;
}
pTcon
=
tlink_tcon
(
tlink
);
rc
=
check_name
(
direntry
,
pTcon
);
if
(
rc
)
goto
lookup_out
;
if
(
unlikely
(
rc
))
{
cifs_put_tlink
(
tlink
);
free_xid
(
xid
);
return
ERR_PTR
(
rc
);
}
/* can not grab the rename sem here since it would
deadlock in the cases (beginning of sys_rename itself)
in which we already have the sb rename sem */
full_path
=
build_path_from_dentry
(
direntry
);
if
(
full_path
==
NULL
)
{
rc
=
-
ENOMEM
;
goto
lookup_out
;
cifs_put_tlink
(
tlink
);
free_xid
(
xid
);
return
ERR_PTR
(
-
ENOMEM
);
}
if
(
d_really_is_positive
(
direntry
))
{
...
...
@@ -813,28 +817,24 @@ cifs_lookup(struct inode *parent_dir_inode, struct dentry *direntry,
}
if
(
rc
==
0
)
{
d_add
(
direntry
,
newInode
);
/* since paths are not looked up by component - the parent
directories are presumed to be good here */
renew_parental_timestamps
(
direntry
);
}
else
if
(
rc
==
-
ENOENT
)
{
rc
=
0
;
cifs_set_time
(
direntry
,
jiffies
);
d_add
(
direntry
,
NULL
);
/* if it was once a directory (but how can we tell?) we could do
shrink_dcache_parent(direntry); */
}
else
if
(
rc
!=
-
EACCES
)
{
cifs_dbg
(
FYI
,
"Unexpected lookup error %d
\n
"
,
rc
);
/* We special case check for Access Denied - since that
is a common return code */
newInode
=
NULL
;
}
else
{
if
(
rc
!=
-
EACCES
)
{
cifs_dbg
(
FYI
,
"Unexpected lookup error %d
\n
"
,
rc
);
/* We special case check for Access Denied - since that
is a common return code */
}
newInode
=
ERR_PTR
(
rc
);
}
lookup_out:
kfree
(
full_path
);
cifs_put_tlink
(
tlink
);
free_xid
(
xid
);
return
ERR_PTR
(
rc
);
return
d_splice_alias
(
newInode
,
direntry
);
}
static
int
...
...
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