blob: 9b8d6f7b10bd1feb6d5968f805273afefe4c9490 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifdef CONFIG_BLOCK
struct writeback_control;
int mpage_readpages(struct address_space *mapping, struct list_head *pages,
unsigned nr_pages, get_block_t get_block);
int mpage_readpage(struct page *page, get_block_t get_block);
int mpage_writepages(struct address_space *mapping,
struct writeback_control *wbc, get_block_t get_block);
int mpage_writepage(struct page *page, get_block_t *get_block,
struct writeback_control *wbc);
#endif
|