Skip to content

Commit

Permalink
blk-stat: kill blk_stat_rq_ddir()
Browse files Browse the repository at this point in the history
No point in providing and exporting this helper. There's just
one (real) user of it, just use rq_data_dir().

Reviewed-by: Christoph Hellwig <[email protected]>
Signed-off-by: Jens Axboe <[email protected]>
  • Loading branch information
axboe committed Apr 21, 2017
1 parent 1cc1f17 commit 99c749a
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 19 deletions.
2 changes: 1 addition & 1 deletion block/blk-mq.c
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ static int blk_mq_poll_stats_bkt(const struct request *rq)
{
int ddir, bytes, bucket;

ddir = blk_stat_rq_ddir(rq);
ddir = rq_data_dir(rq);
bytes = blk_rq_bytes(rq);

bucket = ddir + 2*(ilog2(bytes) - 9);
Expand Down
6 changes: 0 additions & 6 deletions block/blk-stat.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,6 @@ struct blk_queue_stats {
bool enable_accounting;
};

int blk_stat_rq_ddir(const struct request *rq)
{
return rq_data_dir(rq);
}
EXPORT_SYMBOL_GPL(blk_stat_rq_ddir);

static void blk_stat_init(struct blk_rq_stat *stat)
{
stat->min = -1ULL;
Expand Down
11 changes: 0 additions & 11 deletions block/blk-stat.h
Original file line number Diff line number Diff line change
Expand Up @@ -112,17 +112,6 @@ static inline void blk_stat_set_issue(struct blk_issue_stat *stat,
/* record time/size info in request but not add a callback */
void blk_stat_enable_accounting(struct request_queue *q);

/*
* blk_stat_rq_ddir() - Bucket callback function for the request data direction.
* @rq: Request.
*
* This is the same as rq_data_dir() but as a function so it can be used as
* @bucket_fn for blk_stat_alloc_callback().
*
* Return: Data direction of the request, either READ or WRITE.
*/
int blk_stat_rq_ddir(const struct request *rq);

/**
* blk_stat_alloc_callback() - Allocate a block statistics callback.
* @timer_fn: Timer callback function.
Expand Down
7 changes: 6 additions & 1 deletion block/blk-wbt.c
Original file line number Diff line number Diff line change
Expand Up @@ -696,6 +696,11 @@ u64 wbt_default_latency_nsec(struct request_queue *q)
return 75000000ULL;
}

static int wbt_data_dir(const struct request *rq)
{
return rq_data_dir(rq);
}

int wbt_init(struct request_queue *q)
{
struct rq_wb *rwb;
Expand All @@ -707,7 +712,7 @@ int wbt_init(struct request_queue *q)
if (!rwb)
return -ENOMEM;

rwb->cb = blk_stat_alloc_callback(wb_timer_fn, blk_stat_rq_ddir, 2, rwb);
rwb->cb = blk_stat_alloc_callback(wb_timer_fn, wbt_data_dir, 2, rwb);
if (!rwb->cb) {
kfree(rwb);
return -ENOMEM;
Expand Down

0 comments on commit 99c749a

Please sign in to comment.