* [mmotm:master 130/230] mm/swap.c:719:2: error: implicit declaration of function 'TestSetPageMlocked'
@ 2014-06-20 2:09 kbuild test robot
2014-06-20 21:14 ` Andrew Morton
0 siblings, 1 reply; 3+ messages in thread
From: kbuild test robot @ 2014-06-20 2:09 UTC (permalink / raw)
To: Johannes Weiner; +Cc: Linux Memory Management List, Andrew Morton, kbuild-all
tree: git://git.cmpxchg.org/linux-mmotm.git master
head: df25ba7db0775d87018e2cd92f26b9b087093840
commit: 8d72d7b20fab14a779df2f7ea7632d4ee223dfcc [130/230] mm: memcontrol: rewrite charge API
config: make ARCH=m32r m32104ut_defconfig
All error/warnings:
mm/swap.c: In function 'lru_cache_add_active_or_unevictable':
>> mm/swap.c:719:2: error: implicit declaration of function 'TestSetPageMlocked' [-Werror=implicit-function-declaration]
cc1: some warnings being treated as errors
vim +/TestSetPageMlocked +719 mm/swap.c
713 if (likely((vma->vm_flags & (VM_LOCKED | VM_SPECIAL)) != VM_LOCKED)) {
714 SetPageActive(page);
715 lru_cache_add(page);
716 return;
717 }
718
> 719 if (!TestSetPageMlocked(page)) {
720 /*
721 * We use the irq-unsafe __mod_zone_page_stat because this
722 * counter is not modified from interrupt context, and the pte
---
0-DAY kernel build testing backend Open Source Technology Center
http://lists.01.org/mailman/listinfo/kbuild Intel Corporation
--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org. For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [mmotm:master 130/230] mm/swap.c:719:2: error: implicit declaration of function 'TestSetPageMlocked'
2014-06-20 2:09 [mmotm:master 130/230] mm/swap.c:719:2: error: implicit declaration of function 'TestSetPageMlocked' kbuild test robot
@ 2014-06-20 21:14 ` Andrew Morton
2014-06-20 21:55 ` Johannes Weiner
0 siblings, 1 reply; 3+ messages in thread
From: Andrew Morton @ 2014-06-20 21:14 UTC (permalink / raw)
To: kbuild test robot
Cc: Johannes Weiner, Linux Memory Management List, kbuild-all
On Fri, 20 Jun 2014 10:09:27 +0800 kbuild test robot <fengguang.wu@intel.com> wrote:
> tree: git://git.cmpxchg.org/linux-mmotm.git master
> head: df25ba7db0775d87018e2cd92f26b9b087093840
> commit: 8d72d7b20fab14a779df2f7ea7632d4ee223dfcc [130/230] mm: memcontrol: rewrite charge API
> config: make ARCH=m32r m32104ut_defconfig
>
> All error/warnings:
>
> mm/swap.c: In function 'lru_cache_add_active_or_unevictable':
> >> mm/swap.c:719:2: error: implicit declaration of function 'TestSetPageMlocked' [-Werror=implicit-function-declaration]
> cc1: some warnings being treated as errors
>
> vim +/TestSetPageMlocked +719 mm/swap.c
>
> 713 if (likely((vma->vm_flags & (VM_LOCKED | VM_SPECIAL)) != VM_LOCKED)) {
> 714 SetPageActive(page);
> 715 lru_cache_add(page);
> 716 return;
> 717 }
> 718
> > 719 if (!TestSetPageMlocked(page)) {
> 720 /*
> 721 * We use the irq-unsafe __mod_zone_page_stat because this
> 722 * counter is not modified from interrupt context, and the pte
>
hm, I can't think of anything very smart here.
--- a/mm/swap.c~mm-memcontrol-rewrite-charge-api-fix-2
+++ a/mm/swap.c
@@ -716,6 +716,7 @@ void lru_cache_add_active_or_unevictable
return;
}
+#ifdef CONFIG_MMU
if (!TestSetPageMlocked(page)) {
/*
* We use the irq-unsafe __mod_zone_page_stat because this
@@ -726,6 +727,7 @@ void lru_cache_add_active_or_unevictable
hpage_nr_pages(page));
count_vm_event(UNEVICTABLE_PGMLOCKED);
}
+#else
add_page_to_unevictable_list(page);
}
--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org. For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [mmotm:master 130/230] mm/swap.c:719:2: error: implicit declaration of function 'TestSetPageMlocked'
2014-06-20 21:14 ` Andrew Morton
@ 2014-06-20 21:55 ` Johannes Weiner
0 siblings, 0 replies; 3+ messages in thread
From: Johannes Weiner @ 2014-06-20 21:55 UTC (permalink / raw)
To: Andrew Morton; +Cc: kbuild test robot, Linux Memory Management List, kbuild-all
On Fri, Jun 20, 2014 at 02:14:16PM -0700, Andrew Morton wrote:
> On Fri, 20 Jun 2014 10:09:27 +0800 kbuild test robot <fengguang.wu@intel.com> wrote:
>
> > tree: git://git.cmpxchg.org/linux-mmotm.git master
> > head: df25ba7db0775d87018e2cd92f26b9b087093840
> > commit: 8d72d7b20fab14a779df2f7ea7632d4ee223dfcc [130/230] mm: memcontrol: rewrite charge API
> > config: make ARCH=m32r m32104ut_defconfig
> >
> > All error/warnings:
> >
> > mm/swap.c: In function 'lru_cache_add_active_or_unevictable':
> > >> mm/swap.c:719:2: error: implicit declaration of function 'TestSetPageMlocked' [-Werror=implicit-function-declaration]
> > cc1: some warnings being treated as errors
> >
> > vim +/TestSetPageMlocked +719 mm/swap.c
> >
> > 713 if (likely((vma->vm_flags & (VM_LOCKED | VM_SPECIAL)) != VM_LOCKED)) {
> > 714 SetPageActive(page);
> > 715 lru_cache_add(page);
> > 716 return;
> > 717 }
> > 718
> > > 719 if (!TestSetPageMlocked(page)) {
> > 720 /*
> > 721 * We use the irq-unsafe __mod_zone_page_stat because this
> > 722 * counter is not modified from interrupt context, and the pte
> >
>
> hm, I can't think of anything very smart here.
>
> --- a/mm/swap.c~mm-memcontrol-rewrite-charge-api-fix-2
> +++ a/mm/swap.c
> @@ -716,6 +716,7 @@ void lru_cache_add_active_or_unevictable
> return;
> }
>
> +#ifdef CONFIG_MMU
> if (!TestSetPageMlocked(page)) {
> /*
> * We use the irq-unsafe __mod_zone_page_stat because this
> @@ -726,6 +727,7 @@ void lru_cache_add_active_or_unevictable
> hpage_nr_pages(page));
> count_vm_event(UNEVICTABLE_PGMLOCKED);
> }
> +#else
> add_page_to_unevictable_list(page);
> }
We can define TestSetPageMlocked() for !MMU configurations. I don't
have a suitable toolchain available right now, so this is untested.
---
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2014-06-20 21:55 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-06-20 2:09 [mmotm:master 130/230] mm/swap.c:719:2: error: implicit declaration of function 'TestSetPageMlocked' kbuild test robot
2014-06-20 21:14 ` Andrew Morton
2014-06-20 21:55 ` Johannes Weiner
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).