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
bf97d287
Commit
bf97d287
authored
Sep 28, 2006
by
Steve French
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[CIFS] CIFS support for /proc/<pid>/mountstats part 1
Signed-off-by:
Steve French
<
sfrench@us.ibm.com
>
parent
a3ab41f1
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
0 deletions
+11
-0
fs/cifs/cifsfs.c
fs/cifs/cifsfs.c
+11
-0
No files found.
fs/cifs/cifsfs.c
View file @
bf97d287
...
...
@@ -437,6 +437,14 @@ static void cifs_umount_begin(struct vfsmount * vfsmnt, int flags)
return
;
}
#ifdef CONFIG_CIFS_STATS2
static
int
cifs_show_stats
(
struct
seq_file
*
s
,
struct
vfsmount
*
mnt
)
{
/* BB FIXME */
return
0
;
}
#endif
static
int
cifs_remount
(
struct
super_block
*
sb
,
int
*
flags
,
char
*
data
)
{
*
flags
|=
MS_NODIRATIME
;
...
...
@@ -456,6 +464,9 @@ static struct super_operations cifs_super_ops = {
.
show_options
=
cifs_show_options
,
.
umount_begin
=
cifs_umount_begin
,
.
remount_fs
=
cifs_remount
,
#ifdef CONFIG_CIFS_STATS2
cifs_show_stats
,
#endif
};
static
int
...
...
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