Lines Matching defs:backing_dev_info
169 struct backing_dev_info { struct
170 u64 id;
171 struct rb_node rb_node; /* keyed by ->id */
172 struct list_head bdi_list;
173 unsigned long ra_pages; /* max readahead in PAGE_SIZE units */
174 unsigned long io_pages; /* max allowed IO size */
176 struct kref refcnt; /* Reference counter for the structure */
177 unsigned int capabilities; /* Device capabilities */
178 unsigned int min_ratio;
179 unsigned int max_ratio, max_prop_frac;
185 atomic_long_t tot_write_bandwidth;
187 struct bdi_writeback wb; /* the root writeback info for this bdi */
188 struct list_head wb_list; /* list of all wbs */
190 struct radix_tree_root cgwb_tree; /* radix tree of active cgroup wbs */
191 struct mutex cgwb_release_mutex; /* protect shutdown of wb structs */
215 void clear_bdi_congested(struct backing_dev_info *bdi, int sync); argument