diff options
author | Kent Overstreet <kent.overstreet@gmail.com> | 2015-06-24 05:25:32 -0700 |
---|---|---|
committer | Kent Overstreet <kent.overstreet@gmail.com> | 2018-05-14 15:08:43 -0400 |
commit | 5232a0e7c91c93ada5e56a2e3a0402b3e0578f9c (patch) | |
tree | 12191ee9ff4aecd6ec273b709a3925b535a82740 | |
parent | e4e7ad10ff213404c79484433c0154e9b9cd7346 (diff) |
block: Export bio check/set pages_dirty
Signed-off-by: Kent Overstreet <kent.overstreet@gmail.com>
-rw-r--r-- | block/bio.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/block/bio.c b/block/bio.c index d8bcc12d5aa4..0a4df92cd689 100644 --- a/block/bio.c +++ b/block/bio.c @@ -1610,6 +1610,7 @@ void bio_set_pages_dirty(struct bio *bio) set_page_dirty_lock(page); } } +EXPORT_SYMBOL_GPL(bio_set_pages_dirty); static void bio_release_pages(struct bio *bio) { @@ -1693,6 +1694,7 @@ void bio_check_pages_dirty(struct bio *bio) bio_put(bio); } } +EXPORT_SYMBOL_GPL(bio_check_pages_dirty); void generic_start_io_acct(struct request_queue *q, int rw, unsigned long sectors, struct hd_struct *part) |