* [PATCH] MM: Make Contiguous Memory Allocator depends on MMU
@ 2013-08-04 5:11 Manjunath Goudar
2013-08-04 7:54 ` Wanpeng Li
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: Manjunath Goudar @ 2013-08-04 5:11 UTC (permalink / raw)
To: linux-arm-kernel
s patch adds a Kconfig dependency on an MMU being available before
CMA can be enabled. Without this patch, CMA can be enabled on an
MMU-less system which can lead to issues. This was discovered during
randconfig testing, in which CMA was enabled w/o MMU being enabled,
leading to the following error:
CC mm/migrate.o
mm/migrate.c: In function ?remove_migration_pte?:
mm/migrate.c:134:3: error: implicit declaration of function ?pmd_trans_huge?
[-Werror=implicit-function-declaration]
if (pmd_trans_huge(*pmd))
^
mm/migrate.c:137:3: error: implicit declaration of function ?pte_offset_map?
[-Werror=implicit-function-declaration]
ptep = pte_offset_map(pmd, addr);
Signed-off-by: Manjunath Goudar <manjunath.goudar@linaro.org>
Acked-by: Arnd Bergmann <arnd@linaro.org>
Cc: Deepak Saxena <dsaxena@linaro.org>
Cc: IWAMOTO Toshihiro <iwamoto@valinux.co.jp>
Cc: Hirokazu Takahashi <taka@valinux.co.jp>
Cc: Dave Hansen <haveblue@us.ibm.com>
Cc: linux-mm at kvack.org
Cc: Johannes Weiner <hannes@cmpxchg.org>
Cc: Michal Hocko <mhocko@suse.cz>
Cc: Balbir Singh <bsingharora@gmail.com>
Cc: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
---
mm/Kconfig | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/mm/Kconfig b/mm/Kconfig
index 256bfd0..ad6b98e 100644
--- a/mm/Kconfig
+++ b/mm/Kconfig
@@ -522,7 +522,7 @@ config MEM_SOFT_DIRTY
config CMA
bool "Contiguous Memory Allocator"
- depends on HAVE_MEMBLOCK
+ depends on MMU && HAVE_MEMBLOCK
select MIGRATION
select MEMORY_ISOLATION
help
--
1.7.9.5
^ permalink raw reply related [flat|nested] 5+ messages in thread* [PATCH] MM: Make Contiguous Memory Allocator depends on MMU
2013-08-04 5:11 [PATCH] MM: Make Contiguous Memory Allocator depends on MMU Manjunath Goudar
@ 2013-08-04 7:54 ` Wanpeng Li
2013-08-04 8:09 ` Michal Hocko
[not found] ` <51fe08c6.87ef440a.10fc.1786SMTPIN_ADDED_BROKEN@mx.google.com>
2 siblings, 0 replies; 5+ messages in thread
From: Wanpeng Li @ 2013-08-04 7:54 UTC (permalink / raw)
To: linux-arm-kernel
On Sun, Aug 04, 2013 at 10:41:01AM +0530, Manjunath Goudar wrote:
>s patch adds a Kconfig dependency on an MMU being available before
>CMA can be enabled. Without this patch, CMA can be enabled on an
>MMU-less system which can lead to issues. This was discovered during
>randconfig testing, in which CMA was enabled w/o MMU being enabled,
>leading to the following error:
>
> CC mm/migrate.o
>mm/migrate.c: In function ?remove_migration_pte?:
>mm/migrate.c:134:3: error: implicit declaration of function ?pmd_trans_huge?
>[-Werror=implicit-function-declaration]
> if (pmd_trans_huge(*pmd))
> ^
>mm/migrate.c:137:3: error: implicit declaration of function ?pte_offset_map?
>[-Werror=implicit-function-declaration]
> ptep = pte_offset_map(pmd, addr);
>
Similar one.
http://marc.info/?l=linux-mm&m=137532486405085&w=2
>Signed-off-by: Manjunath Goudar <manjunath.goudar@linaro.org>
>Acked-by: Arnd Bergmann <arnd@linaro.org>
>Cc: Deepak Saxena <dsaxena@linaro.org>
>Cc: IWAMOTO Toshihiro <iwamoto@valinux.co.jp>
>Cc: Hirokazu Takahashi <taka@valinux.co.jp>
>Cc: Dave Hansen <haveblue@us.ibm.com>
>Cc: linux-mm at kvack.org
>Cc: Johannes Weiner <hannes@cmpxchg.org>
>Cc: Michal Hocko <mhocko@suse.cz>
>Cc: Balbir Singh <bsingharora@gmail.com>
>Cc: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
>---
> mm/Kconfig | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
>diff --git a/mm/Kconfig b/mm/Kconfig
>index 256bfd0..ad6b98e 100644
>--- a/mm/Kconfig
>+++ b/mm/Kconfig
>@@ -522,7 +522,7 @@ config MEM_SOFT_DIRTY
>
> config CMA
> bool "Contiguous Memory Allocator"
>- depends on HAVE_MEMBLOCK
>+ depends on MMU && HAVE_MEMBLOCK
> select MIGRATION
> select MEMORY_ISOLATION
> help
>--
>1.7.9.5
>
>--
>To unsubscribe, send a message with 'unsubscribe linux-mm' in
>the body to majordomo at kvack.org. For more info on Linux MM,
>see: http://www.linux-mm.org/ .
>Don't email: <a href=mailto:"dont@kvack.org"> email at kvack.org </a>
^ permalink raw reply [flat|nested] 5+ messages in thread* [PATCH] MM: Make Contiguous Memory Allocator depends on MMU
2013-08-04 5:11 [PATCH] MM: Make Contiguous Memory Allocator depends on MMU Manjunath Goudar
2013-08-04 7:54 ` Wanpeng Li
@ 2013-08-04 8:09 ` Michal Hocko
[not found] ` <51fe08c6.87ef440a.10fc.1786SMTPIN_ADDED_BROKEN@mx.google.com>
2 siblings, 0 replies; 5+ messages in thread
From: Michal Hocko @ 2013-08-04 8:09 UTC (permalink / raw)
To: linux-arm-kernel
On Sun 04-08-13 10:41:01, Manjunath Goudar wrote:
> s patch adds a Kconfig dependency on an MMU being available before
> CMA can be enabled. Without this patch, CMA can be enabled on an
> MMU-less system which can lead to issues. This was discovered during
> randconfig testing, in which CMA was enabled w/o MMU being enabled,
> leading to the following error:
>
> CC mm/migrate.o
> mm/migrate.c: In function ?remove_migration_pte?:
> mm/migrate.c:134:3: error: implicit declaration of function ?pmd_trans_huge?
> [-Werror=implicit-function-declaration]
> if (pmd_trans_huge(*pmd))
> ^
> mm/migrate.c:137:3: error: implicit declaration of function ?pte_offset_map?
> [-Werror=implicit-function-declaration]
> ptep = pte_offset_map(pmd, addr);
This is a migration code but you are updating configuration for CMA
which doesn't make much sense to me.
I guess you wanted to disable migration for CMA instead?
> Signed-off-by: Manjunath Goudar <manjunath.goudar@linaro.org>
> Acked-by: Arnd Bergmann <arnd@linaro.org>
> Cc: Deepak Saxena <dsaxena@linaro.org>
> Cc: IWAMOTO Toshihiro <iwamoto@valinux.co.jp>
> Cc: Hirokazu Takahashi <taka@valinux.co.jp>
> Cc: Dave Hansen <haveblue@us.ibm.com>
> Cc: linux-mm at kvack.org
> Cc: Johannes Weiner <hannes@cmpxchg.org>
> Cc: Michal Hocko <mhocko@suse.cz>
> Cc: Balbir Singh <bsingharora@gmail.com>
> Cc: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
> ---
> mm/Kconfig | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/mm/Kconfig b/mm/Kconfig
> index 256bfd0..ad6b98e 100644
> --- a/mm/Kconfig
> +++ b/mm/Kconfig
> @@ -522,7 +522,7 @@ config MEM_SOFT_DIRTY
>
> config CMA
> bool "Contiguous Memory Allocator"
> - depends on HAVE_MEMBLOCK
> + depends on MMU && HAVE_MEMBLOCK
> select MIGRATION
> select MEMORY_ISOLATION
> help
> --
> 1.7.9.5
>
> --
> To unsubscribe, send a message with 'unsubscribe linux-mm' in
> the body to majordomo at kvack.org. For more info on Linux MM,
> see: http://www.linux-mm.org/ .
> Don't email: <a href=mailto:"dont@kvack.org"> email at kvack.org </a>
--
Michal Hocko
SUSE Labs
^ permalink raw reply [flat|nested] 5+ messages in thread[parent not found: <51fe08c6.87ef440a.10fc.1786SMTPIN_ADDED_BROKEN@mx.google.com>]
end of thread, other threads:[~2013-08-05 9:04 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-08-04 5:11 [PATCH] MM: Make Contiguous Memory Allocator depends on MMU Manjunath Goudar
2013-08-04 7:54 ` Wanpeng Li
2013-08-04 8:09 ` Michal Hocko
[not found] ` <51fe08c6.87ef440a.10fc.1786SMTPIN_ADDED_BROKEN@mx.google.com>
[not found] ` <CAJFYCKEhJtG1x1PaiwpwOADxthXRSh0pQsE3uYWO2i4xnHGvYQ@mail.gmail.com>
2013-08-05 7:32 ` Michal Hocko
[not found] ` <CAJFYCKGZte3FER8MNRX3T_c=jgYbCb+WEWtdz4wSPa9XZ8huGg@mail.gmail.com>
2013-08-05 9:04 ` Michal Hocko
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox