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 mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 293F2C433EF for ; Wed, 20 Oct 2021 17:59:44 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 0496F60FC1 for ; Wed, 20 Oct 2021 17:59:44 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231202AbhJTSB5 (ORCPT ); Wed, 20 Oct 2021 14:01:57 -0400 Received: from mail-oi1-f174.google.com ([209.85.167.174]:39701 "EHLO mail-oi1-f174.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231216AbhJTSB5 (ORCPT ); Wed, 20 Oct 2021 14:01:57 -0400 Received: by mail-oi1-f174.google.com with SMTP id s9so8253523oiw.6; Wed, 20 Oct 2021 10:59:42 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:date:from:to:cc:subject:message-id:references :mime-version:content-disposition:in-reply-to; bh=KiHAFYPu9WjhWCEOkgmwtUS9QPIVVYJBwC1EpyGQ5yo=; b=dqXqImwr/TveMlwMDjgLCg1oEpUSskVnzOwQ9lJ0XA1jSqANgxWVyqjc7ytOcjo7tm lWMCUW5OAdydEEErPF8N5FKBAcfz34riJmFbxHx8DR0ICtfFRPAXGZftx5fSfe1YytdG 3BphZXqE+c+eiAl2eI92NHDrmDV+S7g0KaIZ4e72MT8hfycMGxNi8PX1oTQsx+W1RGg4 jlb6rc5v5JFxQy3TUGT2Y739upXC42frADfotoy4aktyM61866ysZg8Sxx73yt5EDMRD AQ6W0FY3TbuYEx0vgQSYYBuS9X8H9EzxfR6/SjwsaqAvU55dyNZGkL/Mq/+DvSvWhPFv R+Lw== X-Gm-Message-State: AOAM532Qhof73lrqEmiPrOAumPgogcMK0aCXfHm/Q1Cn510RY5r6YJFv KLED6IeK7pPZuk8938QoZlBQ8fsC+Q== X-Google-Smtp-Source: ABdhPJw4cXyWfIz/oFSi9AmXYIp5tIncYGHAzbFdrziWhuk3R4ew2fHztFlSL4DARm3VyHXbWhDzWg== X-Received: by 2002:aca:4b84:: with SMTP id y126mr714617oia.127.1634752782138; Wed, 20 Oct 2021 10:59:42 -0700 (PDT) Received: from robh.at.kernel.org (66-90-148-213.dyn.grandenetworks.net. [66.90.148.213]) by smtp.gmail.com with ESMTPSA id e25sm505596oot.38.2021.10.20.10.59.41 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Wed, 20 Oct 2021 10:59:41 -0700 (PDT) Received: (nullmailer pid 2595232 invoked by uid 1000); Wed, 20 Oct 2021 17:59:40 -0000 Date: Wed, 20 Oct 2021 12:59:40 -0500 From: Rob Herring To: Geert Uytterhoeven Cc: Stephen Boyd , devicetree@vger.kernel.org, Rob Herring , Joey Gouly , linux-kernel@vger.kernel.org Subject: Re: [PATCH 1/2] dt-bindings: Parallelize yamllint Message-ID: References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Precedence: bulk List-ID: X-Mailing-List: devicetree@vger.kernel.org On Mon, 18 Oct 2021 12:54:47 +0200, Geert Uytterhoeven wrote: > Use xargs sharding like "chk_bindings" does, to parallelize the > execution of yamllint. > > This reduces the yamllint execution time from ca. 21 to 5 seconds on > i7-8700K. > > Suggested-by: Rob Herring > Signed-off-by: Geert Uytterhoeven > --- > v2: > - New. > --- > Documentation/devicetree/bindings/Makefile | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > Applied, thanks!