From patchwork Mon Jul 2 14:47:10 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Christoph Hellwig X-Patchwork-Id: 10501649 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id 739926028F for ; Mon, 2 Jul 2018 14:47:55 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 6418C28A26 for ; Mon, 2 Jul 2018 14:47:55 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 58B7628AD3; Mon, 2 Jul 2018 14:47:55 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.8 required=2.0 tests=BAYES_00,DKIM_SIGNED, MAILING_LIST_MULTI, RCVD_IN_DNSWL_HI, T_DKIM_INVALID autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 067AC28A2D for ; Mon, 2 Jul 2018 14:47:55 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752480AbeGBOrW (ORCPT ); Mon, 2 Jul 2018 10:47:22 -0400 Received: from bombadil.infradead.org ([198.137.202.133]:50406 "EHLO bombadil.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752049AbeGBOrR (ORCPT ); Mon, 2 Jul 2018 10:47:17 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=bombadil.20170209; h=References:In-Reply-To:Message-Id: Date:Subject:Cc:To:From:Sender:Reply-To:MIME-Version:Content-Type: Content-Transfer-Encoding:Content-ID:Content-Description:Resent-Date: Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:List-Id: List-Help:List-Unsubscribe:List-Subscribe:List-Post:List-Owner:List-Archive; bh=Hwy+l2NiaPnSgbbx7aVzLr5I8ilkDBL5l6JsQrkrvic=; b=pNSpRgIKmtdVVIEb+CxBP4nDh utEsKilZ4ghASdmxOX6fZqLybbSMYNckfYVhWVL0YPnCa9vQY9Iqm574jLofZN71l9sIST7s6LpId ALxnc4SSaRRwZhURUJSj3dwf7M4aOl0AZwv+dHC1ZSTwwaUUL24CxhM6lQgqhiD1KxQdWvqNZpkmI CvgnVBsPNMRptFQ2eY1lpiPTNVS4S0aJ+jk6oniK2rBeH0wUdnB3YpMzJX+29eNfjwlxIQP5tyGbN UoJwrikscVGmMYwrMTyA/TXGnU3qm5QGckw7BFy51olWKO5SbbfWH9sLakzcymNAf6tTNMK2L0web 1Wsla0QGQ==; Received: from [208.118.102.130] (helo=localhost) by bombadil.infradead.org with esmtpsa (Exim 4.90_1 #2 (Red Hat Linux)) id 1fa06m-0000Z8-Ff; Mon, 02 Jul 2018 14:47:16 +0000 From: Christoph Hellwig To: Masahiro Yamada Cc: Randy Dunlap , linux-kbuild@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH 4/5] kconfig: add a Memory Management options" menu Date: Mon, 2 Jul 2018 08:47:10 -0600 Message-Id: <20180702144711.22111-5-hch@lst.de> X-Mailer: git-send-email 2.18.0 In-Reply-To: <20180702144711.22111-1-hch@lst.de> References: <20180702144711.22111-1-hch@lst.de> X-SRS-Rewrite: SMTP reverse-path rewritten from by bombadil.infradead.org. See http://www.infradead.org/rpr.html Sender: linux-kbuild-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kbuild@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP This moves all the options under a proper menu. Based on a patch from Randy Dunlap. Signed-off-by: Christoph Hellwig Tested-by: Randy Dunlap Acked-by: Randy Dunlap --- mm/Kconfig | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/mm/Kconfig b/mm/Kconfig index ce95491abd6a..9ae1b6a8e30f 100644 --- a/mm/Kconfig +++ b/mm/Kconfig @@ -1,3 +1,6 @@ + +menu "Memory Management options" + config SELECT_MEMORY_MODEL def_bool y depends on ARCH_SELECT_MEMORY_MODEL @@ -762,3 +765,5 @@ config GUP_BENCHMARK config ARCH_HAS_PTE_SPECIAL bool + +endmenu