mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-18 08:46:40 +07:00
block: unexport blk_end_sync_rq
All the users of blk_end_sync_rq has gone (they are converted to use blk_execute_rq). This unexports blk_end_sync_rq. Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> Cc: Borislav Petkov <petkovbb@gmail.com> Signed-off-by: Jens Axboe <jens.axboe@oracle.com> Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
This commit is contained in:
parent
52a93ba815
commit
681a561b7e
@ -18,7 +18,7 @@
|
|||||||
* @rq: request to complete
|
* @rq: request to complete
|
||||||
* @error: end io status of the request
|
* @error: end io status of the request
|
||||||
*/
|
*/
|
||||||
void blk_end_sync_rq(struct request *rq, int error)
|
static void blk_end_sync_rq(struct request *rq, int error)
|
||||||
{
|
{
|
||||||
struct completion *waiting = rq->end_io_data;
|
struct completion *waiting = rq->end_io_data;
|
||||||
|
|
||||||
@ -31,7 +31,6 @@ void blk_end_sync_rq(struct request *rq, int error)
|
|||||||
*/
|
*/
|
||||||
complete(waiting);
|
complete(waiting);
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL(blk_end_sync_rq);
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* blk_execute_rq_nowait - insert a request into queue for execution
|
* blk_execute_rq_nowait - insert a request into queue for execution
|
||||||
|
@ -623,7 +623,6 @@ extern void generic_make_request(struct bio *bio);
|
|||||||
extern void blk_rq_init(struct request_queue *q, struct request *rq);
|
extern void blk_rq_init(struct request_queue *q, struct request *rq);
|
||||||
extern void blk_put_request(struct request *);
|
extern void blk_put_request(struct request *);
|
||||||
extern void __blk_put_request(struct request_queue *, struct request *);
|
extern void __blk_put_request(struct request_queue *, struct request *);
|
||||||
extern void blk_end_sync_rq(struct request *rq, int error);
|
|
||||||
extern struct request *blk_get_request(struct request_queue *, int, gfp_t);
|
extern struct request *blk_get_request(struct request_queue *, int, gfp_t);
|
||||||
extern void blk_insert_request(struct request_queue *, struct request *, int, void *);
|
extern void blk_insert_request(struct request_queue *, struct request *, int, void *);
|
||||||
extern void blk_requeue_request(struct request_queue *, struct request *);
|
extern void blk_requeue_request(struct request_queue *, struct request *);
|
||||||
|
Loading…
Reference in New Issue
Block a user