backing-dev.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:3k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * include/linux/backing-dev.h
  3.  *
  4.  * low-level device information and state which is propagated up through
  5.  * to high-level code.
  6.  */
  7. #ifndef _LINUX_BACKING_DEV_H
  8. #define _LINUX_BACKING_DEV_H
  9. #include <asm/atomic.h>
  10. /*
  11.  * Bits in backing_dev_info.state
  12.  */
  13. enum bdi_state {
  14. BDI_pdflush, /* A pdflush thread is working this device */
  15. BDI_write_congested, /* The write queue is getting full */
  16. BDI_read_congested, /* The read queue is getting full */
  17. BDI_unused, /* Available bits start here */
  18. };
  19. typedef int (congested_fn)(void *, int);
  20. struct backing_dev_info {
  21. unsigned long ra_pages; /* max readahead in PAGE_CACHE_SIZE units */
  22. unsigned long state; /* Always use atomic bitops on this */
  23. unsigned int capabilities; /* Device capabilities */
  24. congested_fn *congested_fn; /* Function pointer if device is md/dm */
  25. void *congested_data; /* Pointer to aux data for congested func */
  26. void (*unplug_io_fn)(struct backing_dev_info *, struct page *);
  27. void *unplug_io_data;
  28. };
  29. /*
  30.  * Flags in backing_dev_info::capability
  31.  * - The first two flags control whether dirty pages will contribute to the
  32.  *   VM's accounting and whether writepages() should be called for dirty pages
  33.  *   (something that would not, for example, be appropriate for ramfs)
  34.  * - These flags let !MMU mmap() govern direct device mapping vs immediate
  35.  *   copying more easily for MAP_PRIVATE, especially for ROM filesystems
  36.  */
  37. #define BDI_CAP_NO_ACCT_DIRTY 0x00000001 /* Dirty pages shouldn't contribute to accounting */
  38. #define BDI_CAP_NO_WRITEBACK 0x00000002 /* Don't write pages back */
  39. #define BDI_CAP_MAP_COPY 0x00000004 /* Copy can be mapped (MAP_PRIVATE) */
  40. #define BDI_CAP_MAP_DIRECT 0x00000008 /* Can be mapped directly (MAP_SHARED) */
  41. #define BDI_CAP_READ_MAP 0x00000010 /* Can be mapped for reading */
  42. #define BDI_CAP_WRITE_MAP 0x00000020 /* Can be mapped for writing */
  43. #define BDI_CAP_EXEC_MAP 0x00000040 /* Can be mapped for execution */
  44. #define BDI_CAP_VMFLAGS 
  45. (BDI_CAP_READ_MAP | BDI_CAP_WRITE_MAP | BDI_CAP_EXEC_MAP)
  46. #if defined(VM_MAYREAD) && 
  47. (BDI_CAP_READ_MAP != VM_MAYREAD || 
  48.  BDI_CAP_WRITE_MAP != VM_MAYWRITE || 
  49.  BDI_CAP_EXEC_MAP != VM_MAYEXEC)
  50. #error please change backing_dev_info::capabilities flags
  51. #endif
  52. extern struct backing_dev_info default_backing_dev_info;
  53. void default_unplug_io_fn(struct backing_dev_info *bdi, struct page *page);
  54. int writeback_acquire(struct backing_dev_info *bdi);
  55. int writeback_in_progress(struct backing_dev_info *bdi);
  56. void writeback_release(struct backing_dev_info *bdi);
  57. static inline int bdi_congested(struct backing_dev_info *bdi, int bdi_bits)
  58. {
  59. if (bdi->congested_fn)
  60. return bdi->congested_fn(bdi->congested_data, bdi_bits);
  61. return (bdi->state & bdi_bits);
  62. }
  63. static inline int bdi_read_congested(struct backing_dev_info *bdi)
  64. {
  65. return bdi_congested(bdi, 1 << BDI_read_congested);
  66. }
  67. static inline int bdi_write_congested(struct backing_dev_info *bdi)
  68. {
  69. return bdi_congested(bdi, 1 << BDI_write_congested);
  70. }
  71. static inline int bdi_rw_congested(struct backing_dev_info *bdi)
  72. {
  73. return bdi_congested(bdi, (1 << BDI_read_congested)|
  74.   (1 << BDI_write_congested));
  75. }
  76. #define bdi_cap_writeback_dirty(bdi) 
  77. (!((bdi)->capabilities & BDI_CAP_NO_WRITEBACK))
  78. #define bdi_cap_account_dirty(bdi) 
  79. (!((bdi)->capabilities & BDI_CAP_NO_ACCT_DIRTY))
  80. #define mapping_cap_writeback_dirty(mapping) 
  81. bdi_cap_writeback_dirty((mapping)->backing_dev_info)
  82. #define mapping_cap_account_dirty(mapping) 
  83. bdi_cap_account_dirty((mapping)->backing_dev_info)
  84. #endif /* _LINUX_BACKING_DEV_H */