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 68761C00528 for ; Tue, 1 Aug 2023 20:17:39 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229543AbjHAURi (ORCPT ); Tue, 1 Aug 2023 16:17:38 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:46128 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229519AbjHAURi (ORCPT ); Tue, 1 Aug 2023 16:17:38 -0400 Received: from 1wt.eu (ded1.1wt.eu [163.172.96.212]) by lindbergh.monkeyblade.net (Postfix) with ESMTP id 686A6E71; Tue, 1 Aug 2023 13:17:36 -0700 (PDT) Received: (from willy@localhost) by pcw.home.local (8.15.2/8.15.2/Submit) id 371KHStg021073; Tue, 1 Aug 2023 22:17:28 +0200 Date: Tue, 1 Aug 2023 22:17:28 +0200 From: Willy Tarreau To: Thomas =?iso-8859-1?Q?Wei=DFschuh?= Cc: Yuan Tan , falcon@tinylab.org, linux-kernel@vger.kernel.org, linux-kselftest@vger.kernel.org Subject: Re: [PATCH v3 0/2] tools/nolibc: add pipe(), pipe2() and their testcase Message-ID: <20230801201728.GA20284@1wt.eu> References: MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: User-Agent: Mutt/1.10.1 (2018-07-13) Precedence: bulk List-ID: X-Mailing-List: linux-kselftest@vger.kernel.org Hi, On Tue, Aug 01, 2023 at 05:42:57PM +0200, Thomas Weißschuh wrote: > > Aug 1, 2023 17:40:01 Yuan Tan : > > > Hi Willy and Thomas, > > > > In v3, I have fixed all the problems you mentioned. > > > > Welcome any other suggestion. > > > > --- > > Changes in v3: > > - Fix the missing return > > - Fix __NR_pipe to __NR_pipe2 > > - Fix the missing static > > - Test case works in one process > > - Link to v2: > >   https://lore.kernel.org/all/cover.1690733545.git.tanyuan@tinylab.org > > > > Changes in v2: > > - Use sys_pipe2 to implement the pipe() > > - Use memcmp() instead of strcmp() > > - Link to v1: > >   https://lore.kernel.org/all/cover.1690307717.git.tanyuan@tinylab.org > > > > --- > > Yuan Tan (2): > >   tools/nolibc: add pipe() and pipe2() support > >   selftests/nolibc: add testcase for pipe > > > > tools/include/nolibc/sys.h                   | 24 ++++++++++++++++++++ > > tools/testing/selftests/nolibc/nolibc-test.c | 22 ++++++++++++++++++ > > 2 files changed, 46 insertions(+) > > For the full series: > > Reviewed-by: Thomas Weißschuh Thank you both, now queued on top of the rest in 20230801-nolibc-next-1. Thomas I'll try to review your last series tomorrow, at first glance it looks OK. Thanks, Willy