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 1AECAC61DB3 for ; Thu, 12 Jan 2023 16:06:23 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S234146AbjALQGV (ORCPT ); Thu, 12 Jan 2023 11:06:21 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:47702 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231540AbjALQF4 (ORCPT ); Thu, 12 Jan 2023 11:05:56 -0500 Received: from gnuweeb.org (gnuweeb.org [51.81.211.47]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 757435B140; Thu, 12 Jan 2023 07:57:22 -0800 (PST) Received: from localhost.localdomain (unknown [182.253.183.184]) by gnuweeb.org (Postfix) with ESMTPSA id 19B917E74F; Thu, 12 Jan 2023 15:57:18 +0000 (UTC) X-GW-Data: lPqxHiMPbJw1wb7CM9QUryAGzr0yq5atzVDdxTR0iA== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=gnuweeb.org; s=default; t=1673539042; bh=UYpDXwZvwHbe48e65mtN6pHUviQzgszbG46MFmI56ik=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=sNngbj7Vdp6MBFjnWAeXEGwcIs1rDlPB02I2Nmlf6lxcXURCo/d7XOBNMJokkV6iG b70hBUw6pFXQygPxdsYIsSd7rTvaO2+dI/jkg5o9ushlJyngq8y/1QKTiG6ms+fLj/ GYW9a7y75EIecS/Wd7xtYsR/mbCovhcPnMWsoUmQplnQvLXvpl6Fc55AIOcuiPVKJ/ PtVlxlDUIHwWn4Md4B4EZ0FRsVtpm0U/ZhWH8BL8Db6ZvzC+ZATTJrQWWtynjlEXke tEs6FWse9GSIU7ULrgE9rAA8eJeAwD1WZY99gaeCjJZs6ezOZHDGlJvbvtrzZs2mbo SnRw74do9Cy5g== From: Ammar Faizi To: Jens Axboe Cc: Ammar Faizi , Pavel Begunkov , Breno Leitao , Christian Mazakas , Gilang Fachrezy , VNLX Kernel Department , io-uring Mailing List , Linux Kernel Mailing List , GNU/Weeb Mailing List Subject: [PATCH liburing v1 1/4] liburing-ffi.map: Add io_uring_prep_msg_ring_cqe_flags() function Date: Thu, 12 Jan 2023 22:57:06 +0700 Message-Id: <20230112155709.303615-2-ammar.faizi@intel.com> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20230112155709.303615-1-ammar.faizi@intel.com> References: <20230112155709.303615-1-ammar.faizi@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: io-uring@vger.kernel.org From: Ammar Faizi Commit 27180d7be059 ("Add io_uring_prep_msg_ring_cqe_flags function") adds a new inline function in liburing.h, but it doesn't update the liburing-ffi.map file. Update it. Cc: Breno Leitao Cc: Christian Mazakas Fixes: 27180d7be059 ("Add io_uring_prep_msg_ring_cqe_flags function") Signed-off-by: Ammar Faizi --- src/liburing-ffi.map | 1 + 1 file changed, 1 insertion(+) diff --git a/src/liburing-ffi.map b/src/liburing-ffi.map index 8dd4641..1a6df50 100644 --- a/src/liburing-ffi.map +++ b/src/liburing-ffi.map @@ -164,6 +164,7 @@ LIBURING_2.4 { io_uring_register_restrictions; io_uring_prep_write; io_uring_prep_recv; + io_uring_prep_msg_ring_cqe_flags; local: *; }; -- Ammar Faizi