diff options
author | Matthew Wilcox (Oracle) <willy@infradead.org> | 2020-04-07 06:09:17 +0300 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2020-04-07 20:43:42 +0300 |
commit | b829a0f0f2f2094c1e40637259c44b854e6ebe96 (patch) | |
tree | 52397e8a7978e738e92b69a0b74561f9a2351373 /include/linux/seq_file.h | |
parent | 4781f2c3abddc400cfdb6ed18c2bf655d402efb5 (diff) | |
download | linux-b829a0f0f2f2094c1e40637259c44b854e6ebe96.tar.xz |
seq_file: remove m->version
The process maps file was the only user of version (introduced back in
2005). Now that it uses ppos instead, we can remove it.
Signed-off-by: Matthew Wilcox (Oracle) <willy@infradead.org>
Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Link: http://lkml.kernel.org/r/20200317193201.9924-4-adobriyan@gmail.com
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include/linux/seq_file.h')
-rw-r--r-- | include/linux/seq_file.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/linux/seq_file.h b/include/linux/seq_file.h index 770c2bf3aa43..1672cf6f7614 100644 --- a/include/linux/seq_file.h +++ b/include/linux/seq_file.h @@ -21,7 +21,6 @@ struct seq_file { size_t pad_until; loff_t index; loff_t read_pos; - u64 version; struct mutex lock; const struct seq_operations *op; int poll_event; |