pipe_fs_i.h 2.2 KB

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