Received: by 2002:a05:6a10:16a7:0:0:0:0 with SMTP id gp39csp549315pxb; Thu, 12 Nov 2020 10:02:46 -0800 (PST) X-Google-Smtp-Source: ABdhPJw+WWjeD+CzuR0aZYikdPdo6fFL6qH7XhxSFaiY21n+yQPSS5BddcGjC4qUbsBUUl7utjXG X-Received: by 2002:a17:906:d92c:: with SMTP id rn12mr503681ejb.472.1605204165600; Thu, 12 Nov 2020 10:02:45 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1605204165; cv=none; d=google.com; s=arc-20160816; b=t2UQ/yMNJeOLoqxq8ZoGvSnV7sWL8JiiUzcgCIjE5mLRVEnKru8DAC+V4tEWAgrp+y mgOK6InOYZru+LrDcaWIVFPc8mpAngX6JgwCxgbhC3+xiMEMwhklzF5VnoAMTHxG4QKb jSWvPlOiTrnC9EFvHjxbO3GI5HMA5dNTW8EBFBXHdwaKhwDK5KLEI6QddPuQti9uXxj7 0XfoX09TYYoCIL7REzlSpPqJTyK76/QVuMthV2zG65UZfE4qU4qH9uZwJsd6Uyi5yG89 7bUwLp02jQBNhHBtxDt+X+X0K6rt7M6Amns1oZboRe8oYct/G7TwhtOp6tCeU1vEghYU aHDw== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:content-transfer-encoding:mime-version :references:in-reply-to:message-id:date:subject:cc:to:from; bh=Ls2k1U29SDyb3aUHUINommiV8TVwMj/5es9DMDCXjMA=; b=UejFr1tsXJxIip5k7H8PxLKdB864AZNHlrEMXbTkkv200W0/reTemArSNXMt8BNzbS azzArNI16qO+sp5hnmJjB2AQuVjjS50PpEP0Q6XnKjn+/8LKaDkoJczWPiwOtSK0bIXT iZS3llMLql+Q3Y5aCzR0ayRAYiDnhYBOUmUcZ8vOwVrPYGixakOc09AT2KLnSop+L0Y2 yncQcuvgcqNrESSaQokdAUgrkP71gTDgbhrt2l0FOSM7RevONTndVbp6ETb9M3nmi9YZ JDmNaMcXA0eu5Jbe3mGNx9ZfcGoNjZqsz2YvGWwDaGwdlizmtYCHzfIJNBfFnaj1sEI8 LcvA== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id g18si4158418edh.40.2020.11.12.10.02.22; Thu, 12 Nov 2020 10:02:45 -0800 (PST) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726670AbgKLR73 (ORCPT + 99 others); Thu, 12 Nov 2020 12:59:29 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:35162 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726430AbgKLR7S (ORCPT ); Thu, 12 Nov 2020 12:59:18 -0500 Received: from wp530.webpack.hosteurope.de (wp530.webpack.hosteurope.de [IPv6:2a01:488:42:1000:50ed:8234::]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id A508AC0613D1; Thu, 12 Nov 2020 09:59:18 -0800 (PST) Received: from ip4d145e30.dynamic.kabel-deutschland.de ([77.20.94.48] helo=truhe.fritz.box); authenticated by wp530.webpack.hosteurope.de running ExIM with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) id 1kdGsP-00070q-Bl; Thu, 12 Nov 2020 18:59:17 +0100 From: Thorsten Leemhuis To: Jonathan Corbet Cc: Randy Dunlap , linux-doc@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [RFC PATCH v2 16/26] docs: reporting-bugs: let users check taint status again Date: Thu, 12 Nov 2020 18:58:53 +0100 Message-Id: X-Mailer: git-send-email 2.28.0 In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-bounce-key: webpack.hosteurope.de;linux@leemhuis.info;1605203958;24c9afe5; X-HE-SMSGID: 1kdGsP-00070q-Bl Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org The kernel just installed in the previous step might taint itself for reasons unrelated to the issue the reader used when he started this process. Make sure the reader catches this early, as this is the area where it really matters. The former check was just ensuring the reader notices early if his kernel is tainted, e.g., before he does more complicated and dangerous things in this process. Signed-off-by: Thorsten Leemhuis --- Documentation/admin-guide/reporting-bugs.rst | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/Documentation/admin-guide/reporting-bugs.rst b/Documentation/admin-guide/reporting-bugs.rst index 506292ab9bb6..e9fe40a96b87 100644 --- a/Documentation/admin-guide/reporting-bugs.rst +++ b/Documentation/admin-guide/reporting-bugs.rst @@ -789,6 +789,20 @@ somewhat for your system. That does not make the resulting kernel any better, but quicker to compile. +Check 'taint' flag +------------------ + + *Ensure the kernel you just installed does not 'taint' itself when + running.* + +As outlined above in more detail already: the kernel sets a 'taint' flag when +something happens that can lead to follow-up errors that look totally +unrelated. That's why you need to check if the kernel you just installed does +not set this flag. And if it does, you in almost all the cases needs to +eliminate the reason for it before you reporting issues that occur with it. See +the section above for details how to do that. + + .. ############################################################################ .. Temporary marker added while this document is rewritten. Sections above .. are new and dual-licensed under GPLv2+ and CC-BY 4.0, those below are old. -- 2.28.0