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
45abc6ee
Commit
45abc6ee
authored
Jun 23, 2005
by
Steve French
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[CIFS] Fix typo in POSIX SetFSInfo call
Signed-off-by: Steve French (sfrench@us.ibm.com)
parent
ea0daab4
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
fs/cifs/cifsproto.h
fs/cifs/cifsproto.h
+1
-1
fs/cifs/cifssmb.c
fs/cifs/cifssmb.c
+1
-1
fs/cifs/connect.c
fs/cifs/connect.c
+1
-1
No files found.
fs/cifs/cifsproto.h
View file @
45abc6ee
...
...
@@ -129,7 +129,7 @@ extern int get_dfs_path(int xid, struct cifsSesInfo *pSesInfo,
int
remap
);
extern
int
CIFSSMBQFSInfo
(
const
int
xid
,
struct
cifsTconInfo
*
tcon
,
struct
kstatfs
*
FSData
);
extern
int
CIFSSMBS
ET
FSUnixInfo
(
const
int
xid
,
struct
cifsTconInfo
*
tcon
,
extern
int
CIFSSMBS
et
FSUnixInfo
(
const
int
xid
,
struct
cifsTconInfo
*
tcon
,
__u64
cap
);
extern
int
CIFSSMBQFSAttributeInfo
(
const
int
xid
,
...
...
fs/cifs/cifssmb.c
View file @
45abc6ee
...
...
@@ -3281,7 +3281,7 @@ CIFSSMBQFSUnixInfo(const int xid, struct cifsTconInfo *tcon)
}
int
CIFSSMBS
ET
FSUnixInfo
(
const
int
xid
,
struct
cifsTconInfo
*
tcon
,
__u64
cap
)
CIFSSMBS
et
FSUnixInfo
(
const
int
xid
,
struct
cifsTconInfo
*
tcon
,
__u64
cap
)
{
/* level 0x200 SMB_SET_CIFS_UNIX_INFO */
TRANSACTION2_SETFSI_REQ
*
pSMB
=
NULL
;
...
...
fs/cifs/connect.c
View file @
45abc6ee
...
...
@@ -1794,7 +1794,7 @@ cifs_mount(struct super_block *sb, struct cifs_sb_info *cifs_sb,
/* Try and negotiate POSIX pathnames if we can. */
if
(
volume_info
.
posix_paths
&&
(
CIFS_UNIX_POSIX_PATHNAMES_CAP
&
le64_to_cpu
(
tcon
->
fsUnixInfo
.
Capability
)))
{
if
(
!
CIFSSMBS
ETFSUnixInfo
(
xid
,
tcon
,
CIFS_UNIX_POSIX_PATHNAMES_CAP
,
0
))
{
if
(
!
CIFSSMBS
etFSUnixInfo
(
xid
,
tcon
,
CIFS_UNIX_POSIX_PATHNAMES_CAP
))
{
cFYI
(
1
,(
"negotiated posix pathnames support"
));
cifs_sb
->
mnt_cifs_flags
|=
CIFS_MOUNT_POSIX_PATHS
;
}
else
{
...
...
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