Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
Kernel
提交
8840dee9
K
Kernel
项目概览
openeuler
/
Kernel
1 年多 前同步成功
通知
8
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
K
Kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
8840dee9
编写于
11月 16, 2007
作者:
S
Steve French
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[CIFS] minor checkpatch cleanup
Signed-off-by:
N
Steve French
<
sfrench@us.ibm.com
>
上级
d6c2e4d0
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
9 addition
and
9 deletion
+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
未找到文件。
fs/cifs/cifsproto.h
浏览文件 @
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
浏览文件 @
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
浏览文件 @
8840dee9
...
...
@@ -1087,11 +1087,11 @@ struct cifsFileInfo *find_writable_file(struct cifsInodeInfo *cifs_inode)
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 @@ struct cifsFileInfo *find_writable_file(struct cifsInodeInfo *cifs_inode)
/* 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
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录