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 436CFC636CD for ; Wed, 8 Feb 2023 02:50:46 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230284AbjBHCup (ORCPT ); Tue, 7 Feb 2023 21:50:45 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:57446 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230061AbjBHCuj (ORCPT ); Tue, 7 Feb 2023 21:50:39 -0500 Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by lindbergh.monkeyblade.net (Postfix) with ESMTP id 407AE10A91; Tue, 7 Feb 2023 18:50:37 -0800 (PST) Received: by linux.microsoft.com (Postfix, from userid 1127) id C27A020C7E3E; Tue, 7 Feb 2023 18:50:36 -0800 (PST) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com C27A020C7E3E DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1675824636; bh=zH8jTNGZgnkW9RivS+15tp6q+pdN9GIpfKHsobyIFXs=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=Iv4linVSsVgkBZBZO5nDS4kC8c8zfRuhkC0eIaOSSGeCNsiTaAtywxuap0DqitiOz VbbEAtd5TySmdvZyQ/FWuJDtXrUSHZQj6ncS3nmrVUj4eiPiaZiGSIauD4bOSLZ7rV eFIzGx0K1dQzjDcnMQiWRJ9pU+kMttkJlPEkXVJk= Date: Tue, 7 Feb 2023 18:50:36 -0800 From: Saurabh Singh Sengar To: Rob Herring Cc: mikelley@microsoft.com, wei.liu@kernel.org, daniel.lezcano@linaro.org, devicetree@vger.kernel.org, ssengar@microsoft.com, virtualization@lists.linux-foundation.org, decui@microsoft.com, haiyangz@microsoft.com, linux-hyperv@vger.kernel.org, dphadke@linux.microsoft.com, kys@microsoft.com, linux-kernel@vger.kernel.org, tglx@linutronix.de, krzysztof.kozlowski+dt@linaro.org Subject: Re: [PATCH v4 5/6] dt-bindings: hypervisor: VMBus Message-ID: <20230208025036.GB838@linuxonhyperv3.guj3yctzbm1etfxqx2vob5hsef.xx.internal.cloudapp.net> References: <1675756199-5917-1-git-send-email-ssengar@linux.microsoft.com> <1675756199-5917-6-git-send-email-ssengar@linux.microsoft.com> <167577470818.3213850.12635304061765127789.robh@kernel.org> <20230207183458.GA3753062-robh@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20230207183458.GA3753062-robh@kernel.org> User-Agent: Mutt/1.5.21 (2010-09-15) Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, Feb 07, 2023 at 12:34:58PM -0600, Rob Herring wrote: > On Tue, Feb 07, 2023 at 07:00:23AM -0600, Rob Herring wrote: > > > > On Mon, 06 Feb 2023 23:49:58 -0800, Saurabh Sengar wrote: > > > Add dt-bindings for Hyper-V VMBus. > > > > > > Signed-off-by: Saurabh Sengar > > > --- > > > .../bindings/hypervisor/microsoft,vmbus.yaml | 48 ++++++++++++++++++++++ > > > MAINTAINERS | 1 + > > > 2 files changed, 49 insertions(+) > > > create mode 100644 Documentation/devicetree/bindings/hypervisor/microsoft,vmbus.yaml > > > > > > > My bot found errors running 'make DT_CHECKER_FLAGS=-m dt_binding_check' > > on your patch (DT_CHECKER_FLAGS is new in v5.13): > > > > yamllint warnings/errors: > > > > dtschema/dtc warnings/errors: > > make[1]: *** Deleting file 'Documentation/devicetree/bindings/serial/brcm,bcm6345-uart.example.dtb' > > make[1]: *** Waiting for unfinished jobs.... > > make: *** [Makefile:1508: dt_binding_check] Error 2 > > You can ignore this, it's a problem with the CI job. > > > > > doc reference errors (make refcheckdocs): > > Warning: MAINTAINERS references a file that doesn't exist: Documentation/devicetree/bindings/virtio/ > > MAINTAINERS: Documentation/devicetree/bindings/virtio/ > > But this probably needs to be fixed. I have updated MAINTAINERS as part of 4/6 patch, and there is no mention of Documentation/devicetree/bindings/virtio/ in MAINTAINERS post 4/6 patch. I have ran the tool locally as well on top of 4/6 and then 5/6 but it never reported this error. Anyway as per your latest comment I should be moving VMBus to bus folder instead, so no need to worry about this. Regards, Saurabh > > Rob