aboutsummaryrefslogtreecommitdiff
path: root/block/mq-deadline.c
diff options
context:
space:
mode:
authorGravatar Jiapeng Chong <jiapeng.chong@linux.alibaba.com> 2024-04-19 10:56:10 +0800
committerGravatar Jens Axboe <axboe@kernel.dk> 2024-04-19 08:10:36 -0600
commit8294d49adbb06d7df8cfaca5a4f4eb9064a91b90 (patch)
treeb5f38da97bb43c7d23d05765e8c66cd543529824 /block/mq-deadline.c
parentnull_blk: Simplify null_zone_write() (diff)
downloadlinux-8294d49adbb06d7df8cfaca5a4f4eb9064a91b90.tar.gz
linux-8294d49adbb06d7df8cfaca5a4f4eb9064a91b90.tar.bz2
linux-8294d49adbb06d7df8cfaca5a4f4eb9064a91b90.zip
block/mq-deadline: Remove some unused functions
These functions are defined in the mq-deadline.c file, but not called elsewhere, so delete these unused functions. block/mq-deadline.c:134:1: warning: unused function 'deadline_earlier_request'. block/mq-deadline.c:148:1: warning: unused function 'deadline_latter_request'. Reported-by: Abaci Robot <abaci@linux.alibaba.com> Closes: https://bugzilla.openanolis.cn/show_bug.cgi?id=8803 Signed-off-by: Jiapeng Chong <jiapeng.chong@linux.alibaba.com> Link: https://lore.kernel.org/r/20240419025610.34298-1-jiapeng.chong@linux.alibaba.com Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'block/mq-deadline.c')
-rw-r--r--block/mq-deadline.c28
1 files changed, 0 insertions, 28 deletions
diff --git a/block/mq-deadline.c b/block/mq-deadline.c
index dce8d746b5bd..94eede4fb9eb 100644
--- a/block/mq-deadline.c
+++ b/block/mq-deadline.c
@@ -128,34 +128,6 @@ static u8 dd_rq_ioclass(struct request *rq)
}
/*
- * get the request before `rq' in sector-sorted order
- */
-static inline struct request *
-deadline_earlier_request(struct request *rq)
-{
- struct rb_node *node = rb_prev(&rq->rb_node);
-
- if (node)
- return rb_entry_rq(node);
-
- return NULL;
-}
-
-/*
- * get the request after `rq' in sector-sorted order
- */
-static inline struct request *
-deadline_latter_request(struct request *rq)
-{
- struct rb_node *node = rb_next(&rq->rb_node);
-
- if (node)
- return rb_entry_rq(node);
-
- return NULL;
-}
-
-/*
* Return the first request for which blk_rq_pos() >= @pos.
*/
static inline struct request *deadline_from_pos(struct dd_per_prio *per_prio,