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=-19.4 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,INCLUDES_CR_TRAILER,INCLUDES_PATCH, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,USER_AGENT_GIT autolearn=unavailable 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 67F08C433F5 for ; Tue, 14 Sep 2021 14:55:41 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 5282D610D1 for ; Tue, 14 Sep 2021 14:55:41 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S234658AbhINO45 (ORCPT ); Tue, 14 Sep 2021 10:56:57 -0400 Received: from mail.kernel.org ([198.145.29.99]:45126 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S234438AbhINO4q (ORCPT ); Tue, 14 Sep 2021 10:56:46 -0400 Received: by mail.kernel.org (Postfix) with ESMTPSA id 7DD306113E; Tue, 14 Sep 2021 14:55:28 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1631631328; bh=ki4td2MFWNbZVRLxp5SDjFPg8foyU6N+QHzIjpS9V0U=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=FOBsADcoE1BUoS6MdZ/vEa6s2InXpuEzmcn2yA86IxuXdxmggKvsUI6eEmWIXy51u b3jmyWjHXSvMjJ5qKoGKVneQPaNohWP4Fc8rRl0veY5+fLo+zDQWmX+0HTAuKlmW9p gxNbkkAq3t481/eoyeoS4WsngsjywL3JAJtxRGs10Ak/8swb41kOKO/4HorHjf9Mma gG0TGPA+PzqKioEuLittN7/TM0JI6Z6hr0oQzEBmBpvbmbaxeGGbd4WfrcndOA+OeN TTLio5WsByyL7OPd6BgvGvRE2Ct8P3vPuORTUlOimHb8aPJH3uk+i7lgYjbdVgcbln iznO+4JlsYgsw== Received: by mail.kernel.org with local (Exim 4.94.2) (envelope-from ) id 1mQ9qI-000L6s-LN; Tue, 14 Sep 2021 16:55:26 +0200 From: Mauro Carvalho Chehab To: Greg Kroah-Hartman , Linux Doc Mailing List Cc: Mauro Carvalho Chehab , "Jonathan Corbet" , Geert Uytterhoeven , Jonathan Cameron , Suzuki K Poulose , linux-kernel@vger.kernel.org Subject: [PATCH v2 3/8] ABI: testing/sysfs-module: document initstate Date: Tue, 14 Sep 2021 16:55:16 +0200 Message-Id: <71f413776d93dbe9489627617944bc9a1069dd4a.1631630792.git.mchehab+huawei@kernel.org> X-Mailer: git-send-email 2.31.1 In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: Mauro Carvalho Chehab Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Despite being an old ABI, present on all modules, its documentation is missing. Add it, based on the original commit. Signed-off-by: Mauro Carvalho Chehab --- Documentation/ABI/testing/sysfs-module | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Documentation/ABI/testing/sysfs-module b/Documentation/ABI/testing/sysfs-module index 88bddf192ceb..08886367d047 100644 --- a/Documentation/ABI/testing/sysfs-module +++ b/Documentation/ABI/testing/sysfs-module @@ -41,6 +41,13 @@ KernelVersion: 3.3 Contact: Kay Sievers Description: Module size in bytes. +What: /sys/module/*/initstate +Date: Nov 2006 +KernelVersion: 2.6.19 +Contact: Kay Sievers +Description: Show the initialization state(live, coming, going) of + the module. + What: /sys/module/*/taint Date: Jan 2012 KernelVersion: 3.3 -- 2.31.1