diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/trace/events/block.h | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/include/trace/events/block.h b/include/trace/events/block.h index 006e60b58306..bf366547da25 100644 --- a/include/trace/events/block.h +++ b/include/trace/events/block.h | |||
@@ -401,9 +401,9 @@ TRACE_EVENT(block_plug, | |||
401 | 401 | ||
402 | DECLARE_EVENT_CLASS(block_unplug, | 402 | DECLARE_EVENT_CLASS(block_unplug, |
403 | 403 | ||
404 | TP_PROTO(struct request_queue *q, unsigned int depth), | 404 | TP_PROTO(struct request_queue *q, unsigned int depth, bool explicit), |
405 | 405 | ||
406 | TP_ARGS(q, depth), | 406 | TP_ARGS(q, depth, explicit), |
407 | 407 | ||
408 | TP_STRUCT__entry( | 408 | TP_STRUCT__entry( |
409 | __field( int, nr_rq ) | 409 | __field( int, nr_rq ) |
@@ -419,18 +419,19 @@ DECLARE_EVENT_CLASS(block_unplug, | |||
419 | ); | 419 | ); |
420 | 420 | ||
421 | /** | 421 | /** |
422 | * block_unplug_io - release of operations requests in request queue | 422 | * block_unplug - release of operations requests in request queue |
423 | * @q: request queue to unplug | 423 | * @q: request queue to unplug |
424 | * @depth: number of requests just added to the queue | 424 | * @depth: number of requests just added to the queue |
425 | * @explicit: whether this was an explicit unplug, or one from schedule() | ||
425 | * | 426 | * |
426 | * Unplug request queue @q because device driver is scheduled to work | 427 | * Unplug request queue @q because device driver is scheduled to work |
427 | * on elements in the request queue. | 428 | * on elements in the request queue. |
428 | */ | 429 | */ |
429 | DEFINE_EVENT(block_unplug, block_unplug_io, | 430 | DEFINE_EVENT(block_unplug, block_unplug, |
430 | 431 | ||
431 | TP_PROTO(struct request_queue *q, unsigned int depth), | 432 | TP_PROTO(struct request_queue *q, unsigned int depth, bool explicit), |
432 | 433 | ||
433 | TP_ARGS(q, depth) | 434 | TP_ARGS(q, depth, explicit) |
434 | ); | 435 | ); |
435 | 436 | ||
436 | /** | 437 | /** |