blob: ef7f33c0be19190590cc205f5828ba1fc6ea9170 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#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 Axboe3e7ee3e2006-04-02 23:11:04 +02008#define PIPE_BUF_FLAG_STOLEN 0x01
9#define PIPE_BUF_FLAG_LRU 0x02
10
Linus Torvalds1da177e2005-04-16 15:20:36 -070011struct pipe_buffer {
12 struct page *page;
13 unsigned int offset, len;
14 struct pipe_buf_operations *ops;
Jens Axboe3e7ee3e2006-04-02 23:11:04 +020015 unsigned int flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016};
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 *);
Jens Axboe5abc97a2006-03-30 15:16:46 +020023 int (*steal)(struct pipe_inode_info *, struct pipe_buffer *);
Jens Axboe70524492006-04-11 15:51:17 +020024 void (*get)(struct pipe_inode_info *, struct pipe_buffer *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070025};
26
27struct pipe_inode_info {
28 wait_queue_head_t wait;
29 unsigned int nrbufs, curbuf;
30 struct pipe_buffer bufs[PIPE_BUFFERS];
31 struct page *tmp_page;
32 unsigned int start;
33 unsigned int readers;
34 unsigned int writers;
35 unsigned int waiting_writers;
36 unsigned int r_counter;
37 unsigned int w_counter;
38 struct fasync_struct *fasync_readers;
39 struct fasync_struct *fasync_writers;
Ingo Molnar3a326a22006-04-10 15:18:35 +020040 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -070041};
42
43/* Differs from PIPE_BUF in that PIPE_SIZE is the length of the actual
44 memory allocation, whereas PIPE_BUF makes atomicity guarantees. */
45#define PIPE_SIZE PAGE_SIZE
46
Linus Torvalds1da177e2005-04-16 15:20:36 -070047/* Drop the inode semaphore and wait for a pipe event, atomically */
Ingo Molnar3a326a22006-04-10 15:18:35 +020048void pipe_wait(struct pipe_inode_info *pipe);
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Ingo Molnar3a326a22006-04-10 15:18:35 +020050struct pipe_inode_info * alloc_pipe_info(struct inode * inode);
51void free_pipe_info(struct inode * inode);
Jens Axboeb92ce552006-04-11 13:52:07 +020052void __free_pipe_info(struct pipe_inode_info *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Jens Axboe5abc97a2006-03-30 15:16:46 +020054/*
55 * splice is tied to pipes as a transport (at least for now), so we'll just
56 * add the splice flags here.
57 */
58#define SPLICE_F_MOVE (0x01) /* move pages instead of copying */
Linus Torvalds29e35092006-04-02 12:46:35 -070059#define SPLICE_F_NONBLOCK (0x02) /* don't block on the pipe splicing (but */
60 /* we may still block on the fd we splice */
61 /* from/to, of course */
Jens Axboeb2b39fa2006-04-02 23:05:41 +020062#define SPLICE_F_MORE (0x04) /* expect more data */
Jens Axboe5abc97a2006-03-30 15:16:46 +020063
Linus Torvalds1da177e2005-04-16 15:20:36 -070064#endif