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 6AC1FC433EF for ; Fri, 18 Feb 2022 18:33:25 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S235443AbiBRSdk (ORCPT ); Fri, 18 Feb 2022 13:33:40 -0500 Received: from mxb-00190b01.gslb.pphosted.com ([23.128.96.19]:54326 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S233264AbiBRSdj (ORCPT ); Fri, 18 Feb 2022 13:33:39 -0500 Received: from bombadil.infradead.org (bombadil.infradead.org [IPv6:2607:7c80:54:e::133]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 5E8BD101F10; Fri, 18 Feb 2022 10:33:22 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=bombadil.20210309; h=Sender:In-Reply-To:Content-Type: MIME-Version:References:Message-ID:Subject:Cc:To:From:Date:Reply-To: Content-Transfer-Encoding:Content-ID:Content-Description; bh=PrWz5qtwHqdsRw/blxCb36c0OKYX0eyItRlrI1nvhYw=; b=fg/RX55EvbqAh4EIcEZKIZHAgd wZokEp23P5OtG3/qxuaVZuB1CKe9ivzibiisyFrMCsVvyXZHyofFgrLX+AJD9P+V7IqFl5XcrVDJW 3VuyeQ+odtBJtSQ1zxt2C8yQr0yougjcyfQ2Nn/TWUtcQnIemLmbrzAUrouL7i3V25YJWSzE4JSTn W71rFO46xDp5fbkKSGv+Knq4mvYGoWBwLDLfZhVb4LowRK8cI90w2QN4ZrDPpOUnuwuNrAxasYfBq birY9cRmAmJXZOpQY0BSh83O1o5ZEDFfN7ghHpYFsey+iLI0L+vsKt75H5L1Zp6vGVE3R3dXPNwF5 fxRTge8g==; Received: from mcgrof by bombadil.infradead.org with local (Exim 4.94.2 #2 (Red Hat Linux)) id 1nL841-00FVaa-Of; Fri, 18 Feb 2022 18:33:05 +0000 Date: Fri, 18 Feb 2022 10:33:05 -0800 From: Luis Chamberlain To: tangmeng , zhanglianjie , nizhen@uniontech.com, Xiaoming Ni Cc: akpm@linux-foundation.org, keescook@chromium.org, yzaikin@google.com, peterz@infradead.org, mingo@redhat.com, will@kernel.org, longman@redhat.com, boqun.feng@gmail.com, linux-kernel@vger.kernel.org, linux-fsdevel@vger.kernel.org Subject: Re: [PATCH 1/5] kernel/lockdep: move lockdep sysctls to its own file Message-ID: References: <20220218105857.12559-1-tangmeng@uniontech.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20220218105857.12559-1-tangmeng@uniontech.com> Sender: Luis Chamberlain Precedence: bulk List-ID: X-Mailing-List: linux-fsdevel@vger.kernel.org On Fri, Feb 18, 2022 at 06:58:57PM +0800, tangmeng wrote: > kernel/sysctl.c is a kitchen sink where everyone leaves their dirty > dishes, this makes it very difficult to maintain. > > To help with this maintenance let's start by moving sysctls to places > where they actually belong. The proc sysctl maintainers do not want to > know what sysctl knobs you wish to add for your own piece of code, we > just care about the core logic. > > All filesystem syctls now get reviewed by fs folks. This commit > follows the commit of fs, move the prove_locking and lock_stat sysctls > to its own file, kernel/lockdep.c. > > Signed-off-by: tangmeng Thanks! Queued on to the new sysctl-next [0] please use that tree for further sysctl changes. And please Cc zhanglianjie and nizhen and Xiaoming Ni on future changes as well. [0] git://git.kernel.org/pub/scm/linux/kernel/git/mcgrof/linux.git sysctl-next Luis