Lines Matching defs:writeback_control
51 struct writeback_control { struct
52 long nr_to_write; /* Write this many pages, and decrement
54 long pages_skipped; /* Pages which were not written */
61 loff_t range_start;
62 loff_t range_end;
64 enum writeback_sync_modes sync_mode;
66 unsigned for_kupdate:1; /* A kupdate writeback */
67 unsigned for_background:1; /* A background writeback */
68 unsigned tagged_writepages:1; /* tag-and-write to avoid livelock */
69 unsigned for_reclaim:1; /* Invoked from the page allocator */
70 unsigned range_cyclic:1; /* range_start is cyclic */
71 unsigned for_sync:1; /* sync(2) WB_SYNC_ALL writeback */
97 static inline int wbc_to_write_flags(struct writeback_control *wbc) in wbc_to_write_flags() argument