|
@@ -30,6 +30,8 @@ void bdi_put(struct backing_dev_info *bdi);
|
|
__printf(3, 4)
|
|
__printf(3, 4)
|
|
int bdi_register(struct backing_dev_info *bdi, struct device *parent,
|
|
int bdi_register(struct backing_dev_info *bdi, struct device *parent,
|
|
const char *fmt, ...);
|
|
const char *fmt, ...);
|
|
|
|
+int bdi_register_va(struct backing_dev_info *bdi, struct device *parent,
|
|
|
|
+ const char *fmt, va_list args);
|
|
int bdi_register_dev(struct backing_dev_info *bdi, dev_t dev);
|
|
int bdi_register_dev(struct backing_dev_info *bdi, dev_t dev);
|
|
int bdi_register_owner(struct backing_dev_info *bdi, struct device *owner);
|
|
int bdi_register_owner(struct backing_dev_info *bdi, struct device *owner);
|
|
void bdi_unregister(struct backing_dev_info *bdi);
|
|
void bdi_unregister(struct backing_dev_info *bdi);
|
|
@@ -37,6 +39,10 @@ void bdi_unregister(struct backing_dev_info *bdi);
|
|
int __must_check bdi_setup_and_register(struct backing_dev_info *, char *);
|
|
int __must_check bdi_setup_and_register(struct backing_dev_info *, char *);
|
|
void bdi_destroy(struct backing_dev_info *bdi);
|
|
void bdi_destroy(struct backing_dev_info *bdi);
|
|
struct backing_dev_info *bdi_alloc_node(gfp_t gfp_mask, int node_id);
|
|
struct backing_dev_info *bdi_alloc_node(gfp_t gfp_mask, int node_id);
|
|
|
|
+static inline struct backing_dev_info *bdi_alloc(gfp_t gfp_mask)
|
|
|
|
+{
|
|
|
|
+ return bdi_alloc_node(gfp_mask, NUMA_NO_NODE);
|
|
|
|
+}
|
|
|
|
|
|
void wb_start_writeback(struct bdi_writeback *wb, long nr_pages,
|
|
void wb_start_writeback(struct bdi_writeback *wb, long nr_pages,
|
|
bool range_cyclic, enum wb_reason reason);
|
|
bool range_cyclic, enum wb_reason reason);
|