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 144DCC61DA4 for ; Thu, 9 Feb 2023 03:43:18 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232810AbjBIDnQ (ORCPT ); Wed, 8 Feb 2023 22:43:16 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:40280 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232806AbjBIDnL (ORCPT ); Wed, 8 Feb 2023 22:43:11 -0500 Received: from 1wt.eu (wtarreau.pck.nerim.net [62.212.114.60]) by lindbergh.monkeyblade.net (Postfix) with ESMTP id E9A5E1F917 for ; Wed, 8 Feb 2023 19:43:10 -0800 (PST) Received: (from willy@localhost) by mail.home.local (8.17.1/8.17.1/Submit) id 3193h5qQ008099; Thu, 9 Feb 2023 04:43:05 +0100 Date: Thu, 9 Feb 2023 04:43:05 +0100 From: Willy Tarreau To: Vincent Dagonneau Cc: linux-kernel@vger.kernel.org Subject: Re: [PATCH v4 0/4] tools/nolibc: Adding stdint.h, more integer types and tests Message-ID: References: <20230209024044.13127-1-v@vda.io> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20230209024044.13127-1-v@vda.io> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, Feb 08, 2023 at 09:40:40PM -0500, Vincent Dagonneau wrote: > Hi, > > This is version 4 of my patch to add stdint.h to nolibc. Previous > versions of this patch are available here: > > * v3: https://lore.kernel.org/all/20230206013248.471664-1-v@vda.io/ > * v2: https://lore.kernel.org/all/20230202201101.43160-1-v@vda.io/ > * v1: https://lore.kernel.org/all/20230202160236.25342-1-v@vda.io/ > > I tested it successfully on x86_64, as well as i386 and arm on qemu. > > Thank you Willy for the review and the guidance! > Vincent. Thanks Vincent. At first glance it looks good. I'll give it a try on all supported archs to make sure we didn't overlook anything and we'll merge it. One tiny comment though, look below: > Vincent Dagonneau (4): > tools/nolibc: Adding stdint.h > tools/nolibc: Adding integer types and integer limit macros > tools/nolibc: Enlarging column width of tests > tools/nolibc: Adds tests for the integer limits in stdint.h I mentioned in the first review that it's generally preferred to use the imperative form rather than present participle on subject lines. This would give: tools/nolibc: Add stdint.h tools/nolibc: Add integer types and integer limit macros tools/nolibc: Enlarge column width of tests tools/nolibc: Add tests for the integer limits in stdint.h I can perform this trivial change locally before merging without asking you to respin a series just for this if that's OK for you. Just let me know. Thanks! Willy