linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] audit: remove some duplicated includes
@ 2018-11-26 14:51 Yangtao Li
  2018-11-26 23:35 ` Paul Moore
  0 siblings, 1 reply; 4+ messages in thread
From: Yangtao Li @ 2018-11-26 14:51 UTC (permalink / raw)
  To: paul, eparis; +Cc: linux-audit, linux-kernel, Yangtao Li

audit.h and skbuff.h are included twice.It's unnecessary.
hence just remove them.

Signed-off-by: Yangtao Li <tiny.windzz@gmail.com>
---
 kernel/audit.c | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/kernel/audit.c b/kernel/audit.c
index 2a8058764aa6..a677715891d0 100644
--- a/kernel/audit.c
+++ b/kernel/audit.c
@@ -62,11 +62,8 @@
 #include <linux/pid.h>
 #include <linux/slab.h>
 
-#include <linux/audit.h>
-
 #include <net/sock.h>
 #include <net/netlink.h>
-#include <linux/skbuff.h>
 #ifdef CONFIG_SECURITY
 #include <linux/security.h>
 #endif
-- 
2.17.0


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] audit: remove some duplicated includes
  2018-11-26 14:51 [PATCH] audit: remove some duplicated includes Yangtao Li
@ 2018-11-26 23:35 ` Paul Moore
  2018-11-27  1:03   ` Frank Lee
  0 siblings, 1 reply; 4+ messages in thread
From: Paul Moore @ 2018-11-26 23:35 UTC (permalink / raw)
  To: tiny.windzz; +Cc: Eric Paris, linux-audit, linux-kernel

On Mon, Nov 26, 2018 at 9:51 AM Yangtao Li <tiny.windzz@gmail.com> wrote:
>
> audit.h and skbuff.h are included twice.It's unnecessary.
> hence just remove them.
>
> Signed-off-by: Yangtao Li <tiny.windzz@gmail.com>
> ---
>  kernel/audit.c | 3 ---
>  1 file changed, 3 deletions(-)

While there are two header files named audit.h, they are different
files as one lives in include/linux/audit.h, the other in
kernel/audit.h.  Granted, kernel/audit.h does include the
include/linux/audit.h file but it should be protected from multiple
inclusion by the _LINUX_AUDIT_H_ definition.

I currently prefer to keep both <linux/audit.h> and "audit.h" in
audit.c to help make the dependencies explicit in audit.c itself.

> diff --git a/kernel/audit.c b/kernel/audit.c
> index 2a8058764aa6..a677715891d0 100644
> --- a/kernel/audit.c
> +++ b/kernel/audit.c
> @@ -62,11 +62,8 @@
>  #include <linux/pid.h>
>  #include <linux/slab.h>
>
> -#include <linux/audit.h>
> -
>  #include <net/sock.h>
>  #include <net/netlink.h>
> -#include <linux/skbuff.h>
>  #ifdef CONFIG_SECURITY
>  #include <linux/security.h>
>  #endif
> --
> 2.17.0

-- 
paul moore
www.paul-moore.com

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] audit: remove some duplicated includes
  2018-11-26 23:35 ` Paul Moore
@ 2018-11-27  1:03   ` Frank Lee
  2018-11-27 22:19     ` Paul Moore
  0 siblings, 1 reply; 4+ messages in thread
From: Frank Lee @ 2018-11-27  1:03 UTC (permalink / raw)
  To: Paul Moore; +Cc: eparis, linux-audit, linux-kernel

On Tue, Nov 27, 2018 at 7:36 AM Paul Moore <paul@paul-moore.com> wrote:
>
> On Mon, Nov 26, 2018 at 9:51 AM Yangtao Li <tiny.windzz@gmail.com> wrote:
> >
> > audit.h and skbuff.h are included twice.It's unnecessary.
> > hence just remove them.
> >
> > Signed-off-by: Yangtao Li <tiny.windzz@gmail.com>
> > ---
> >  kernel/audit.c | 3 ---
> >  1 file changed, 3 deletions(-)
>
> While there are two header files named audit.h, they are different
> files as one lives in include/linux/audit.h, the other in
> kernel/audit.h.  Granted, kernel/audit.h does include the
> include/linux/audit.h file but it should be protected from multiple
> inclusion by the _LINUX_AUDIT_H_ definition.
>
> I currently prefer to keep both <linux/audit.h> and "audit.h" in
> audit.c to help make the dependencies explicit in audit.c itself.
Hi Paul:

How about fs.h and others?

MBR,
Yangtao
>
> > diff --git a/kernel/audit.c b/kernel/audit.c
> > index 2a8058764aa6..a677715891d0 100644
> > --- a/kernel/audit.c
> > +++ b/kernel/audit.c
> > @@ -62,11 +62,8 @@
> >  #include <linux/pid.h>
> >  #include <linux/slab.h>
> >
> > -#include <linux/audit.h>
> > -
> >  #include <net/sock.h>
> >  #include <net/netlink.h>
> > -#include <linux/skbuff.h>
> >  #ifdef CONFIG_SECURITY
> >  #include <linux/security.h>
> >  #endif
> > --
> > 2.17.0
>
> --
> paul moore
> www.paul-moore.com

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] audit: remove some duplicated includes
  2018-11-27  1:03   ` Frank Lee
@ 2018-11-27 22:19     ` Paul Moore
  0 siblings, 0 replies; 4+ messages in thread
From: Paul Moore @ 2018-11-27 22:19 UTC (permalink / raw)
  To: tiny.windzz; +Cc: Eric Paris, linux-audit, linux-kernel

On Mon, Nov 26, 2018 at 8:03 PM Frank Lee <tiny.windzz@gmail.com> wrote:
> On Tue, Nov 27, 2018 at 7:36 AM Paul Moore <paul@paul-moore.com> wrote:
> > On Mon, Nov 26, 2018 at 9:51 AM Yangtao Li <tiny.windzz@gmail.com> wrote:
> > >
> > > audit.h and skbuff.h are included twice.It's unnecessary.
> > > hence just remove them.
> > >
> > > Signed-off-by: Yangtao Li <tiny.windzz@gmail.com>
> > > ---
> > >  kernel/audit.c | 3 ---
> > >  1 file changed, 3 deletions(-)
> >
> > While there are two header files named audit.h, they are different
> > files as one lives in include/linux/audit.h, the other in
> > kernel/audit.h.  Granted, kernel/audit.h does include the
> > include/linux/audit.h file but it should be protected from multiple
> > inclusion by the _LINUX_AUDIT_H_ definition.
> >
> > I currently prefer to keep both <linux/audit.h> and "audit.h" in
> > audit.c to help make the dependencies explicit in audit.c itself.
> Hi Paul:
>
> How about fs.h and others?

In the case of linux/fs.h, I believe that you wanted to remove it
because we are already including linux/fsnotify_backend.h (or
similar), yes?  In that case I think it comes down to a similar idea:
keep linux/fs.h when we are directly referencing a function, variable,
etc. that is declared in linux/fs.h.  Needless to say, I would take
the same position with other header files.

If you can find a case where we are not making any direct references
to something in a header file, I'm happy to merge a patch which
removes that include.

-- 
paul moore
www.paul-moore.com

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2018-11-27 22:19 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-11-26 14:51 [PATCH] audit: remove some duplicated includes Yangtao Li
2018-11-26 23:35 ` Paul Moore
2018-11-27  1:03   ` Frank Lee
2018-11-27 22:19     ` Paul Moore

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).