File tree Expand file tree Collapse file tree 4 files changed +4
-1
lines changed Expand file tree Collapse file tree 4 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -1472,6 +1472,7 @@ void bio_set_pages_dirty(struct bio *bio)
1472
1472
set_page_dirty_lock (bvec -> bv_page );
1473
1473
}
1474
1474
}
1475
+ EXPORT_SYMBOL_GPL (bio_set_pages_dirty );
1475
1476
1476
1477
/*
1477
1478
* bio_check_pages_dirty() will check that all the BIO's pages are still dirty.
@@ -1531,6 +1532,7 @@ void bio_check_pages_dirty(struct bio *bio)
1531
1532
spin_unlock_irqrestore (& bio_dirty_lock , flags );
1532
1533
schedule_work (& bio_dirty_work );
1533
1534
}
1535
+ EXPORT_SYMBOL_GPL (bio_check_pages_dirty );
1534
1536
1535
1537
static inline bool bio_remaining_done (struct bio * bio )
1536
1538
{
Original file line number Diff line number Diff line change @@ -208,6 +208,7 @@ const char *blk_status_to_str(blk_status_t status)
208
208
return "<null>" ;
209
209
return blk_errors [idx ].name ;
210
210
}
211
+ EXPORT_SYMBOL_GPL (blk_status_to_str );
211
212
212
213
/**
213
214
* blk_sync_queue - cancel any pending callbacks on a queue
Original file line number Diff line number Diff line change @@ -254,7 +254,6 @@ static inline void bio_integrity_free(struct bio *bio)
254
254
255
255
unsigned long blk_rq_timeout (unsigned long timeout );
256
256
void blk_add_timer (struct request * req );
257
- const char * blk_status_to_str (blk_status_t status );
258
257
259
258
bool blk_attempt_plug_merge (struct request_queue * q , struct bio * bio ,
260
259
unsigned int nr_segs );
Original file line number Diff line number Diff line change @@ -847,6 +847,7 @@ extern const char *blk_op_str(enum req_op op);
847
847
848
848
int blk_status_to_errno (blk_status_t status );
849
849
blk_status_t errno_to_blk_status (int errno );
850
+ const char * blk_status_to_str (blk_status_t status );
850
851
851
852
/* only poll the hardware once, don't continue until a completion was found */
852
853
#define BLK_POLL_ONESHOT (1 << 0)
You can’t perform that action at this time.
0 commit comments