Message ID | 20220203201207.1075933-1-shy828301@gmail.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | [v6] block: introduce block_rq_error tracepoint | expand |
Yang, On 2/3/22 12:12, Yang Shi wrote: > Currently, rasdaemon uses the existing tracepoint block_rq_complete > and filters out non-error cases in order to capture block disk errors. > > But there are a few problems with this approach: > > 1. Even kernel trace filter could do the filtering work, there is > still some overhead after we enable this tracepoint. > > 2. The filter is merely based on errno, which does not align with kernel > logic to check the errors for print_req_error(). > > 3. block_rq_complete only provides dev major and minor to identify > the block device, it is not convenient to use in user-space. > > So introduce a new tracepoint block_rq_error just for the error case. > With this patch, rasdaemon could switch to block_rq_error. > This patch looks good, but I've a question for you. We already have a tracepoint for the request completion block_rq_complete(). We are adding a new tracepoint blk_rq_error() that is also similar to what blk_rq_complete() reports. Similar call sites :- trace_block_rq_complete(req, error, nr_bytes); trace_block_rq_error(req, error, nr_bytes); The only delta between blk_rq_complete() and blk_rq_error() is cmd field for blk_rq_complete() in the TP_STRUCT_ENTRY() and __get_str(cmd) field in TP_printk() which I don't think will have any issue if we use that for blk_rq_error(). Question 1 :- What prevents us from using the same format for both blk_rq_complete() and blk_rq_error() ? Question 2 :- assuming that blk_rq_complete() and blk_rq_error() are using same format why can't we :- declare DECLARE_EVENT_CLASS(blk_rq_completion....) and use that class for blk_rq_complete() and blk_rq_error() ? since if I remember correctly we need to define a event class instead of duplicating a tracepoint with similar reporting. -ck
Yang, > Question 1 :- What prevents us from using the same format for > both blk_rq_complete() and blk_rq_error() ? > > Question 2 :- assuming that blk_rq_complete() and blk_rq_error() > are using same format why can't we :- > > declare DECLARE_EVENT_CLASS(blk_rq_completion....) > and use that class for blk_rq_complete() and blk_rq_error() ? > > since if I remember correctly we need to define a event class > instead of duplicating a tracepoint with similar reporting. What I meant is following compile tested patch (although it will need to split into a prep patch in order to post it) :- diff --git a/include/trace/events/block.h b/include/trace/events/block.h index 27170e40e8c9..7f4dfbdf12a6 100644 --- a/include/trace/events/block.h +++ b/include/trace/events/block.h @@ -100,19 +100,7 @@ TRACE_EVENT(block_rq_requeue, __entry->nr_sector, 0) ); -/** - * block_rq_complete - block IO operation completed by device driver - * @rq: block operations request - * @error: status code - * @nr_bytes: number of completed bytes - * - * The block_rq_complete tracepoint event indicates that some portion - * of operation request has been completed by the device driver. If - * the @rq->bio is %NULL, then there is absolutely no additional work to - * do for the request. If @rq->bio is non-NULL then there is - * additional work required to complete the request. - */ -TRACE_EVENT(block_rq_complete, +DECLARE_EVENT_CLASS(block_rq_completion, TP_PROTO(struct request *rq, blk_status_t error, unsigned int nr_bytes), @@ -144,6 +132,41 @@ TRACE_EVENT(block_rq_complete, __entry->nr_sector, __entry->error) ); +/** + * block_rq_complete - block IO operation completed by device driver + * @rq: block operations request + * @error: status code + * @nr_bytes: number of completed bytes + * + * The block_rq_complete tracepoint event indicates that some portion + * of operation request has been completed by the device driver. If + * the @rq->bio is %NULL, then there is absolutely no additional work to + * do for the request. If @rq->bio is non-NULL then there is + * additional work required to complete the request. + */ +DEFINE_EVENT(block_rq_completion, block_rq_complete, + + TP_PROTO(struct request *rq, blk_status_t error, unsigned int nr_bytes), + + TP_ARGS(rq, error, nr_bytes) +); + +/** + * block_rq_error - block IO operation error reported by device driver + * @rq: block operations request + * @error: status code + * @nr_bytes: number of completed bytes + * + * The block_rq_error tracepoint event indicates that some portion + * of operation request has failed as reported by the device driver. + */ +DEFINE_EVENT(block_rq_completion, block_rq_error, + + TP_PROTO(struct request *rq, blk_status_t error, unsigned int nr_bytes), + + TP_ARGS(rq, error, nr_bytes) +); + DECLARE_EVENT_CLASS(block_rq, TP_PROTO(struct request *rq), > > -ck > >
On Thu, Feb 3, 2022 at 6:46 PM Chaitanya Kulkarni <chaitanyak@nvidia.com> wrote: > > Yang, > > On 2/3/22 12:12, Yang Shi wrote: > > Currently, rasdaemon uses the existing tracepoint block_rq_complete > > and filters out non-error cases in order to capture block disk errors. > > > > But there are a few problems with this approach: > > > > 1. Even kernel trace filter could do the filtering work, there is > > still some overhead after we enable this tracepoint. > > > > 2. The filter is merely based on errno, which does not align with kernel > > logic to check the errors for print_req_error(). > > > > 3. block_rq_complete only provides dev major and minor to identify > > the block device, it is not convenient to use in user-space. > > > > So introduce a new tracepoint block_rq_error just for the error case. > > With this patch, rasdaemon could switch to block_rq_error. > > > > This patch looks good, but I've a question for you. > > We already have a tracepoint for the request completion > block_rq_complete(). We are adding a new tracepoint blk_rq_error() > that is also similar to what blk_rq_complete() reports. > Similar call sites :- > trace_block_rq_complete(req, error, nr_bytes); > trace_block_rq_error(req, error, nr_bytes); > > The only delta between blk_rq_complete() and blk_rq_error() is > cmd field for blk_rq_complete() in the TP_STRUCT_ENTRY() and > __get_str(cmd) field in TP_printk() which I don't think will > have any issue if we use that for blk_rq_error(). Yes, I agree. Just no user needs it for our usecase. > > Question 1 :- What prevents us from using the same format for > both blk_rq_complete() and blk_rq_error() ? Actually nothing if we ignore cmd. > > Question 2 :- assuming that blk_rq_complete() and blk_rq_error() > are using same format why can't we :- > > declare DECLARE_EVENT_CLASS(blk_rq_completion....) > and use that class for blk_rq_complete() and blk_rq_error() ? > > since if I remember correctly we need to define a event class > instead of duplicating a tracepoint with similar reporting. Very good point. I did overlook it. The original post did have disk name and didn't have cmd, now the two tracepoints look much more similar than the original post, so I agree the duplicate could be combined into an event class. > > -ck > >
On Fri, Feb 4, 2022 at 12:35 AM Chaitanya Kulkarni <chaitanyak@nvidia.com> wrote: > > Yang, > > > Question 1 :- What prevents us from using the same format for > > both blk_rq_complete() and blk_rq_error() ? > > > > Question 2 :- assuming that blk_rq_complete() and blk_rq_error() > > are using same format why can't we :- > > > > declare DECLARE_EVENT_CLASS(blk_rq_completion....) > > and use that class for blk_rq_complete() and blk_rq_error() ? > > > > since if I remember correctly we need to define a event class > > instead of duplicating a tracepoint with similar reporting. > > What I meant is following compile tested patch (although it will > need to split into a prep patch in order to post it) :- Thank you so much. I will prepare the new patches. I assume you prefer a prep patch which converts trace event to event class, then add block_rq_err event. > > diff --git a/include/trace/events/block.h b/include/trace/events/block.h > index 27170e40e8c9..7f4dfbdf12a6 100644 > --- a/include/trace/events/block.h > +++ b/include/trace/events/block.h > @@ -100,19 +100,7 @@ TRACE_EVENT(block_rq_requeue, > __entry->nr_sector, 0) > ); > > -/** > - * block_rq_complete - block IO operation completed by device driver > - * @rq: block operations request > - * @error: status code > - * @nr_bytes: number of completed bytes > - * > - * The block_rq_complete tracepoint event indicates that some portion > - * of operation request has been completed by the device driver. If > - * the @rq->bio is %NULL, then there is absolutely no additional work to > - * do for the request. If @rq->bio is non-NULL then there is > - * additional work required to complete the request. > - */ > -TRACE_EVENT(block_rq_complete, > +DECLARE_EVENT_CLASS(block_rq_completion, > > TP_PROTO(struct request *rq, blk_status_t error, unsigned int > nr_bytes), > > @@ -144,6 +132,41 @@ TRACE_EVENT(block_rq_complete, > __entry->nr_sector, __entry->error) > ); > > +/** > + * block_rq_complete - block IO operation completed by device driver > + * @rq: block operations request > + * @error: status code > + * @nr_bytes: number of completed bytes > + * > + * The block_rq_complete tracepoint event indicates that some portion > + * of operation request has been completed by the device driver. If > + * the @rq->bio is %NULL, then there is absolutely no additional work to > + * do for the request. If @rq->bio is non-NULL then there is > + * additional work required to complete the request. > + */ > +DEFINE_EVENT(block_rq_completion, block_rq_complete, > + > + TP_PROTO(struct request *rq, blk_status_t error, unsigned int > nr_bytes), > + > + TP_ARGS(rq, error, nr_bytes) > +); > + > +/** > + * block_rq_error - block IO operation error reported by device driver > + * @rq: block operations request > + * @error: status code > + * @nr_bytes: number of completed bytes > + * > + * The block_rq_error tracepoint event indicates that some portion > + * of operation request has failed as reported by the device driver. > + */ > +DEFINE_EVENT(block_rq_completion, block_rq_error, > + > + TP_PROTO(struct request *rq, blk_status_t error, unsigned int > nr_bytes), > + > + TP_ARGS(rq, error, nr_bytes) > +); > + > DECLARE_EVENT_CLASS(block_rq, > > TP_PROTO(struct request *rq), > > > > -ck > > > > >
>> since if I remember correctly we need to define a event class >> instead of duplicating a tracepoint with similar reporting. > > Very good point. I did overlook it. The original post did have disk > name and didn't have cmd, now the two tracepoints look much more > similar than the original post, so I agree the duplicate could be > combined into an event class. > I sent out a V7 with a prep patch and testlog keeping your original authorship from this patch. If you find anything wrong with that please send out V8 on the top of V7. >> >> -ck >> >>
diff --git a/block/blk-mq.c b/block/blk-mq.c index f3bf3358a3bb..4ca72ea917d4 100644 --- a/block/blk-mq.c +++ b/block/blk-mq.c @@ -789,8 +789,10 @@ bool blk_update_request(struct request *req, blk_status_t error, #endif if (unlikely(error && !blk_rq_is_passthrough(req) && - !(req->rq_flags & RQF_QUIET))) + !(req->rq_flags & RQF_QUIET))) { + trace_block_rq_error(req, error, nr_bytes); blk_print_req_error(req, error); + } blk_account_io_completion(req, nr_bytes); diff --git a/include/trace/events/block.h b/include/trace/events/block.h index 27170e40e8c9..8c0bb06e16b8 100644 --- a/include/trace/events/block.h +++ b/include/trace/events/block.h @@ -144,6 +144,45 @@ TRACE_EVENT(block_rq_complete, __entry->nr_sector, __entry->error) ); +/** + * block_rq_error - block IO operation error reported by device driver + * @rq: block operations request + * @error: status code + * @nr_bytes: number of completed bytes + * + * The block_rq_error tracepoint event indicates that some portion + * of operation request has failed as reported by the device driver. + */ +TRACE_EVENT(block_rq_error, + + TP_PROTO(struct request *rq, blk_status_t error, unsigned int nr_bytes), + + TP_ARGS(rq, error, nr_bytes), + + TP_STRUCT__entry( + __field( dev_t, dev ) + __field( sector_t, sector ) + __field( unsigned int, nr_sector ) + __field( int, error ) + __array( char, rwbs, RWBS_LEN ) + ), + + TP_fast_assign( + __entry->dev = rq->q->disk ? disk_devt(rq->q->disk) : 0; + __entry->sector = blk_rq_pos(rq); + __entry->nr_sector = nr_bytes >> 9; + __entry->error = blk_status_to_errno(error); + + blk_fill_rwbs(__entry->rwbs, rq->cmd_flags); + ), + + TP_printk("%d,%d %s %llu + %u [%d]", + MAJOR(__entry->dev), MINOR(__entry->dev), + __entry->rwbs, + (unsigned long long)__entry->sector, + __entry->nr_sector, __entry->error) +); + DECLARE_EVENT_CLASS(block_rq, TP_PROTO(struct request *rq),