Lines Matching defs:pipe_inode_info
58 struct pipe_inode_info { struct
59 struct mutex mutex;
60 wait_queue_head_t rd_wait, wr_wait;
61 unsigned int head;
62 unsigned int tail;
63 unsigned int max_usage;
64 unsigned int ring_size;
66 bool note_loss;
68 unsigned int nr_accounted;
69 unsigned int readers;
70 unsigned int writers;
71 unsigned int files;
72 unsigned int r_counter;
73 unsigned int w_counter;
74 bool poll_usage;
75 struct page *tmp_page;
76 struct fasync_struct *fasync_readers;
77 struct fasync_struct *fasync_writers;
78 struct pipe_buffer *bufs;
79 struct user_struct *user;
103 int (*confirm)(struct pipe_inode_info *, struct pipe_buffer *); argument