2018-06-30 13:58:41

by Mike Rapoport

[permalink] [raw]
Subject: [PATCH] arc/Kconfig: add the "Memory Management" menu around include mm/Kconfig

Otherwise mm configuration options show up in the top level menu.

Suggested-by: Randy Dunlap <[email protected]>
Signed-off-by: Mike Rapoport <[email protected]>
Tested-by: Randy Dunlap <[email protected]>
Acked-by: Randy Dunlap <[email protected]>
---
arch/arc/Kconfig | 2 ++
1 file changed, 2 insertions(+)

diff --git a/arch/arc/Kconfig b/arch/arc/Kconfig
index e81bcd271be7..44a20141639a 100644
--- a/arch/arc/Kconfig
+++ b/arch/arc/Kconfig
@@ -556,12 +556,14 @@ endmenu

endmenu # "ARC Architecture Configuration"

+menu "Memory Management"
source "mm/Kconfig"

config FORCE_MAX_ZONEORDER
int "Maximum zone order"
default "12" if ARC_HUGEPAGE_16M
default "11"
+endmenu # "Memory Management"

source "net/Kconfig"
source "drivers/Kconfig"
--
2.7.4



2018-07-02 16:20:13

by Vineet Gupta

[permalink] [raw]
Subject: Re: [PATCH] arc/Kconfig: add the "Memory Management" menu around include mm/Kconfig

On 06/30/2018 06:54 AM, Mike Rapoport wrote:
> Otherwise mm configuration options show up in the top level menu.
>
> Suggested-by: Randy Dunlap <[email protected]>
> Signed-off-by: Mike Rapoport <[email protected]>
> Tested-by: Randy Dunlap <[email protected]>
> Acked-by: Randy Dunlap <[email protected]>

Thx,

Added to my tree.

-Vineet