2005-04-17 00:20:36 +02:00
|
|
|
#ifndef _LINUX_PIPE_FS_I_H
|
|
|
|
#define _LINUX_PIPE_FS_I_H
|
|
|
|
|
|
|
|
#define PIPEFS_MAGIC 0x50495045
|
|
|
|
|
|
|
|
#define PIPE_BUFFERS (16)
|
|
|
|
|
2006-05-03 10:35:26 +02:00
|
|
|
#define PIPE_BUF_FLAG_LRU 0x01 /* page is on the LRU */
|
|
|
|
#define PIPE_BUF_FLAG_ATOMIC 0x02 /* was atomically mapped */
|
|
|
|
#define PIPE_BUF_FLAG_GIFT 0x04 /* page is a gift */
|
2006-04-02 23:11:04 +02:00
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
struct pipe_buffer {
|
|
|
|
struct page *page;
|
|
|
|
unsigned int offset, len;
|
2006-12-13 09:34:04 +01:00
|
|
|
const struct pipe_buf_operations *ops;
|
2006-04-02 23:11:04 +02:00
|
|
|
unsigned int flags;
|
2005-04-17 00:20:36 +02:00
|
|
|
};
|
|
|
|
|
2006-05-01 19:59:03 +02:00
|
|
|
/*
|
|
|
|
* Note on the nesting of these functions:
|
|
|
|
*
|
|
|
|
* ->pin()
|
|
|
|
* ->steal()
|
|
|
|
* ...
|
|
|
|
* ->map()
|
|
|
|
* ...
|
|
|
|
* ->unmap()
|
|
|
|
*
|
|
|
|
* That is, ->map() must be called on a pinned buffer, same goes for ->steal().
|
|
|
|
*/
|
2005-04-17 00:20:36 +02:00
|
|
|
struct pipe_buf_operations {
|
|
|
|
int can_merge;
|
2006-05-01 20:02:05 +02:00
|
|
|
void * (*map)(struct pipe_inode_info *, struct pipe_buffer *, int);
|
|
|
|
void (*unmap)(struct pipe_inode_info *, struct pipe_buffer *, void *);
|
2006-05-01 19:59:03 +02:00
|
|
|
int (*pin)(struct pipe_inode_info *, struct pipe_buffer *);
|
2005-04-17 00:20:36 +02:00
|
|
|
void (*release)(struct pipe_inode_info *, struct pipe_buffer *);
|
2006-03-30 15:16:46 +02:00
|
|
|
int (*steal)(struct pipe_inode_info *, struct pipe_buffer *);
|
2006-04-11 15:51:17 +02:00
|
|
|
void (*get)(struct pipe_inode_info *, struct pipe_buffer *);
|
2005-04-17 00:20:36 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
struct pipe_inode_info {
|
|
|
|
wait_queue_head_t wait;
|
|
|
|
unsigned int nrbufs, curbuf;
|
|
|
|
struct page *tmp_page;
|
|
|
|
unsigned int readers;
|
|
|
|
unsigned int writers;
|
|
|
|
unsigned int waiting_writers;
|
|
|
|
unsigned int r_counter;
|
|
|
|
unsigned int w_counter;
|
|
|
|
struct fasync_struct *fasync_readers;
|
|
|
|
struct fasync_struct *fasync_writers;
|
2006-04-10 15:18:35 +02:00
|
|
|
struct inode *inode;
|
2006-12-13 09:34:10 +01:00
|
|
|
struct pipe_buffer bufs[PIPE_BUFFERS];
|
2005-04-17 00:20:36 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
/* Differs from PIPE_BUF in that PIPE_SIZE is the length of the actual
|
|
|
|
memory allocation, whereas PIPE_BUF makes atomicity guarantees. */
|
|
|
|
#define PIPE_SIZE PAGE_SIZE
|
|
|
|
|
|
|
|
/* Drop the inode semaphore and wait for a pipe event, atomically */
|
2006-04-10 15:18:35 +02:00
|
|
|
void pipe_wait(struct pipe_inode_info *pipe);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2006-04-10 15:18:35 +02:00
|
|
|
struct pipe_inode_info * alloc_pipe_info(struct inode * inode);
|
|
|
|
void free_pipe_info(struct inode * inode);
|
2006-04-11 13:52:07 +02:00
|
|
|
void __free_pipe_info(struct pipe_inode_info *);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2006-05-01 19:59:03 +02:00
|
|
|
/* Generic pipe buffer ops functions */
|
2006-05-01 20:02:05 +02:00
|
|
|
void *generic_pipe_buf_map(struct pipe_inode_info *, struct pipe_buffer *, int);
|
|
|
|
void generic_pipe_buf_unmap(struct pipe_inode_info *, struct pipe_buffer *, void *);
|
2006-05-01 19:59:03 +02:00
|
|
|
void generic_pipe_buf_get(struct pipe_inode_info *, struct pipe_buffer *);
|
|
|
|
int generic_pipe_buf_pin(struct pipe_inode_info *, struct pipe_buffer *);
|
2006-05-02 15:29:57 +02:00
|
|
|
int generic_pipe_buf_steal(struct pipe_inode_info *, struct pipe_buffer *);
|
2006-05-01 19:59:03 +02:00
|
|
|
|
2006-03-30 15:16:46 +02:00
|
|
|
/*
|
|
|
|
* splice is tied to pipes as a transport (at least for now), so we'll just
|
|
|
|
* add the splice flags here.
|
|
|
|
*/
|
|
|
|
#define SPLICE_F_MOVE (0x01) /* move pages instead of copying */
|
2006-04-02 21:46:35 +02:00
|
|
|
#define SPLICE_F_NONBLOCK (0x02) /* don't block on the pipe splicing (but */
|
|
|
|
/* we may still block on the fd we splice */
|
|
|
|
/* from/to, of course */
|
2006-04-02 23:05:41 +02:00
|
|
|
#define SPLICE_F_MORE (0x04) /* expect more data */
|
2006-05-01 20:02:33 +02:00
|
|
|
#define SPLICE_F_GIFT (0x08) /* pages passed in are a gift */
|
2006-03-30 15:16:46 +02:00
|
|
|
|
2006-04-26 14:39:29 +02:00
|
|
|
/*
|
|
|
|
* Passed to the actors
|
|
|
|
*/
|
|
|
|
struct splice_desc {
|
|
|
|
unsigned int len, total_len; /* current and remaining length */
|
|
|
|
unsigned int flags; /* splice flags */
|
|
|
|
struct file *file; /* file to read/write */
|
|
|
|
loff_t pos; /* file position */
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef int (splice_actor)(struct pipe_inode_info *, struct pipe_buffer *,
|
|
|
|
struct splice_desc *);
|
|
|
|
|
|
|
|
extern ssize_t splice_from_pipe(struct pipe_inode_info *, struct file *,
|
|
|
|
loff_t *, size_t, unsigned int,
|
|
|
|
splice_actor *);
|
|
|
|
|
2007-03-21 13:11:02 +01:00
|
|
|
extern ssize_t __splice_from_pipe(struct pipe_inode_info *, struct file *,
|
|
|
|
loff_t *, size_t, unsigned int,
|
|
|
|
splice_actor *);
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
#endif
|