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 X-Spam-Level: X-Spam-Status: No, score=-5.8 required=3.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI, SPF_HELO_NONE,SPF_PASS autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 5F2A2C63798 for ; Mon, 23 Nov 2020 09:03:27 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 08DB320732 for ; Mon, 23 Nov 2020 09:03:26 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b="QOVjHe7U" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728109AbgKWJDH (ORCPT ); Mon, 23 Nov 2020 04:03:07 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:52116 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726979AbgKWJDF (ORCPT ); Mon, 23 Nov 2020 04:03:05 -0500 Received: from casper.infradead.org (casper.infradead.org [IPv6:2001:8b0:10b:1236::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 1B601C0613CF; Mon, 23 Nov 2020 01:03:05 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=casper.20170209; h=In-Reply-To:Content-Type:MIME-Version: References:Message-ID:Subject:Cc:To:From:Date:Sender:Reply-To: Content-Transfer-Encoding:Content-ID:Content-Description; bh=JDpXGCHvWNgNlns7tmEcP2rIqPer/1GssjPOAGQyYj4=; b=QOVjHe7UKNijwCGwiVtd9gYH7S 4ekSVBvIYDe3HjI3M8cVI0Kq/AT3U4d1Ivuxbsns5kW/B/J74/6GjJvQcuTNeq8B09tto9dhsp1x6 77UevXuRrxvvvgIJpwaC7pGmMzXRNAPyPhxotrnSoDx9VtUOweUBGzr7cJjwnlkXeiBoaTTVGJu1n ubXxZQmJ8c2e23S9gs67hmBpaTmeha1yySuqQjorWtE42szisAZBmrFOvoTisElhIst7DQilhQw9t 20/eH5M3RCYwTbkJsJWGELCASLQR1aNcpVVKzN7qEcPXml2O+L5HfGiLBVTnJfLhvPnTFPpI+BBTz VO46cxGg==; Received: from hch by casper.infradead.org with local (Exim 4.92.3 #3 (Red Hat Linux)) id 1kh7kP-00030G-6h; Mon, 23 Nov 2020 09:02:57 +0000 Date: Mon, 23 Nov 2020 09:02:57 +0000 From: Christoph Hellwig To: Will McVicker Cc: Jessica Yu , Masahiro Yamada , Michal Marek , linux-kernel@vger.kernel.org, linux-kbuild@vger.kernel.org, kernel-team@google.com, Greg Kroah-Hartman Subject: Re: [PATCH v1 0/2] Add support to capture external module's SCM version Message-ID: <20201123090257.GB6334@infradead.org> References: <20201121011652.2006613-1-willmcvicker@google.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20201121011652.2006613-1-willmcvicker@google.com> X-SRS-Rewrite: SMTP reverse-path rewritten from by casper.infradead.org. See http://www.infradead.org/rpr.html Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Sat, Nov 21, 2020 at 01:16:49AM +0000, Will McVicker wrote: > These two patches add module support to capture an external module's SCM > version as a MODULE_INFO() attribute. This allows users to identity the SCM > version of a given kernel module by using the modinfo tool or on the device > via sysfs: As this obviously is of no use for in-tree modules it falls under the we don't add code to support things that are not in tree rule and has no business in the kernel.