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=-1.2 required=5.0 tests=ALL_TRUSTED,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.6 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=gnuweeb.org; s=default; t=1681577954; bh=HVup6Nwi3vb9vRTlnVPxuqqQMSwEiPn9C+mF4ZjeNjI=; h=From:To:Cc:Subject:Date; b=rXkDBOPaP1kTlMYfClfz4dmROqTlur89vnhnh4fA24V4gBEoESSVGJvVTdXx3FY3H DHEpDnwTfnw3rlXG33EKHXB6ky1yTFAxD8Bv4YEIRk8OsHayOwYEkauvl4h9Z8ZxTe hGOOLoBliUW1VIUE4LU3q5Y2xtQfxm2Vy4E6Bb3qnpa/oGB1epaohmUNPIZipXiv5D y/W131RKowWG+Tu9hbYjeRNhBBKwKTQCddBQUnuEisRU9Oki6qG/H5lmExVl7u5iAm qJX74YTLWCFr2PTTa9CPy/phMwwdouK7VwhKJAkQ9bxhIrEUUXIT629nRRzHefjVLm KE7iGBMEcsGtQ== Received: from localhost.localdomain (unknown [182.253.88.211]) by gnuweeb.org (Postfix) with ESMTPSA id 472B92450ED; Sat, 15 Apr 2023 23:59:10 +0700 (WIB) From: Ammar Faizi To: Jens Axboe Cc: Ammar Faizi , Pavel Begunkov , Alviro Iskandar Setiawan , io-uring Mailing List , Linux Kernel Mailing List , GNU/Weeb Mailing List Subject: [PATCH liburing 0/3] io_uring-udp fix, manpage fix, and hppa cross-compiler Date: Sat, 15 Apr 2023 23:59:01 +0700 Message-Id: <20230415165904.791841-1-ammarfaizi2@gnuweeb.org> X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: Hi Jens, There are three patches in this series: 1. Fix the wrong IPv6 address in io_uring-udp (me). Before: port bound to 49567 received 4 bytes 28 from ::2400:6180:0:d1:0:0:47048 received 4 bytes 28 from ::2400:6180:0:d1:0:0:54755 received 4 bytes 28 from ::2400:6180:0:d1:0:0:57968 (the IPv6 address is wrong) After: port bound to 48033 received 4 bytes 28 from [2400:6180:0:d1::6a4:a00f]:40456 received 4 bytes 28 from [2400:6180:0:d1::6a4:a00f]:50306 received 4 bytes 28 from [2400:6180:0:d1::6a4:a00f]:52291 2. io_uring_cqe_get_data() manpage fix (me). The return value of io_uring_cqe_get_data() will be undefined if the user_data is not set from the SQE side. 3. Add hppa cross-compiler to the CI (Alviro). Signed-off-by: Alviro Iskandar Setiawan Signed-off-by: Ammar Faizi --- Alviro Iskandar Setiawan (1): github: Add hppa cross compiler Ammar Faizi (2): io_uring-udp: Fix the wrong IPv6 binary to string conversion man/io_uring_cqe_get_data.3: Fix a misleading return value .github/workflows/build.yml | 7 +++++++ examples/io_uring-udp.c | 14 +++++++++++--- man/io_uring_cqe_get_data.3 | 2 +- 3 files changed, 19 insertions(+), 4 deletions(-) base-commit: 4fed79510a189cc7997f6d04855ebf7fb66cc323 -- Ammar Faizi