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
nexedi
linux
Commits
2f81e752
Commit
2f81e752
authored
Nov 25, 2009
by
Steve French
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[CIFS] Fix sparse warning
Also update CHANGES file Signed-off-by:
Steve French
<
sfrench@us.ibm.com
>
parent
cea62343
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
1 deletion
+10
-1
fs/cifs/CHANGES
fs/cifs/CHANGES
+9
-0
fs/cifs/dir.c
fs/cifs/dir.c
+1
-1
No files found.
fs/cifs/CHANGES
View file @
2f81e752
Version 1.61
------------
Fix append problem to Samba servers (files opened with O_APPEND could
have duplicated data). Fix oops in cifs_lookup. Workaround problem
mounting to OS/400 Netserve. Fix oops in cifs_get_tcp_session.
Disable use of server inode numbers when server only
partially supports them (e.g. for one server querying inode numbers on
FindFirst fails but QPathInfo queries works).
Version 1.60
-------------
Fix memory leak in reconnect. Fix oops in DFS mount error path.
...
...
fs/cifs/dir.c
View file @
2f81e752
...
...
@@ -643,7 +643,7 @@ cifs_lookup(struct inode *parent_dir_inode, struct dentry *direntry,
*/
if
(
nd
&&
(
nd
->
flags
&
LOOKUP_EXCL
))
{
d_instantiate
(
direntry
,
NULL
);
return
0
;
return
NULL
;
}
/* can not grab the rename sem here since it would
...
...
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