Skip to content

Commit

Permalink
block: only calculate part_in_flight() once
Browse files Browse the repository at this point in the history
We first check if we have inflight IO, then retrieve that
same number again. Usually this isn't that costly since the
chance of having the data dirtied in between is small, but
there's no reason for calling part_in_flight() twice.

Signed-off-by: Jens Axboe <[email protected]>
  • Loading branch information
axboe committed May 9, 2014
1 parent cf4b50a commit 7276d02
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions block/blk-core.c
Original file line number Diff line number Diff line change
Expand Up @@ -1233,12 +1233,15 @@ static void add_acct_request(struct request_queue *q, struct request *rq,
static void part_round_stats_single(int cpu, struct hd_struct *part,
unsigned long now)
{
int inflight;

if (now == part->stamp)
return;

if (part_in_flight(part)) {
inflight = part_in_flight(part);
if (inflight) {
__part_stat_add(cpu, part, time_in_queue,
part_in_flight(part) * (now - part->stamp));
inflight * (now - part->stamp));
__part_stat_add(cpu, part, io_ticks, (now - part->stamp));
}
part->stamp = now;
Expand Down

0 comments on commit 7276d02

Please sign in to comment.