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
8840dee9
Commit
8840dee9
authored
Nov 16, 2007
by
Steve French
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[CIFS] minor checkpatch cleanup
Signed-off-by:
Steve French
<
sfrench@us.ibm.com
>
parent
d6c2e4d0
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
9 deletions
+9
-9
fs/cifs/cifsproto.h
fs/cifs/cifsproto.h
+5
-5
fs/cifs/connect.c
fs/cifs/connect.c
+1
-1
fs/cifs/file.c
fs/cifs/file.c
+3
-3
No files found.
fs/cifs/cifsproto.h
View file @
8840dee9
...
...
@@ -248,15 +248,15 @@ extern int CIFSSMBQueryReparseLinkInfo(const int xid,
extern
int
CIFSSMBOpen
(
const
int
xid
,
struct
cifsTconInfo
*
tcon
,
const
char
*
fileName
,
const
int
disposition
,
const
int
access_flags
,
const
int
omode
,
__u16
*
netfid
,
int
*
pOplock
,
FILE_ALL_INFO
*
,
__u16
*
netfid
,
int
*
pOplock
,
FILE_ALL_INFO
*
,
const
struct
nls_table
*
nls_codepage
,
int
remap
);
extern
int
SMBLegacyOpen
(
const
int
xid
,
struct
cifsTconInfo
*
tcon
,
const
char
*
fileName
,
const
int
disposition
,
const
int
access_flags
,
const
int
omode
,
__u16
*
netfid
,
int
*
pOplock
,
FILE_ALL_INFO
*
,
__u16
*
netfid
,
int
*
pOplock
,
FILE_ALL_INFO
*
,
const
struct
nls_table
*
nls_codepage
,
int
remap
);
extern
int
CIFSPOSIXCreate
(
const
int
xid
,
struct
cifsTconInfo
*
tcon
,
u32
posix_flags
,
__u64
mode
,
__u16
*
netfid
,
u32
posix_flags
,
__u64
mode
,
__u16
*
netfid
,
FILE_UNIX_BASIC_INFO
*
pRetData
,
__u32
*
pOplock
,
const
char
*
name
,
const
struct
nls_table
*
nls_codepage
,
int
remap
);
...
...
@@ -277,7 +277,7 @@ extern int CIFSSMBWrite2(const int xid, struct cifsTconInfo *tcon,
const
__u64
offset
,
unsigned
int
*
nbytes
,
struct
kvec
*
iov
,
const
int
nvec
,
const
int
long_op
);
extern
int
CIFSGetSrvInodeNumber
(
const
int
xid
,
struct
cifsTconInfo
*
tcon
,
const
unsigned
char
*
searchName
,
__u64
*
inode_number
,
const
unsigned
char
*
searchName
,
__u64
*
inode_number
,
const
struct
nls_table
*
nls_codepage
,
int
remap_special_chars
);
extern
int
cifs_convertUCSpath
(
char
*
target
,
const
__le16
*
source
,
int
maxlen
,
...
...
@@ -352,5 +352,5 @@ extern int CIFSSMBSetPosixACL(const int xid, struct cifsTconInfo *tcon,
const
char
*
local_acl
,
const
int
buflen
,
const
int
acl_type
,
const
struct
nls_table
*
nls_codepage
,
int
remap_special_chars
);
extern
int
CIFSGetExtAttr
(
const
int
xid
,
struct
cifsTconInfo
*
tcon
,
const
int
netfid
,
__u64
*
pExtAttrBits
,
__u64
*
pMask
);
const
int
netfid
,
__u64
*
pExtAttrBits
,
__u64
*
pMask
);
#endif
/* _CIFSPROTO_H */
fs/cifs/connect.c
View file @
8840dee9
...
...
@@ -1944,7 +1944,7 @@ cifs_mount(struct super_block *sb, struct cifs_sb_info *cifs_sb,
srvTcp
->
tcpStatus
=
CifsNew
;
init_MUTEX
(
&
srvTcp
->
tcpSem
);
srvTcp
->
tsk
=
kthread_run
((
void
*
)(
void
*
)
cifs_demultiplex_thread
,
srvTcp
,
"cifsd"
);
if
(
IS_ERR
(
srvTcp
->
tsk
)
)
{
if
(
IS_ERR
(
srvTcp
->
tsk
)
)
{
rc
=
PTR_ERR
(
srvTcp
->
tsk
);
cERROR
(
1
,
(
"error %d create cifsd thread"
,
rc
));
srvTcp
->
tsk
=
NULL
;
...
...
fs/cifs/file.c
View file @
8840dee9
...
...
@@ -1087,11 +1087,11 @@ refind_writable:
read_unlock
(
&
GlobalSMBSeslock
);
return
open_file
;
}
read_unlock
(
&
GlobalSMBSeslock
);
/* Had to unlock since following call can block */
rc
=
cifs_reopen_file
(
open_file
->
pfile
,
FALSE
);
if
(
!
rc
)
{
if
(
!
rc
)
{
if
(
!
open_file
->
closePend
)
return
open_file
;
else
{
/* start over in case this was deleted */
...
...
@@ -1114,7 +1114,7 @@ refind_writable:
/* can not use this handle, no write
pending on this one after all */
atomic_dec
(
&
open_file
->
wrtPending
);
if
(
open_file
->
closePend
)
/* list could have changed */
goto
refind_writable
;
/* else we simply continue to the next entry. Thus
...
...
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