Received: by 2002:ad5:474a:0:0:0:0:0 with SMTP id i10csp5702014imu; Sun, 2 Dec 2018 01:19:59 -0800 (PST) X-Google-Smtp-Source: AFSGD/VHgWBLPzKpjjQXku1gX3ApP82bBcmSox8tgkp1AtraaB5gyAzt7vZCjPCkTlLsnA7EyW7R X-Received: by 2002:a62:5dd1:: with SMTP id n78mr11536602pfj.58.1543742399454; Sun, 02 Dec 2018 01:19:59 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1543742399; cv=none; d=google.com; s=arc-20160816; b=o0o3WOovTIWUj+Uu+TNXe+4PeyFhfDaFNXUcwn/ZJFWaLopb4HvX5g6Ic+CAI7oeo1 qgi2U5yc5jphDQyJD8wip4VFIRtNe2Q8McoW2DfzzTCZIxvIYZ19HLSe8G9Fr2xzRRxh 5l/bZ1aLl0lUbqSgo+l1KhVwKRIGZeGSIXXpBfv0oKFjcBGg8fUGHwr1IQlce+w5W6fg kTa4abTTDne6lQPEpNj/ev3q+PduHSU+/Zvs/54yRh0PZT7r0PmNz8sVngvYF2z4fpfg on1QsPMOGUVg1r4e6Q+MBJ/HTfKOqUHzY6jP1/YlPsKIhTeDloCbGp/gq2gmorO3cYIu xoLQ== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:content-transfer-encoding:mime-version :message-id:date:subject:cc:to:from; bh=52a0QCYfSmEMcZT/NqB7KqVKVquMOQv4j3K9uhOm70k=; b=XtJlUA2JVj24v5Hqzy6uUMK0FPsPjxI+1gN0DvFfdmhGQRV4242UtiDFLjCZeG5t75 +jv39s3YrX+9AT9IJaX/kckWbaZucuXD6CkTe4zbmm34cZEpnrnTfDIS7zMbAbzK5GlC pkImITZIT1rCh1kqEJ0lz4Ws/sVkz4Bcbr/Jzshxuj/MVhWY6VWfJWXguQRACfYtbTGj sASODuIA5YlkePj7e2EuOQBJxHwM2TQCPwelOVykO5nkA7GZTYtN6SGpy5dUm6vZXoB/ KaoSQc3L3zIQWyglaSupQFQBvKn3W1VCKLxPz36ljWvhANAhmT+Fov0ytyPWk63P0qzJ fDnw== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id m3si9734517pgc.232.2018.12.02.01.19.43; Sun, 02 Dec 2018 01:19:59 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1725843AbeLBJTK (ORCPT + 99 others); Sun, 2 Dec 2018 04:19:10 -0500 Received: from guitar.tcltek.co.il ([192.115.133.116]:49403 "EHLO mx.tkos.co.il" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725801AbeLBJTK (ORCPT ); Sun, 2 Dec 2018 04:19:10 -0500 Received: from tarshish.tkos.co.il (unknown [10.0.8.6]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mx.tkos.co.il (Postfix) with ESMTPS id 3057B44004B; Sun, 2 Dec 2018 11:19:06 +0200 (IST) From: Baruch Siach To: linux-kernel@vger.kernel.org, Johannes Weiner Cc: Baruch Siach Subject: [PATCH] psi: fix reference to kernel commandline enable Date: Sun, 2 Dec 2018 11:18:50 +0200 Message-Id: <99058450a8c792cde07c7ced343bf1711c75b8f3.1543742330.git.baruch@tkos.co.il> X-Mailer: git-send-email 2.19.2 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org The kernel commandline parameter named in CONFIG_PSI_DEFAULT_DISABLED help text contradicts the documentation in kernel-parameters.txt, and the code. Fix that. Fixes: e0c274472d ("psi: make disabling/enabling easier for vendor kernels") Signed-off-by: Baruch Siach --- init/Kconfig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/init/Kconfig b/init/Kconfig index cf5b5a0dcbc2..ed9352513c32 100644 --- a/init/Kconfig +++ b/init/Kconfig @@ -515,8 +515,8 @@ config PSI_DEFAULT_DISABLED depends on PSI help If set, pressure stall information tracking will be disabled - per default but can be enabled through passing psi_enable=1 - on the kernel commandline during boot. + per default but can be enabled through passing psi=1 on the + kernel commandline during boot. endmenu # "CPU/Task time and stats accounting" -- 2.19.2