Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 3e7ee3e7b36fa4e2d88d8fb0a2577be95fc4636d 71 lines 2.3 kB view raw
1#ifndef _LINUX_PIPE_FS_I_H 2#define _LINUX_PIPE_FS_I_H 3 4#define PIPEFS_MAGIC 0x50495045 5 6#define PIPE_BUFFERS (16) 7 8#define PIPE_BUF_FLAG_STOLEN 0x01 9#define PIPE_BUF_FLAG_LRU 0x02 10 11struct pipe_buffer { 12 struct page *page; 13 unsigned int offset, len; 14 struct pipe_buf_operations *ops; 15 unsigned int flags; 16}; 17 18struct pipe_buf_operations { 19 int can_merge; 20 void * (*map)(struct file *, struct pipe_inode_info *, struct pipe_buffer *); 21 void (*unmap)(struct pipe_inode_info *, struct pipe_buffer *); 22 void (*release)(struct pipe_inode_info *, struct pipe_buffer *); 23 int (*steal)(struct pipe_inode_info *, struct pipe_buffer *); 24}; 25 26struct pipe_inode_info { 27 wait_queue_head_t wait; 28 unsigned int nrbufs, curbuf; 29 struct pipe_buffer bufs[PIPE_BUFFERS]; 30 struct page *tmp_page; 31 unsigned int start; 32 unsigned int readers; 33 unsigned int writers; 34 unsigned int waiting_writers; 35 unsigned int r_counter; 36 unsigned int w_counter; 37 struct fasync_struct *fasync_readers; 38 struct fasync_struct *fasync_writers; 39}; 40 41/* Differs from PIPE_BUF in that PIPE_SIZE is the length of the actual 42 memory allocation, whereas PIPE_BUF makes atomicity guarantees. */ 43#define PIPE_SIZE PAGE_SIZE 44 45#define PIPE_MUTEX(inode) (&(inode).i_mutex) 46#define PIPE_WAIT(inode) (&(inode).i_pipe->wait) 47#define PIPE_READERS(inode) ((inode).i_pipe->readers) 48#define PIPE_WRITERS(inode) ((inode).i_pipe->writers) 49#define PIPE_WAITING_WRITERS(inode) ((inode).i_pipe->waiting_writers) 50#define PIPE_RCOUNTER(inode) ((inode).i_pipe->r_counter) 51#define PIPE_WCOUNTER(inode) ((inode).i_pipe->w_counter) 52#define PIPE_FASYNC_READERS(inode) (&((inode).i_pipe->fasync_readers)) 53#define PIPE_FASYNC_WRITERS(inode) (&((inode).i_pipe->fasync_writers)) 54 55/* Drop the inode semaphore and wait for a pipe event, atomically */ 56void pipe_wait(struct inode * inode); 57 58struct inode* pipe_new(struct inode* inode); 59void free_pipe_info(struct inode* inode); 60 61/* 62 * splice is tied to pipes as a transport (at least for now), so we'll just 63 * add the splice flags here. 64 */ 65#define SPLICE_F_MOVE (0x01) /* move pages instead of copying */ 66#define SPLICE_F_NONBLOCK (0x02) /* don't block on the pipe splicing (but */ 67 /* we may still block on the fd we splice */ 68 /* from/to, of course */ 69#define SPLICE_F_MORE (0x04) /* expect more data */ 70 71#endif