* [BUGFIX] index of rq.count[]
@ 2009-07-28 13:06 Ryo Tsuruta
2009-07-28 20:21 ` Jens Axboe
0 siblings, 1 reply; 2+ messages in thread
From: Ryo Tsuruta @ 2009-07-28 13:06 UTC (permalink / raw)
To: jens.axboe; +Cc: linux-kernel
Hi,
The following patch corrects that the index of rq.count[] should use
BLK_RW_SYNC/BLK_RW_ASYNC instead of READ/WRITE.
Thanks,
Ryo Tsuruta
---
include/trace/events/block.h | 6 ++++--
kernel/trace/blktrace.c | 6 ++++--
2 files changed, 8 insertions(+), 4 deletions(-)
Index: linux-2.6.31-rc4/kernel/trace/blktrace.c
===================================================================
--- linux-2.6.31-rc4.orig/kernel/trace/blktrace.c
+++ linux-2.6.31-rc4/kernel/trace/blktrace.c
@@ -796,7 +796,8 @@ static void blk_add_trace_unplug_io(stru
struct blk_trace *bt = q->blk_trace;
if (bt) {
- unsigned int pdu = q->rq.count[READ] + q->rq.count[WRITE];
+ unsigned int pdu =
+ q->rq.count[BLK_RW_SYNC] + q->rq.count[BLK_RW_ASYNC];
__be64 rpdu = cpu_to_be64(pdu);
__blk_add_trace(bt, 0, 0, 0, BLK_TA_UNPLUG_IO, 0,
@@ -809,7 +810,8 @@ static void blk_add_trace_unplug_timer(s
struct blk_trace *bt = q->blk_trace;
if (bt) {
- unsigned int pdu = q->rq.count[READ] + q->rq.count[WRITE];
+ unsigned int pdu =
+ q->rq.count[BLK_RW_SYNC] + q->rq.count[BLK_RW_ASYNC];
__be64 rpdu = cpu_to_be64(pdu);
__blk_add_trace(bt, 0, 0, 0, BLK_TA_UNPLUG_TIMER, 0,
Index: linux-2.6.31-rc4/include/trace/events/block.h
===================================================================
--- linux-2.6.31-rc4.orig/include/trace/events/block.h
+++ linux-2.6.31-rc4/include/trace/events/block.h
@@ -397,7 +397,8 @@ TRACE_EVENT(block_unplug_timer,
),
TP_fast_assign(
- __entry->nr_rq = q->rq.count[READ] + q->rq.count[WRITE];
+ __entry->nr_rq =
+ q->rq.count[BLK_RW_SYNC] + q->rq.count[BLK_RW_ASYNC];
memcpy(__entry->comm, current->comm, TASK_COMM_LEN);
),
@@ -416,7 +417,8 @@ TRACE_EVENT(block_unplug_io,
),
TP_fast_assign(
- __entry->nr_rq = q->rq.count[READ] + q->rq.count[WRITE];
+ __entry->nr_rq =
+ q->rq.count[BLK_RW_SYNC] + q->rq.count[BLK_RW_ASYNC];
memcpy(__entry->comm, current->comm, TASK_COMM_LEN);
),
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2009-07-28 20:21 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-07-28 13:06 [BUGFIX] index of rq.count[] Ryo Tsuruta
2009-07-28 20:21 ` Jens Axboe
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox