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 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 68C08C4332F for ; Tue, 1 Nov 2022 22:01:26 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231128AbiKAWBY (ORCPT ); Tue, 1 Nov 2022 18:01:24 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:39372 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231194AbiKAWBA (ORCPT ); Tue, 1 Nov 2022 18:01:00 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [IPv6:2604:1380:4641:c500::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 9401963E5; Tue, 1 Nov 2022 15:00:55 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 7330D61645; Tue, 1 Nov 2022 22:00:55 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 62C7CC433D6; Tue, 1 Nov 2022 22:00:54 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1667340054; bh=gP4LqJrYpXjsL/T9scrG8Q+DRiTrpGTd3NYLkmhHrI4=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=fRYKIiCTh+nt+jwvEtoepcLF1JLG+o+9vufajBuCbph+kwKeCCVkSG9Kn2bwhMYrE rhAw4A9JPtAn51/Uy1icFcHgU+8iB1m4GP4U6DpTdESd1Vsemld9fbxWFqryzXFjev W1eA34cPWjp1NpNqm649U0yCJmAum92gHpOjbkLZNtDKEFFjiDe4rFPQ+CDiT/LFQb GRWplJx71OhFSuJystQEv++gDi9UfSpL/JN+IOn2ezfkwSdDJ4ZtnflP0FQA4DoCLW 7s4nuhJqkb+orDR85juqFSf2TuqH/M9Y+lB2UDiNgCo4ecdyezNj78XrwxvuyH9t4V 74TVYCik84+tA== From: SeongJae Park To: Christophe JAILLET Cc: SeongJae Park , Andrew Morton , linux-kernel@vger.kernel.org, kernel-janitors@vger.kernel.org, damon@lists.linux.dev, linux-mm@kvack.org Subject: Re: [PATCH 20/30] mm/damon: Use kstrtobool() instead of strtobool() Date: Tue, 1 Nov 2022 22:00:53 +0000 Message-Id: <20221101220053.95605-1-sj@kernel.org> X-Mailer: git-send-email 2.25.1 In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, 1 Nov 2022 22:14:08 +0100 Christophe JAILLET wrote: > strtobool() is the same as kstrtobool(). > However, the latter is more used within the kernel. > > In order to remove strtobool() and slightly simplify kstrtox.h, switch to > the other function name. > > While at it, include the corresponding header file () > > Signed-off-by: Christophe JAILLET Reviewed-by: SeongJae Park Thanks, SJ [...]