Received: by 2002:a25:868d:0:0:0:0:0 with SMTP id z13csp1753142ybk; Mon, 11 May 2020 03:30:50 -0700 (PDT) X-Google-Smtp-Source: APiQypJ079KIP9UzIgA7k23F9Js8vuVD9tMvKmkvlnEIbyvK8Co3pfYJ1+tCkvBDDsInsk20DfS4 X-Received: by 2002:aa7:cfc3:: with SMTP id r3mr13222608edy.342.1589193050390; Mon, 11 May 2020 03:30:50 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1589193050; cv=none; d=google.com; s=arc-20160816; b=vte0NJum7f9IeDW1GApU7aZHZpLGy8aX6DUMPed1Q5n7tGRDK141KbksllSXth3nDl oC6NdzNjAb2PrP1xErlQKJwSkpNsRxy328GtaUdetA/LKHWuMKV3Eg0640F+74loxAfz 2A3kurFZXS3zJ30BZLpNyaCUAWczPaP4VRHGN5D4W4XoeWGT/NRaq7Q8Ox8t0zWAURDU CIO69rVa7BBOcFJuLXM5nKqYy8quGSNYDqAxENk1O1lLlvPfUpXVCFkZsPouTxATc50Z J2IPKnlXqH86IUJuUkBT/9pJWsRjyFey9LuAn5xkiX6nKpcm9oxBAClW3/y9xLP+xOKN RJ5A== 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 :content-language:in-reply-to:mime-version:user-agent:date :message-id:from:references:cc:to:subject; bh=JyHC9SEhVxT3EDfBnA6JHFhXwbiTPs7ZUB+3XDtfZYM=; b=gN/7+yn8QihXg11tTFDq2V2/bzp4k2w4O5Rj7poQJE45R8GdZT/Cu3Dd90I4D3P9l2 750zmiF0aqxLv1ThjHjKt+ECL7unhVES/aC4BU0TpcjIlCEIiAQePNNTSGxvmxs0nFJ/ pT7i6sP5T4lpHQPui1cbgvTdUWM2rB+w2lSD7ggrcBQi7IL7Oz4C2YB7zonqUrRO6jCb 1NgcNmANKAhbobWgUZ0lRczm3JU8MLp7byJpyNkCYp12oNdpzEvs6jjs/wyXL9ymfd5W oM9zM6SMEZNnY3DYGikgf7ALCMlc8eW2F/8Z9knF8Ci8f3ImIhJFHDgR0DEAZe9iMqlU Qgfw== 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 h2si5683123ejc.510.2020.05.11.03.30.27; Mon, 11 May 2020 03:30:50 -0700 (PDT) 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 S1729294AbgEKK21 (ORCPT + 99 others); Mon, 11 May 2020 06:28:27 -0400 Received: from mx2.suse.de ([195.135.220.15]:45094 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725983AbgEKK20 (ORCPT ); Mon, 11 May 2020 06:28:26 -0400 X-Virus-Scanned: by amavisd-new at test-mx.suse.de Received: from relay2.suse.de (unknown [195.135.220.254]) by mx2.suse.de (Postfix) with ESMTP id A679DAD11; Mon, 11 May 2020 10:28:27 +0000 (UTC) Subject: Re: [PATCH] kernel/watchdog.c: convert {soft/hard}lockup boot parameters to sysctl aliases To: "Guilherme G. Piccoli" , linux-kernel@vger.kernel.org, linux-fsdevel@vger.kernel.org Cc: akpm@linux-foundation.org, keescook@chromium.org, yzaikin@google.com, mcgrof@kernel.org, kernel@gpiccoli.net References: <20200507214624.21911-1-gpiccoli@canonical.com> From: Vlastimil Babka Message-ID: <03d35861-85c0-4a28-4845-02add0671351@suse.cz> Date: Mon, 11 May 2020 12:28:23 +0200 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Thunderbird/68.7.0 MIME-Version: 1.0 In-Reply-To: <20200507214624.21911-1-gpiccoli@canonical.com> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 5/7/20 11:46 PM, Guilherme G. Piccoli wrote: > After a recent change introduced by Vlastimil's series [0], kernel is > able now to handle sysctl parameters on kernel command line; also, the > series introduced a simple infrastructure to convert legacy boot > parameters (that duplicate sysctls) into sysctl aliases. > > This patch converts the watchdog parameters softlockup_panic and > {hard,soft}lockup_all_cpu_backtrace to use the new alias infrastructure. > It fixes the documentation too, since the alias only accepts values 0 > or 1, not the full range of integers. We also took the opportunity here > to improve the documentation of the previously converted hung_task_panic > (see the patch series [0]) and put the alias table in alphabetical order. > > [0] lore.kernel.org/lkml/20200427180433.7029-1-vbabka@suse.cz > > Signed-off-by: Guilherme G. Piccoli Ah, so I did miss some, as the Documentation file doesn't mention there is also a sysctl for those parameters. Maybe it should? Anyway, thanks. Acked-by: Vlastimil Babka