From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on gnuweeb.org X-Spam-Level: X-Spam-Status: No, score=-0.1 required=5.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,SPF_HELO_PASS,SPF_SOFTFAIL,URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.6 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id DB3BAC43334 for ; Thu, 30 Jun 2022 16:49:51 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S235557AbiF3Qtu (ORCPT ); Thu, 30 Jun 2022 12:49:50 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:52152 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S235593AbiF3Qtu (ORCPT ); Thu, 30 Jun 2022 12:49:50 -0400 Received: from mx0a-00082601.pphosted.com (mx0a-00082601.pphosted.com [67.231.145.42]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 71AC63524C for ; Thu, 30 Jun 2022 09:49:49 -0700 (PDT) Received: from pps.filterd (m0109333.ppops.net [127.0.0.1]) by mx0a-00082601.pphosted.com (8.17.1.5/8.17.1.5) with ESMTP id 25UGWx9O000854 for ; Thu, 30 Jun 2022 09:49:48 -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=rDGGGVXRxy5C3BGY4+nMwdTChVhKn5+cJFeh1y/UOIY=; b=HxxH6QzW27G0hft6O7I08/py2w0tsEgwwzju/iYorw9NtazAHpzyfl3x4vUFNhw9sWpp GP15lmwaI0U7/v+PI3R4watuRSIxnO/BR8b03TjLxo7KHj2ipOBxtvGC0jI2T0nJFRM/ A/0AOb+A4ejTL9Ft4CJpU3CJKYRJl6g3gTs= Received: from mail.thefacebook.com ([163.114.132.120]) by mx0a-00082601.pphosted.com (PPS) with ESMTPS id 3h12ug4p3d-2 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128 verify=NOT) for ; Thu, 30 Jun 2022 09:49:48 -0700 Received: from twshared22934.08.ash9.facebook.com (2620:10d:c085:108::8) by mail.thefacebook.com (2620:10d:c085:21d::5) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2375.28; Thu, 30 Jun 2022 09:49:47 -0700 Received: by devbig038.lla2.facebook.com (Postfix, from userid 572232) id 4D67125D4CF0; Thu, 30 Jun 2022 09:49:26 -0700 (PDT) From: Dylan Yudaken To: CC: , , , Dylan Yudaken Subject: [PATCH v3 liburing 3/7] add io_uring_prep_(recv|recvmsg)_multishot Date: Thu, 30 Jun 2022 09:49:14 -0700 Message-ID: <20220630164918.3958710-4-dylany@fb.com> X-Mailer: git-send-email 2.30.2 In-Reply-To: <20220630164918.3958710-1-dylany@fb.com> References: <20220630164918.3958710-1-dylany@fb.com> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-FB-Internal: Safe Content-Type: text/plain X-Proofpoint-GUID: tS6ouvwuzGP-zjUFtDVhN7mz3yYezlPv X-Proofpoint-ORIG-GUID: tS6ouvwuzGP-zjUFtDVhN7mz3yYezlPv X-Proofpoint-Virus-Version: vendor=baseguard engine=ICAP:2.0.205,Aquarius:18.0.883,Hydra:6.0.517,FMLib:17.11.122.1 definitions=2022-06-30_12,2022-06-28_01,2022-06-22_01 Precedence: bulk List-ID: X-Mailing-List: io-uring@vger.kernel.org Add a nice API for multishot recv and recvmsg. Signed-off-by: Dylan Yudaken --- src/include/liburing.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/src/include/liburing.h b/src/include/liburing.h index bb2fb87..b11d90e 100644 --- a/src/include/liburing.h +++ b/src/include/liburing.h @@ -416,6 +416,14 @@ static inline void io_uring_prep_recvmsg(struct io_u= ring_sqe *sqe, int fd, sqe->msg_flags =3D flags; } =20 +static inline void io_uring_prep_recvmsg_multishot(struct io_uring_sqe *= sqe, + int fd, struct msghdr *msg, + unsigned flags) +{ + io_uring_prep_recvmsg(sqe, fd, msg, flags); + sqe->ioprio |=3D IORING_RECV_MULTISHOT; +} + static inline void io_uring_prep_sendmsg(struct io_uring_sqe *sqe, int f= d, const struct msghdr *msg, unsigned flags) @@ -674,6 +682,14 @@ static inline void io_uring_prep_recv(struct io_urin= g_sqe *sqe, int sockfd, sqe->msg_flags =3D (__u32) flags; } =20 +static inline void io_uring_prep_recv_multishot(struct io_uring_sqe *sqe= , + int sockfd, void *buf, + size_t len, int flags) +{ + io_uring_prep_recv(sqe, sockfd, buf, len, flags); + sqe->ioprio |=3D IORING_RECV_MULTISHOT; +} + static inline void io_uring_prep_openat2(struct io_uring_sqe *sqe, int d= fd, const char *path, struct open_how *how) { --=20 2.30.2