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 9B832C43334 for ; Tue, 26 Jul 2022 12:16:13 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233449AbiGZMQM (ORCPT ); Tue, 26 Jul 2022 08:16:12 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:56422 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232573AbiGZMQM (ORCPT ); Tue, 26 Jul 2022 08:16:12 -0400 Received: from mx0a-00082601.pphosted.com (mx0a-00082601.pphosted.com [67.231.145.42]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 78B1BAE5F for ; Tue, 26 Jul 2022 05:16:11 -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 26Q9hIfC031451 for ; Tue, 26 Jul 2022 05:16:11 -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=QDCicKDcqOyhCxEsYTCiARD4bjpHFaEKweJNPtet+Rg=; b=EeNJskIXme9v9YjP8LptCngXl3QlV84QzIH5dgejjlwoki992Hkp/QOQFR6mie72/Jaz 7NYBJEYDSRnWWmk4Z1XqYtpzcq0kT93U6SUE3T8Wn/UE17NJsflXFdb88r5ndL7sAKV0 MBC6SM0N3XRTmahO8URKO9424uQWZ0Ihkd8= Received: from maileast.thefacebook.com ([163.114.130.16]) by mx0a-00082601.pphosted.com (PPS) with ESMTPS id 3hjdvtgng8-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128 verify=NOT) for ; Tue, 26 Jul 2022 05:16:11 -0700 Received: from twshared1866.09.ash9.facebook.com (2620:10d:c0a8:1b::d) by mail.thefacebook.com (2620:10d:c0a8:83::7) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2375.28; Tue, 26 Jul 2022 05:15:28 -0700 Received: by devbig038.lla2.facebook.com (Postfix, from userid 572232) id 0F7CE397A78E; Tue, 26 Jul 2022 05:15:08 -0700 (PDT) From: Dylan Yudaken To: , CC: , , Dylan Yudaken Subject: [PATCH liburing 2/5] order like functions together in liburing.h Date: Tue, 26 Jul 2022 05:14:59 -0700 Message-ID: <20220726121502.1958288-3-dylany@fb.com> X-Mailer: git-send-email 2.30.2 In-Reply-To: <20220726121502.1958288-1-dylany@fb.com> References: <20220726121502.1958288-1-dylany@fb.com> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-FB-Internal: Safe Content-Type: text/plain X-Proofpoint-GUID: dfpg8TNK4QT7WAqfuxNsAi__X7Cfm-2R X-Proofpoint-ORIG-GUID: dfpg8TNK4QT7WAqfuxNsAi__X7Cfm-2R 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-07-26_04,2022-07-26_01,2022-06-22_01 Precedence: bulk List-ID: X-Mailing-List: io-uring@vger.kernel.org the cmsg related functions were not together - which was confusing Signed-off-by: Dylan Yudaken --- src/include/liburing.h | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/src/include/liburing.h b/src/include/liburing.h index d3cbdb037b32..9e7f06f390be 100644 --- a/src/include/liburing.h +++ b/src/include/liburing.h @@ -760,24 +760,6 @@ io_uring_recvmsg_cmsg_firsthdr(struct io_uring_recvm= sg_out *o, msgh->msg_namelen); } =20 -static inline void *io_uring_recvmsg_payload(struct io_uring_recvmsg_out= *o, - struct msghdr *msgh) -{ - return (void *)((unsigned char *)io_uring_recvmsg_name(o) + - msgh->msg_namelen + msgh->msg_controllen); -} - -static inline size_t -io_uring_recvmsg_payload_length(struct io_uring_recvmsg_out *o, - int buf_len, struct msghdr *msgh) -{ - unsigned long payload_start, payload_end; - - payload_start =3D (unsigned long) io_uring_recvmsg_payload(o, msgh); - payload_end =3D (unsigned long) o + buf_len; - return payload_end - payload_start; -} - static inline struct cmsghdr * io_uring_recvmsg_cmsg_nexthdr(struct io_uring_recvmsg_out *o, struct msg= hdr *msgh, struct cmsghdr *cmsg) @@ -799,6 +781,24 @@ io_uring_recvmsg_cmsg_nexthdr(struct io_uring_recvms= g_out *o, struct msghdr *msg return cmsg; } =20 +static inline void *io_uring_recvmsg_payload(struct io_uring_recvmsg_out= *o, + struct msghdr *msgh) +{ + return (void *)((unsigned char *)io_uring_recvmsg_name(o) + + msgh->msg_namelen + msgh->msg_controllen); +} + +static inline size_t +io_uring_recvmsg_payload_length(struct io_uring_recvmsg_out *o, + int buf_len, struct msghdr *msgh) +{ + unsigned long payload_start, payload_end; + + payload_start =3D (unsigned long) io_uring_recvmsg_payload(o, msgh); + payload_end =3D (unsigned long) o + buf_len; + return payload_end - payload_start; +} + 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