mirror of
https://github.com/koverstreet/bcachefs-tools.git
synced 2025-02-03 00:00:07 +03:00
26 lines
381 B
C
26 lines
381 B
C
|
#ifndef _LINUX_SEQ_FILE_H
|
||
|
#define _LINUX_SEQ_FILE_H
|
||
|
|
||
|
#include <linux/types.h>
|
||
|
#include <linux/fs.h>
|
||
|
|
||
|
struct seq_operations;
|
||
|
struct path;
|
||
|
|
||
|
struct seq_file {
|
||
|
char *buf;
|
||
|
size_t size;
|
||
|
size_t from;
|
||
|
size_t count;
|
||
|
size_t pad_until;
|
||
|
loff_t index;
|
||
|
loff_t read_pos;
|
||
|
u64 version;
|
||
|
const struct seq_operations *op;
|
||
|
int poll_event;
|
||
|
const struct file *file;
|
||
|
void *private;
|
||
|
};
|
||
|
|
||
|
#endif
|