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 063DDC433EF for ; Wed, 20 Apr 2022 19:15:11 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S245254AbiDTTRz (ORCPT ); Wed, 20 Apr 2022 15:17:55 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:36080 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1348424AbiDTTRx (ORCPT ); Wed, 20 Apr 2022 15:17:53 -0400 Received: from mx0a-00082601.pphosted.com (mx0b-00082601.pphosted.com [67.231.153.30]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 53B0926CE for ; Wed, 20 Apr 2022 12:15:04 -0700 (PDT) Received: from pps.filterd (m0001303.ppops.net [127.0.0.1]) by m0001303.ppops.net (8.16.1.2/8.16.1.2) with ESMTP id 23KILRtW008189 for ; Wed, 20 Apr 2022 12:15:03 -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=tdP3GjTe3SB0xco0bVU4HQuoY1mOpWcTEfikWiHZHSI=; b=SeOOawv6g1I44nVA1CsupieoB00EF7uS9Gz1Ex72Po6tYuvntXIbkwnCAld7zFKNVWDa CKnCH+q3UAtj3gF1aXX3wEiZQ2/a9SZlsMzeVI2543jRPF4WEPfmfbLz76KydcE4VyJ9 ZNoUDpRlpjasgXiHZizdc2MSsHOCr5Tf6sw= Received: from maileast.thefacebook.com ([163.114.130.16]) by m0001303.ppops.net (PPS) with ESMTPS id 3fj7k3dfgu-6 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128 verify=NOT) for ; Wed, 20 Apr 2022 12:15:03 -0700 Received: from twshared14141.02.ash7.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; Wed, 20 Apr 2022 12:15:01 -0700 Received: by devvm225.atn0.facebook.com (Postfix, from userid 425415) id 9930FDE0C40C; Wed, 20 Apr 2022 12:14:53 -0700 (PDT) From: Stefan Roesch To: , CC: Subject: [PATCH v2 04/12] io_uring: add CQE32 setup processing Date: Wed, 20 Apr 2022 12:14:43 -0700 Message-ID: <20220420191451.2904439-5-shr@fb.com> X-Mailer: git-send-email 2.30.2 In-Reply-To: <20220420191451.2904439-1-shr@fb.com> References: <20220420191451.2904439-1-shr@fb.com> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-FB-Internal: Safe Content-Type: text/plain X-Proofpoint-ORIG-GUID: ad7ggC-hJvHhrFosp_LM5gSyhYzL0GFZ X-Proofpoint-GUID: ad7ggC-hJvHhrFosp_LM5gSyhYzL0GFZ 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-20_05,2022-04-20_01,2022-02-23_01 Precedence: bulk List-ID: X-Mailing-List: io-uring@vger.kernel.org This adds two new function to setup and fill the CQE32 result structure. Signed-off-by: Stefan Roesch Signed-off-by: Jens Axboe --- fs/io_uring.c | 58 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) diff --git a/fs/io_uring.c b/fs/io_uring.c index 9712483d3a17..abbd2efbe255 100644 --- a/fs/io_uring.c +++ b/fs/io_uring.c @@ -2175,12 +2175,70 @@ static inline bool __io_fill_cqe_req_filled(struc= t io_ring_ctx *ctx, req->cqe.res, req->cqe.flags); } =20 +static inline bool __io_fill_cqe32_req_filled(struct io_ring_ctx *ctx, + struct io_kiocb *req) +{ + struct io_uring_cqe *cqe; + u64 extra1 =3D req->extra1; + u64 extra2 =3D req->extra2; + + trace_io_uring_complete(req->ctx, req, req->cqe.user_data, + req->cqe.res, req->cqe.flags); + + /* + * If we can't get a cq entry, userspace overflowed the + * submission (by quite a lot). Increment the overflow count in + * the ring. + */ + cqe =3D io_get_cqe(ctx); + if (likely(cqe)) { + memcpy(cqe, &req->cqe, sizeof(struct io_uring_cqe)); + cqe->b[0].extra1 =3D extra1; + cqe->b[0].extra2 =3D extra2; + return true; + } + + return io_cqring_event_overflow(ctx, req->cqe.user_data, + req->cqe.res, req->cqe.flags, extra1, extra2); +} + 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)= ; return __io_fill_cqe(req->ctx, req->cqe.user_data, res, cflags); } =20 +static void __io_fill_cqe32_req(struct io_kiocb *req, s32 res, u32 cflag= s, + u64 extra1, u64 extra2) +{ + struct io_ring_ctx *ctx =3D req->ctx; + struct io_uring_cqe *cqe; + + if (WARN_ON_ONCE(!(ctx->flags & IORING_SETUP_CQE32))) + return; + if (req->flags & REQ_F_CQE_SKIP) + return; + + trace_io_uring_complete(ctx, req, req->user_data, res, cflags); + + /* + * If we can't get a cq entry, userspace overflowed the + * submission (by quite a lot). Increment the overflow count in + * the ring. + */ + cqe =3D io_get_cqe(ctx); + if (likely(cqe)) { + WRITE_ONCE(cqe->user_data, req->cqe.user_data); + WRITE_ONCE(cqe->res, res); + WRITE_ONCE(cqe->flags, cflags); + WRITE_ONCE(cqe->b[0].extra1, extra1); + WRITE_ONCE(cqe->b[0].extra2, extra2); + return; + } + + io_cqring_event_overflow(ctx, req->cqe.user_data, res, cflags); +} + static noinline bool io_fill_cqe_aux(struct io_ring_ctx *ctx, u64 user_d= ata, s32 res, u32 cflags) { --=20 2.30.2