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 0EAE6C433FE for ; Tue, 26 Apr 2022 18:22:07 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1346751AbiDZSZN (ORCPT ); Tue, 26 Apr 2022 14:25:13 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:49878 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1350097AbiDZSZM (ORCPT ); Tue, 26 Apr 2022 14:25:12 -0400 Received: from mx0b-00082601.pphosted.com (mx0b-00082601.pphosted.com [67.231.153.30]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 7B18D35853 for ; Tue, 26 Apr 2022 11:22:02 -0700 (PDT) Received: from pps.filterd (m0109332.ppops.net [127.0.0.1]) by mx0a-00082601.pphosted.com (8.17.1.5/8.17.1.5) with ESMTP id 23QGQVKQ022619 for ; Tue, 26 Apr 2022 11:22: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 : content-type : content-transfer-encoding : mime-version; s=facebook; bh=sf+7cZhGMKBiHcuOnvVECGvMjvJxKiAQfcMWEmSFo9k=; b=HL3HfkOykyj35rXHIr5Bhn6ZDx0gGTi3GetLmAQhfsIQSgSW2JdbytNPXVTdALL83ByT wpwqrtpmg27PBpi3zTITI1P9er6BkhAGldPRgb9zWnmgw4gnzMOdgQqaFiXBMn1B+vQF QjlPHqWxE+4EmY+KJdLNPgF5LT+aNzgnzH4= Received: from maileast.thefacebook.com ([163.114.130.16]) by mx0a-00082601.pphosted.com (PPS) with ESMTPS id 3fp10efwh5-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128 verify=NOT) for ; Tue, 26 Apr 2022 11:22:01 -0700 Received: from twshared14141.02.ash7.facebook.com (2620:10d:c0a8:1b::d) by mail.thefacebook.com (2620:10d:c0a8:82::c) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2375.24; Tue, 26 Apr 2022 11:22:01 -0700 Received: by devvm225.atn0.facebook.com (Postfix, from userid 425415) id 79F67E2E56A0; Tue, 26 Apr 2022 11:21:36 -0700 (PDT) From: Stefan Roesch To: , , CC: , Subject: [PATCH v4 10/12] io_uring: support CQE32 in /proc info Date: Tue, 26 Apr 2022 11:21:32 -0700 Message-ID: <20220426182134.136504-11-shr@fb.com> X-Mailer: git-send-email 2.30.2 In-Reply-To: <20220426182134.136504-1-shr@fb.com> References: <20220426182134.136504-1-shr@fb.com> X-FB-Internal: Safe Content-Type: text/plain X-Proofpoint-GUID: JQY5J1AYri5yimLgB7vSlWiwWkMD-lME X-Proofpoint-ORIG-GUID: JQY5J1AYri5yimLgB7vSlWiwWkMD-lME Content-Transfer-Encoding: quoted-printable X-Proofpoint-UnRewURL: 0 URL was un-rewritten MIME-Version: 1.0 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-26_05,2022-04-26_02,2022-02-23_01 Precedence: bulk List-ID: X-Mailing-List: io-uring@vger.kernel.org This exposes the extra1 and extra2 fields in the /proc output. Signed-off-by: Stefan Roesch Reviewed-by: Kanchan Joshi --- fs/io_uring.c | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/fs/io_uring.c b/fs/io_uring.c index 9dd075e39850..e1b84204b0ab 100644 --- a/fs/io_uring.c +++ b/fs/io_uring.c @@ -11354,10 +11354,15 @@ static __cold void __io_uring_show_fdinfo(struct = io_ring_ctx *ctx, unsigned int sq_tail =3D READ_ONCE(r->sq.tail); unsigned int cq_head =3D READ_ONCE(r->cq.head); unsigned int cq_tail =3D READ_ONCE(r->cq.tail); + unsigned int cq_shift =3D 0; unsigned int sq_entries, cq_entries; bool has_lock; + bool is_cqe32 =3D (ctx->flags & IORING_SETUP_CQE32); unsigned int i; =20 + if (is_cqe32) + cq_shift =3D 1; + /* * we may get imprecise sqe and cqe info if uring is actively running * since we get cached_sq_head and cached_cq_tail without uring_lock @@ -11390,11 +11395,18 @@ static __cold void __io_uring_show_fdinfo(struct = io_ring_ctx *ctx, cq_entries =3D min(cq_tail - cq_head, ctx->cq_entries); for (i =3D 0; i < cq_entries; i++) { unsigned int entry =3D i + cq_head; - struct io_uring_cqe *cqe =3D &r->cqes[entry & cq_mask]; + struct io_uring_cqe *cqe =3D &r->cqes[(entry & cq_mask) << cq_shift]; =20 - seq_printf(m, "%5u: user_data:%llu, res:%d, flag:%x\n", + if (!is_cqe32) { + seq_printf(m, "%5u: user_data:%llu, res:%d, flag:%x\n", entry & cq_mask, cqe->user_data, cqe->res, cqe->flags); + } else { + seq_printf(m, "%5u: user_data:%llu, res:%d, flag:%x, " + "extra1:%llu, extra2:%llu\n", + entry & cq_mask, cqe->user_data, cqe->res, + cqe->flags, cqe->big_cqe[0], cqe->big_cqe[1]); + } } =20 /* --=20 2.30.2