From: Joonsoo Kim <iamjoonsoo.kim@lge.com>
To: Randy Dunlap <rdunlap@infradead.org>
Cc: Andrey Ryabinin <ryabinin.a.a@gmail.com>,
Andrew Morton <akpm@linux-foundation.org>,
Christoph Lameter <cl@linux.com>,
LKML <linux-kernel@vger.kernel.org>,
"linux-mm@kvack.org" <linux-mm@kvack.org>,
linux-next@vger.kernel.org, sfr@canb.auug.org.au, mhocko@suse.cz,
Pekka Enberg <penberg@kernel.org>,
Vegard Nossum <vegardno@ifi.uio.no>
Subject: Re: [PATCH -mmotm v2] mm: fix kmemcheck.c build errors
Date: Mon, 1 Sep 2014 09:13:13 +0900 [thread overview]
Message-ID: <20140901001312.GA25599@js1304-P5Q-DELUXE> (raw)
In-Reply-To: <5403B0B8.8010507@infradead.org>
On Sun, Aug 31, 2014 at 04:33:12PM -0700, Randy Dunlap wrote:
> On 08/31/14 07:48, Randy Dunlap wrote:
> > On 08/31/14 04:36, Andrey Ryabinin wrote:
> >> 2014-08-30 5:48 GMT+04:00 Randy Dunlap <rdunlap@infradead.org>:
> >>> From: Randy Dunlap <rdunlap@infradead.org>
> >>>
> >>> Add header file to fix kmemcheck.c build errors:
> >>>
> >>> ../mm/kmemcheck.c:70:7: error: dereferencing pointer to incomplete type
> >>> ../mm/kmemcheck.c:83:15: error: dereferencing pointer to incomplete type
> >>> ../mm/kmemcheck.c:95:8: error: dereferencing pointer to incomplete type
> >>> ../mm/kmemcheck.c:95:21: error: dereferencing pointer to incomplete type
> >>>
> >>> Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
> >>> ---
> >>> mm/kmemcheck.c | 1 +
> >>> 1 file changed, 1 insertion(+)
> >>>
> >>> Index: mmotm-2014-0829-1515/mm/kmemcheck.c
> >>> ===================================================================
> >>> --- mmotm-2014-0829-1515.orig/mm/kmemcheck.c
> >>> +++ mmotm-2014-0829-1515/mm/kmemcheck.c
> >>> @@ -2,6 +2,7 @@
> >>> #include <linux/mm_types.h>
> >>> #include <linux/mm.h>
> >>> #include <linux/slab.h>
> >>> +#include <linux/slab_def.h>
> >>
> >> This will work only for CONFIG_SLAB=y. struct kmem_cache definition
> >> was moved to internal header [*],
> >> so you need to include it here:
> >> #include "slab.h"
> >>
> >> [*] http://ozlabs.org/~akpm/mmotm/broken-out/mm-slab_common-move-kmem_cache-definition-to-internal-header.patch
> >
> > Thanks. That makes sense. [testing] mm/kmemcheck.c still has a build error:
> >
> > In file included from ../mm/kmemcheck.c:5:0:
> > ../mm/slab.h: In function 'cache_from_obj':
> > ../mm/slab.h:283:2: error: implicit declaration of function 'memcg_kmem_enabled' [-Werror=implicit-function-declaration]
> >
>
> Naughty header file. It uses something from <linux/memcontrol.h> without
> #including that header file...
Hello.
Indeed...
Thanks for catching this.
>
> Working patch is below.
With your patch, build also failed if CONFIG_MEMCG_KMEM=y.
Right fix is something like below.
Thanks.
--------->8----------
diff --git a/mm/kmemcheck.c b/mm/kmemcheck.c
index fd814fd..cab58bb 100644
--- a/mm/kmemcheck.c
+++ b/mm/kmemcheck.c
@@ -2,6 +2,7 @@
#include <linux/mm_types.h>
#include <linux/mm.h>
#include <linux/slab.h>
+#include "slab.h"
#include <linux/kmemcheck.h>
void kmemcheck_alloc_shadow(struct page *page, int order, gfp_t flags, int node)
diff --git a/mm/slab.h b/mm/slab.h
index 13845d0..963a3f8 100644
--- a/mm/slab.h
+++ b/mm/slab.h
@@ -37,6 +37,8 @@ struct kmem_cache {
#include <linux/slub_def.h>
#endif
+#include <linux/memcontrol.h>
+
/*
* State of the slab allocator.
*
--
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>
next prev parent reply other threads:[~2014-09-01 0:12 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-08-29 22:16 mmotm 2014-08-29-15-15 uploaded akpm
2014-08-30 1:48 ` [PATCH -mmotm] mm: fix kmemcheck.c build errors Randy Dunlap
2014-08-31 11:36 ` Andrey Ryabinin
2014-08-31 14:48 ` Randy Dunlap
2014-08-31 23:33 ` [PATCH -mmotm v2] " Randy Dunlap
2014-09-01 0:13 ` Joonsoo Kim [this message]
2014-09-01 0:17 ` Randy Dunlap
2014-09-01 0:29 ` Joonsoo Kim
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20140901001312.GA25599@js1304-P5Q-DELUXE \
--to=iamjoonsoo.kim@lge.com \
--cc=akpm@linux-foundation.org \
--cc=cl@linux.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=linux-next@vger.kernel.org \
--cc=mhocko@suse.cz \
--cc=penberg@kernel.org \
--cc=rdunlap@infradead.org \
--cc=ryabinin.a.a@gmail.com \
--cc=sfr@canb.auug.org.au \
--cc=vegardno@ifi.uio.no \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox