summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/trace/events/block.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/include/trace/events/block.h b/include/trace/events/block.h
index 34d64ca306b1..76459cf750e1 100644
--- a/include/trace/events/block.h
+++ b/include/trace/events/block.h
@@ -442,24 +442,6 @@ DEFINE_EVENT(block_get_rq, block_getrq,
);
/**
- * block_sleeprq - waiting to get a free request entry in queue for block IO operation
- * @q: queue for operation
- * @bio: pending block IO operation (can be %NULL)
- * @rw: low bit indicates a read (%0) or a write (%1)
- *
- * In the case where a request struct cannot be provided for queue @q
- * the process needs to wait for an request struct to become
- * available. This tracepoint event is generated each time the
- * process goes to sleep waiting for request struct become available.
- */
-DEFINE_EVENT(block_get_rq, block_sleeprq,
-
- TP_PROTO(struct request_queue *q, struct bio *bio, int rw),
-
- TP_ARGS(q, bio, rw)
-);
-
-/**
* block_plug - keep operations requests in request queue
* @q: request queue to plug
*