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 3ECB1C3DA78 for ; Sat, 14 Jan 2023 09:56:09 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230196AbjANJ4I (ORCPT ); Sat, 14 Jan 2023 04:56:08 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:41632 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230173AbjANJ4G (ORCPT ); Sat, 14 Jan 2023 04:56:06 -0500 Received: from gnuweeb.org (gnuweeb.org [51.81.211.47]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id D1B9176B7 for ; Sat, 14 Jan 2023 01:56:00 -0800 (PST) Received: from localhost.localdomain (unknown [182.253.183.184]) by gnuweeb.org (Postfix) with ESMTPSA id 30EE47E24D; Sat, 14 Jan 2023 09:55:56 +0000 (UTC) X-GW-Data: lPqxHiMPbJw1wb7CM9QUryAGzr0yq5atzVDdxTR0iA== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=gnuweeb.org; s=default; t=1673690159; bh=Bk+y3zCb+VGqpTOZacV5gp542kfL5OASIUJEhF2KBZk=; h=From:To:Cc:Subject:Date:From; b=qytfyc7kPqRmmib0BE4INAfwb/CIT3H2acyplng/9nViT/lFQNH0hZs8B+kdumtFr VdKo99SlZVeV8NweaZSnaCVQsSGG7vAGAoqT5hY9I8Nd4tKPX/VTGho9vM+6D4h92X zVLC5h7QRNpOzASvKupbr8m1rAIrVRcD70/afCRtf2fXpjlM9zr2KvGwvVu+/LanHL 33EE2ugjhVAHbPMnWW/+5yPdrV+ug6g8N3F93XXQgdAEMB1Hi/CnmVWMGgyFP7scJs 8BlSx/TkGzE4fmCKw9CtMDrLC/Q6r9/+xetB9uPn9hocEkKTkO2qsUTbtBvQ6XJjBU BuitchCGit8jw== From: Ammar Faizi To: Jens Axboe Cc: Ammar Faizi , Pavel Begunkov , Christian Mazakas , Gilang Fachrezy , io-uring Mailing List , VNLX Kernel Department , GNU/Weeb Mailing List Subject: [RFC PATCH liburing v1 0/2] Explain how to build liburing and FFI support Date: Sat, 14 Jan 2023 16:55:21 +0700 Message-Id: <20230114095523.460879-1-ammar.faizi@intel.com> X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: io-uring@vger.kernel.org From: Ammar Faizi Hi Jens, This is an RFC patchset. ## Patch 1 Tell people how to build liburing. ## Patch 2 Tell people that they should use the FFI variants when they can't use 'static inline' functions defined in liburing.h. What do you think? Signed-off-by: Ammar Faizi --- Ammar Faizi (2): README: Explain how to build liburing README: Explain about FFI support README | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) base-commit: 19424b0baa5999918701e1972b901b0937331581 -- Ammar Faizi