Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1442824
| From | Andrew Morton <akpm@linux-foundation.org> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [RFC PATCH] dynamic_debug: only add header when used |
| Date | 2016-07-13 22:40 +0200 |
| Message-ID | <rUz6N-83G-7@gated-at.bofh.it> (permalink) |
| References | <rUvZf-63d-13@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
On Wed, 13 Jul 2016 18:09:53 +0100 Luis de Bethencourt <luisbg@osg.samsung.com> wrote: > kernel.h header doesn't directly use dynamic debug, instead we can include > it in module.c (which used it via kernel.h). printk.h only uses it if > CONFIG_DYNAMIC_DEBUG is on, changing the inclusion to only happen in that > case. > > Signed-off-by: Luis de Bethencourt <luisbg@osg.samsung.com> > --- > Hi, > > While studying the problem that surfaced when adding #include <linux/kernel.h> > in include/linux/string.h to have access to the MAX_SIZE macro [0]. I noticed > that dynamic_debug.h is included in kernel.h even though it isn't necessary. > Which in the case of adding kernel.h to string.h would mean a circular > dependency. > > Not entirely sure if there is a reason for this beyond making dynamic debug > available to module.c. Which is why I am sending this patch as an RFC. It would be good if we can do this. What is it in kernel.h that requires dynamic_debug.h? I tried your patch along with --- a/kernel/module.c~dynamic_debug-only-add-header-when-used-fix +++ a/kernel/module.c @@ -60,7 +60,6 @@ #include <linux/jump_label.h> #include <linux/pfn.h> #include <linux/bsearch.h> -#include <linux/dynamic_debug.h> #include <uapi/linux/module.h> #include "module-internal.h" and module.o builds OK.
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
[RFC PATCH] dynamic_debug: only add header when used Luis de Bethencourt <luisbg@osg.samsung.com> - 2016-07-13 19:20 +0200
Re: [RFC PATCH] dynamic_debug: only add header when used Andrew Morton <akpm@linux-foundation.org> - 2016-07-13 22:40 +0200
Re: [RFC PATCH] dynamic_debug: only add header when used Luis de Bethencourt <luisbg@osg.samsung.com> - 2016-07-13 22:50 +0200
Re: [RFC PATCH] dynamic_debug: only add header when used Luis de Bethencourt <luisbg@osg.samsung.com> - 2016-07-14 00:30 +0200
csiph-web