aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/pipe_fs_i.h
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-16 18:20:36 -0400
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-16 18:20:36 -0400
commit1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch)
tree0bba044c4ce775e45a88a51686b5d9f90697ea9d /include/linux/pipe_fs_i.h
Linux-2.6.12-rc2v2.6.12-rc2
Initial git repository build. I'm not bothering with the full history, even though we have it. We can create a separate "historical" git archive of that later if we want to, and in the meantime it's about 3.2GB when imported into git - space that would just make the early git days unnecessarily complicated, when we don't have a lot of good infrastructure for it. Let it rip!
Diffstat (limited to 'include/linux/pipe_fs_i.h')
-rw-r--r--include/linux/pipe_fs_i.h59
1 files changed, 59 insertions, 0 deletions
diff --git a/include/linux/pipe_fs_i.h b/include/linux/pipe_fs_i.h
new file mode 100644
index 000000000000..36725e7c02c6
--- /dev/null
+++ b/include/linux/pipe_fs_i.h
@@ -0,0 +1,59 @@
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
8struct pipe_buffer {
9 struct page *page;
10 unsigned int offset, len;
11 struct pipe_buf_operations *ops;
12};
13
14struct pipe_buf_operations {
15 int can_merge;
16 void * (*map)(struct file *, struct pipe_inode_info *, struct pipe_buffer *);
17 void (*unmap)(struct pipe_inode_info *, struct pipe_buffer *);
18 void (*release)(struct pipe_inode_info *, struct pipe_buffer *);
19};
20
21struct pipe_inode_info {
22 wait_queue_head_t wait;
23 unsigned int nrbufs, curbuf;
24 struct pipe_buffer bufs[PIPE_BUFFERS];
25 struct page *tmp_page;
26 unsigned int start;
27 unsigned int readers;
28 unsigned int writers;
29 unsigned int waiting_writers;
30 unsigned int r_counter;
31 unsigned int w_counter;
32 struct fasync_struct *fasync_readers;
33 struct fasync_struct *fasync_writers;
34};
35
36/* Differs from PIPE_BUF in that PIPE_SIZE is the length of the actual
37 memory allocation, whereas PIPE_BUF makes atomicity guarantees. */
38#define PIPE_SIZE PAGE_SIZE
39
40#define PIPE_SEM(inode) (&(inode).i_sem)
41#define PIPE_WAIT(inode) (&(inode).i_pipe->wait)
42#define PIPE_BASE(inode) ((inode).i_pipe->base)
43#define PIPE_START(inode) ((inode).i_pipe->start)
44#define PIPE_LEN(inode) ((inode).i_pipe->len)
45#define PIPE_READERS(inode) ((inode).i_pipe->readers)
46#define PIPE_WRITERS(inode) ((inode).i_pipe->writers)
47#define PIPE_WAITING_WRITERS(inode) ((inode).i_pipe->waiting_writers)
48#define PIPE_RCOUNTER(inode) ((inode).i_pipe->r_counter)
49#define PIPE_WCOUNTER(inode) ((inode).i_pipe->w_counter)
50#define PIPE_FASYNC_READERS(inode) (&((inode).i_pipe->fasync_readers))
51#define PIPE_FASYNC_WRITERS(inode) (&((inode).i_pipe->fasync_writers))
52
53/* Drop the inode semaphore and wait for a pipe event, atomically */
54void pipe_wait(struct inode * inode);
55
56struct inode* pipe_new(struct inode* inode);
57void free_pipe_info(struct inode* inode);
58
59#endif