Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | |
Jens Axboe | 3e7ee3e | 2006-04-02 23:11:04 +0200 | [diff] [blame] | 8 | #define PIPE_BUF_FLAG_STOLEN 0x01 |
| 9 | #define PIPE_BUF_FLAG_LRU 0x02 |
| 10 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | struct pipe_buffer { |
| 12 | struct page *page; |
| 13 | unsigned int offset, len; |
| 14 | struct pipe_buf_operations *ops; |
Jens Axboe | 3e7ee3e | 2006-04-02 23:11:04 +0200 | [diff] [blame] | 15 | unsigned int flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | }; |
| 17 | |
| 18 | struct 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 *); |
Jens Axboe | 5abc97a | 2006-03-30 15:16:46 +0200 | [diff] [blame] | 23 | int (*steal)(struct pipe_inode_info *, struct pipe_buffer *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | }; |
| 25 | |
| 26 | struct 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; |
Ingo Molnar | 3a326a2 | 2006-04-10 15:18:35 +0200 | [diff] [blame] | 39 | struct inode *inode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | }; |
| 41 | |
| 42 | /* Differs from PIPE_BUF in that PIPE_SIZE is the length of the actual |
| 43 | memory allocation, whereas PIPE_BUF makes atomicity guarantees. */ |
| 44 | #define PIPE_SIZE PAGE_SIZE |
| 45 | |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 46 | #define PIPE_MUTEX(inode) (&(inode).i_mutex) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | #define PIPE_WAIT(inode) (&(inode).i_pipe->wait) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | #define PIPE_READERS(inode) ((inode).i_pipe->readers) |
| 49 | #define PIPE_WRITERS(inode) ((inode).i_pipe->writers) |
| 50 | #define PIPE_WAITING_WRITERS(inode) ((inode).i_pipe->waiting_writers) |
| 51 | #define PIPE_RCOUNTER(inode) ((inode).i_pipe->r_counter) |
| 52 | #define PIPE_WCOUNTER(inode) ((inode).i_pipe->w_counter) |
| 53 | #define PIPE_FASYNC_READERS(inode) (&((inode).i_pipe->fasync_readers)) |
| 54 | #define PIPE_FASYNC_WRITERS(inode) (&((inode).i_pipe->fasync_writers)) |
| 55 | |
| 56 | /* Drop the inode semaphore and wait for a pipe event, atomically */ |
Ingo Molnar | 3a326a2 | 2006-04-10 15:18:35 +0200 | [diff] [blame] | 57 | void pipe_wait(struct pipe_inode_info *pipe); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | |
Ingo Molnar | 3a326a2 | 2006-04-10 15:18:35 +0200 | [diff] [blame] | 59 | struct pipe_inode_info * alloc_pipe_info(struct inode * inode); |
| 60 | void free_pipe_info(struct inode * inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | |
Jens Axboe | 5abc97a | 2006-03-30 15:16:46 +0200 | [diff] [blame] | 62 | /* |
| 63 | * splice is tied to pipes as a transport (at least for now), so we'll just |
| 64 | * add the splice flags here. |
| 65 | */ |
| 66 | #define SPLICE_F_MOVE (0x01) /* move pages instead of copying */ |
Linus Torvalds | 29e3509 | 2006-04-02 12:46:35 -0700 | [diff] [blame] | 67 | #define SPLICE_F_NONBLOCK (0x02) /* don't block on the pipe splicing (but */ |
| 68 | /* we may still block on the fd we splice */ |
| 69 | /* from/to, of course */ |
Jens Axboe | b2b39fa | 2006-04-02 23:05:41 +0200 | [diff] [blame] | 70 | #define SPLICE_F_MORE (0x04) /* expect more data */ |
Jens Axboe | 5abc97a | 2006-03-30 15:16:46 +0200 | [diff] [blame] | 71 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | #endif |