diff options
author | Steve French <sfrench@us.ibm.com> | 2005-10-11 19:58:06 -0700 |
---|---|---|
committer | Steve French <sfrench@us.ibm.com> | 2005-10-11 19:58:06 -0700 |
commit | 1047abc159b4eb4ba4a7342a0969e16e9d4b4c69 (patch) | |
tree | 532cf6200f2c63869f006dfad2b41d9d408a9a59 /fs/cifs/file.c | |
parent | 4ca9c190d902caa7efb899a4c7fc8c6e6d926e95 (diff) | |
download | linux-3.10-1047abc159b4eb4ba4a7342a0969e16e9d4b4c69.tar.gz linux-3.10-1047abc159b4eb4ba4a7342a0969e16e9d4b4c69.tar.bz2 linux-3.10-1047abc159b4eb4ba4a7342a0969e16e9d4b4c69.zip |
[CIFS] CIFS Stats improvements
New cifs_writepages routine was not updated bytes written in cifs stats.
Also added ability to clear /proc/fs/cifs/Stats by writing (0 or 1) to it.
Signed-off-by: Steve French <sfrench@us.ibm.com>
Diffstat (limited to 'fs/cifs/file.c')
-rw-r--r-- | fs/cifs/file.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/fs/cifs/file.c b/fs/cifs/file.c index 11806c879c4..585a62aebd5 100644 --- a/fs/cifs/file.c +++ b/fs/cifs/file.c @@ -1153,6 +1153,9 @@ retry: rc, bytes_written)); set_bit(AS_EIO, &mapping->flags); SetPageError(page); + } else { + cifs_stats_bytes_written(cifs_sb->tcon, + bytes_written); } for (i = 0; i < n_iov; i++) { page = pvec.pages[first + i]; |