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
99b1f5b2
Commit
99b1f5b2
authored
Jul 24, 2008
by
Steve French
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[CIFS] remove checkpatch warning
Signed-off-by:
Steve French
<
sfrench@us.ibm.com
>
parent
f984c7b9
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
7 deletions
+12
-7
fs/cifs/cifs_debug.c
fs/cifs/cifs_debug.c
+12
-7
No files found.
fs/cifs/cifs_debug.c
View file @
99b1f5b2
...
...
@@ -395,11 +395,16 @@ cifs_proc_init(void)
proc_create
(
"cifsFYI"
,
0
,
proc_fs_cifs
,
&
cifsFYI_proc_fops
);
proc_create
(
"traceSMB"
,
0
,
proc_fs_cifs
,
&
traceSMB_proc_fops
);
proc_create
(
"OplockEnabled"
,
0
,
proc_fs_cifs
,
&
cifs_oplock_proc_fops
);
proc_create
(
"Experimental"
,
0
,
proc_fs_cifs
,
&
cifs_experimental_proc_fops
);
proc_create
(
"LinuxExtensionsEnabled"
,
0
,
proc_fs_cifs
,
&
cifs_linux_ext_proc_fops
);
proc_create
(
"MultiuserMount"
,
0
,
proc_fs_cifs
,
&
cifs_multiuser_mount_proc_fops
);
proc_create
(
"SecurityFlags"
,
0
,
proc_fs_cifs
,
&
cifs_security_flags_proc_fops
);
proc_create
(
"LookupCacheEnabled"
,
0
,
proc_fs_cifs
,
&
cifs_lookup_cache_proc_fops
);
proc_create
(
"Experimental"
,
0
,
proc_fs_cifs
,
&
cifs_experimental_proc_fops
);
proc_create
(
"LinuxExtensionsEnabled"
,
0
,
proc_fs_cifs
,
&
cifs_linux_ext_proc_fops
);
proc_create
(
"MultiuserMount"
,
0
,
proc_fs_cifs
,
&
cifs_multiuser_mount_proc_fops
);
proc_create
(
"SecurityFlags"
,
0
,
proc_fs_cifs
,
&
cifs_security_flags_proc_fops
);
proc_create
(
"LookupCacheEnabled"
,
0
,
proc_fs_cifs
,
&
cifs_lookup_cache_proc_fops
);
}
void
...
...
@@ -655,9 +660,9 @@ static int cifs_multiuser_mount_proc_show(struct seq_file *m, void *v)
return
0
;
}
static
int
cifs_multiuser_mount_proc_open
(
struct
inode
*
inode
,
struct
file
*
f
ile
)
static
int
cifs_multiuser_mount_proc_open
(
struct
inode
*
inode
,
struct
file
*
f
h
)
{
return
single_open
(
f
ile
,
cifs_multiuser_mount_proc_show
,
NULL
);
return
single_open
(
f
h
,
cifs_multiuser_mount_proc_show
,
NULL
);
}
static
ssize_t
cifs_multiuser_mount_proc_write
(
struct
file
*
file
,
...
...
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