diff options
author | Eric Dumazet <dada1@cosmosbay.com> | 2005-09-06 15:17:38 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-09-07 16:57:32 -0700 |
commit | 2832e9366a1fcd6f76957a42157be041240f994e (patch) | |
tree | d2dd2a46f3ba7476b7db31806b5d98c4ed6a46dd /include | |
parent | 0730ded5be28653675ed314fdd878b8db5f88aa4 (diff) | |
download | linux-3.10-2832e9366a1fcd6f76957a42157be041240f994e.tar.gz linux-3.10-2832e9366a1fcd6f76957a42157be041240f994e.tar.bz2 linux-3.10-2832e9366a1fcd6f76957a42157be041240f994e.zip |
[PATCH] remove file.f_maxcount
struct file cleanup: f_maxcount has an unique value (INT_MAX). Just use
the hard-wired value.
Signed-off-by: Eric Dumazet <dada1@cosmosbay.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/fs.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/linux/fs.h b/include/linux/fs.h index 67e6732d4fd..2036747c7d1 100644 --- a/include/linux/fs.h +++ b/include/linux/fs.h @@ -594,7 +594,6 @@ struct file { unsigned int f_uid, f_gid; struct file_ra_state f_ra; - size_t f_maxcount; unsigned long f_version; void *f_security; |