Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 110451
b: refs/heads/master
c: 27b29e8
h: refs/heads/master
i:
  110449: 2dbe723
  110447: 9b17710
v: v3
  • Loading branch information
David Woodhouse authored and Jens Axboe committed Oct 9, 2008
1 parent 458cf19 commit 2a1bc75
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: fdc53971bce56d299cb5f1f06ecbff30b34cbaf2
refs/heads/master: 27b29e86bf3d4b3cf6641a0efd78ed11a9b633b2
11 changes: 10 additions & 1 deletion trunk/block/blktrace.c
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,13 @@ static u32 ddir_act[2] __read_mostly = { BLK_TC_ACT(BLK_TC_READ), BLK_TC_ACT(BLK
/*
* Bio action bits of interest
*/
static u32 bio_act[9] __read_mostly = { 0, BLK_TC_ACT(BLK_TC_BARRIER), BLK_TC_ACT(BLK_TC_SYNC), 0, BLK_TC_ACT(BLK_TC_AHEAD), 0, 0, 0, BLK_TC_ACT(BLK_TC_META) };
static u32 bio_act[17] __read_mostly = {
[1] = BLK_TC_ACT(BLK_TC_BARRIER),
[2] = BLK_TC_ACT(BLK_TC_SYNC),
[4] = BLK_TC_ACT(BLK_TC_AHEAD),
[8] = BLK_TC_ACT(BLK_TC_META),
[16] = BLK_TC_ACT(BLK_TC_DISCARD)
};

/*
* More could be added as needed, taking care to increment the decrementer
Expand All @@ -128,6 +134,8 @@ static u32 bio_act[9] __read_mostly = { 0, BLK_TC_ACT(BLK_TC_BARRIER), BLK_TC_AC
(((rw) & (1 << BIO_RW_AHEAD)) << (2 - BIO_RW_AHEAD))
#define trace_meta_bit(rw) \
(((rw) & (1 << BIO_RW_META)) >> (BIO_RW_META - 3))
#define trace_discard_bit(rw) \
(((rw) & (1 << BIO_RW_DISCARD)) >> (BIO_RW_DISCARD - 4))

/*
* The worker for the various blk_add_trace*() types. Fills out a
Expand All @@ -151,6 +159,7 @@ void __blk_add_trace(struct blk_trace *bt, sector_t sector, int bytes,
what |= bio_act[trace_sync_bit(rw)];
what |= bio_act[trace_ahead_bit(rw)];
what |= bio_act[trace_meta_bit(rw)];
what |= bio_act[trace_discard_bit(rw)];

pid = tsk->pid;
if (unlikely(act_log_check(bt, what, sector, pid)))
Expand Down
4 changes: 4 additions & 0 deletions trunk/include/linux/blktrace_api.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ enum blktrace_cat {
BLK_TC_NOTIFY = 1 << 10, /* special message */
BLK_TC_AHEAD = 1 << 11, /* readahead */
BLK_TC_META = 1 << 12, /* metadata */
BLK_TC_DISCARD = 1 << 13, /* discard requests */

BLK_TC_END = 1 << 15, /* only 16-bits, reminder */
};
Expand Down Expand Up @@ -195,6 +196,9 @@ static inline void blk_add_trace_rq(struct request_queue *q, struct request *rq,
if (likely(!bt))
return;

if (blk_discard_rq(rq))
rw |= (1 << BIO_RW_DISCARD);

if (blk_pc_request(rq)) {
what |= BLK_TC_ACT(BLK_TC_PC);
__blk_add_trace(bt, 0, rq->data_len, rw, what, rq->errors, sizeof(rq->cmd), rq->cmd);
Expand Down

0 comments on commit 2a1bc75

Please sign in to comment.