From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 52E21C433F5 for ; Mon, 25 Apr 2022 18:26:10 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232243AbiDYS3M (ORCPT ); Mon, 25 Apr 2022 14:29:12 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:53726 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S244405AbiDYS3K (ORCPT ); Mon, 25 Apr 2022 14:29:10 -0400 Received: from mx0a-00082601.pphosted.com (mx0a-00082601.pphosted.com [67.231.145.42]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 14CDA1C92D for ; Mon, 25 Apr 2022 11:26:02 -0700 (PDT) Received: from pps.filterd (m0148461.ppops.net [127.0.0.1]) by mx0a-00082601.pphosted.com (8.17.1.5/8.17.1.5) with ESMTP id 23PHP57r011370 for ; Mon, 25 Apr 2022 11:26:01 -0700 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=fb.com; h=from : to : cc : subject : date : message-id : in-reply-to : references : mime-version : content-transfer-encoding : content-type; s=facebook; bh=1ay7a1aUN831BbzKNcHrLHX4+MSpR3Z3Q+0padLs0OA=; b=LT1Ze9Q5A5hGKYjBEc9ezxwSdE28aF7UvBSjx3GytymN9LRoe6j3KQjxbbQor6FeCsye ILaW022GloUjVhTKjIH+8BfUA/QfrsNkUuOtpbqEEs/OpPz35l/D/jcZSOugImxVXfgQ DTAyuIg3e0uePMdaXOVseGBi2p1Dx4i4rmc= Received: from maileast.thefacebook.com ([163.114.130.16]) by mx0a-00082601.pphosted.com (PPS) with ESMTPS id 3fmejp46xp-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128 verify=NOT) for ; Mon, 25 Apr 2022 11:26:01 -0700 Received: from twshared19572.14.frc2.facebook.com (2620:10d:c0a8:1b::d) by mail.thefacebook.com (2620:10d:c0a8:83::5) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2375.24; Mon, 25 Apr 2022 11:26:00 -0700 Received: by devvm225.atn0.facebook.com (Postfix, from userid 425415) id 52A06E1F2A65; Mon, 25 Apr 2022 11:25:41 -0700 (PDT) From: Stefan Roesch To: , , CC: , , Jens Axboe Subject: [PATCH v3 09/12] io_uring: add tracing for additional CQE32 fields Date: Mon, 25 Apr 2022 11:25:27 -0700 Message-ID: <20220425182530.2442911-10-shr@fb.com> X-Mailer: git-send-email 2.30.2 In-Reply-To: <20220425182530.2442911-1-shr@fb.com> References: <20220425182530.2442911-1-shr@fb.com> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-FB-Internal: Safe Content-Type: text/plain X-Proofpoint-GUID: CL5kgLHdmeK_SH8ZD3SBcmEpxRZ0KBgQ X-Proofpoint-ORIG-GUID: CL5kgLHdmeK_SH8ZD3SBcmEpxRZ0KBgQ X-Proofpoint-Virus-Version: vendor=baseguard engine=ICAP:2.0.205,Aquarius:18.0.858,Hydra:6.0.486,FMLib:17.11.64.514 definitions=2022-04-25_10,2022-04-25_03,2022-02-23_01 Precedence: bulk List-ID: X-Mailing-List: io-uring@vger.kernel.org This adds tracing for the extra1 and extra2 fields. Co-developed-by: Jens Axboe Signed-off-by: Stefan Roesch Signed-off-by: Jens Axboe --- fs/io_uring.c | 11 ++++++----- include/trace/events/io_uring.h | 18 ++++++++++++++---- 2 files changed, 20 insertions(+), 9 deletions(-) diff --git a/fs/io_uring.c b/fs/io_uring.c index 3630671325ea..9dd075e39850 100644 --- a/fs/io_uring.c +++ b/fs/io_uring.c @@ -2187,7 +2187,7 @@ static inline bool __io_fill_cqe_req_filled(struct = io_ring_ctx *ctx, struct io_uring_cqe *cqe; =20 trace_io_uring_complete(req->ctx, req, req->cqe.user_data, - req->cqe.res, req->cqe.flags); + req->cqe.res, req->cqe.flags, 0, 0); =20 /* * If we can't get a cq entry, userspace overflowed the @@ -2211,7 +2211,7 @@ static inline bool __io_fill_cqe32_req_filled(struc= t io_ring_ctx *ctx, u64 extra2 =3D req->extra2; =20 trace_io_uring_complete(req->ctx, req, req->cqe.user_data, - req->cqe.res, req->cqe.flags); + req->cqe.res, req->cqe.flags, extra1, extra2); =20 /* * If we can't get a cq entry, userspace overflowed the @@ -2232,7 +2232,7 @@ static inline bool __io_fill_cqe32_req_filled(struc= t io_ring_ctx *ctx, =20 static inline bool __io_fill_cqe_req(struct io_kiocb *req, s32 res, u32 = cflags) { - trace_io_uring_complete(req->ctx, req, req->cqe.user_data, res, cflags)= ; + trace_io_uring_complete(req->ctx, req, req->cqe.user_data, res, cflags,= 0, 0); return __io_fill_cqe(req->ctx, req->cqe.user_data, res, cflags); } =20 @@ -2247,7 +2247,8 @@ static inline void __io_fill_cqe32_req(struct io_ki= ocb *req, s32 res, u32 cflags if (req->flags & REQ_F_CQE_SKIP) return; =20 - trace_io_uring_complete(ctx, req, req->cqe.user_data, res, cflags); + trace_io_uring_complete(ctx, req, req->cqe.user_data, res, cflags, + extra1, extra2); =20 /* * If we can't get a cq entry, userspace overflowed the @@ -2271,7 +2272,7 @@ static noinline bool io_fill_cqe_aux(struct io_ring= _ctx *ctx, u64 user_data, s32 res, u32 cflags) { ctx->cq_extra++; - trace_io_uring_complete(ctx, NULL, user_data, res, cflags); + trace_io_uring_complete(ctx, NULL, user_data, res, cflags, 0, 0); return __io_fill_cqe(ctx, user_data, res, cflags); } =20 diff --git a/include/trace/events/io_uring.h b/include/trace/events/io_ur= ing.h index 8477414d6d06..2eb4f4e47de4 100644 --- a/include/trace/events/io_uring.h +++ b/include/trace/events/io_uring.h @@ -318,13 +318,16 @@ TRACE_EVENT(io_uring_fail_link, * @user_data: user data associated with the request * @res: result of the request * @cflags: completion flags + * @extra1: extra 64-bit data for CQE32 + * @extra2: extra 64-bit data for CQE32 * */ TRACE_EVENT(io_uring_complete, =20 - TP_PROTO(void *ctx, void *req, u64 user_data, int res, unsigned cflags)= , + TP_PROTO(void *ctx, void *req, u64 user_data, int res, unsigned cflags, + u64 extra1, u64 extra2), =20 - TP_ARGS(ctx, req, user_data, res, cflags), + TP_ARGS(ctx, req, user_data, res, cflags, extra1, extra2), =20 TP_STRUCT__entry ( __field( void *, ctx ) @@ -332,6 +335,8 @@ TRACE_EVENT(io_uring_complete, __field( u64, user_data ) __field( int, res ) __field( unsigned, cflags ) + __field( u64, extra1 ) + __field( u64, extra2 ) ), =20 TP_fast_assign( @@ -340,12 +345,17 @@ TRACE_EVENT(io_uring_complete, __entry->user_data =3D user_data; __entry->res =3D res; __entry->cflags =3D cflags; + __entry->extra1 =3D extra1; + __entry->extra2 =3D extra2; ), =20 - TP_printk("ring %p, req %p, user_data 0x%llx, result %d, cflags 0x%x", + TP_printk("ring %p, req %p, user_data 0x%llx, result %d, cflags 0x%x " + "extra1 %llu extra2 %llu ", __entry->ctx, __entry->req, __entry->user_data, - __entry->res, __entry->cflags) + __entry->res, __entry->cflags, + (unsigned long long) __entry->extra1, + (unsigned long long) __entry->extra2) ); =20 /** --=20 2.30.2