]> git.sesse.net Git - bcachefs-tools-debian/blob - include/linux/seq_file.h
Update bcachefs sources to 14ce2a2031 bcachefs: fixes for building in userspace
[bcachefs-tools-debian] / include / linux / seq_file.h
1 #ifndef _LINUX_SEQ_FILE_H
2 #define _LINUX_SEQ_FILE_H
3
4 #include <linux/types.h>
5 #include <linux/fs.h>
6
7 struct seq_operations;
8 struct path;
9
10 struct seq_file {
11         char *buf;
12         size_t size;
13         size_t from;
14         size_t count;
15         size_t pad_until;
16         loff_t index;
17         loff_t read_pos;
18         u64 version;
19         const struct seq_operations *op;
20         int poll_event;
21         const struct file *file;
22         void *private;
23 };
24
25 #endif