linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2 -tip] headers_check fix: linux/auto_fs.h
@ 2009-05-20  4:54 Jaswinder Singh Rajput
  2009-05-20  4:57 ` [PATCH 2/2 -tip] headers_check fix: linux/net_dropmon.h Jaswinder Singh Rajput
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Jaswinder Singh Rajput @ 2009-05-20  4:54 UTC (permalink / raw)
  To: Ingo Molnar, Andrew Morton, Sam Ravnborg, x86 maintainers, LKML


fix the following 'make headers_check' warnings:

  usr/include/linux/auto_fs.h:17: include of <linux/types.h> is preferred over <asm/types.h>

Signed-off-by: Jaswinder Singh Rajput <jaswinderrajput@gmail.com>
---
 include/linux/auto_fs.h |    3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)

diff --git a/include/linux/auto_fs.h b/include/linux/auto_fs.h
index 6326585..7b09c83 100644
--- a/include/linux/auto_fs.h
+++ b/include/linux/auto_fs.h
@@ -14,13 +14,12 @@
 #ifndef _LINUX_AUTO_FS_H
 #define _LINUX_AUTO_FS_H
 
+#include <linux/types.h>
 #ifdef __KERNEL__
 #include <linux/fs.h>
 #include <linux/limits.h>
-#include <linux/types.h>
 #include <linux/ioctl.h>
 #else
-#include <asm/types.h>
 #include <sys/ioctl.h>
 #endif /* __KERNEL__ */
 
-- 
1.6.1.1




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

* [PATCH 2/2 -tip] headers_check fix: linux/net_dropmon.h
  2009-05-20  4:54 [PATCH 1/2 -tip] headers_check fix: linux/auto_fs.h Jaswinder Singh Rajput
@ 2009-05-20  4:57 ` Jaswinder Singh Rajput
  2009-06-01  5:50   ` [RESEND][PATCH " Jaswinder Singh Rajput
  2009-06-01  5:50 ` [RESEND][PATCH 1/2 -tip] headers_check fix: linux/auto_fs.h Jaswinder Singh Rajput
  2009-06-01  6:53 ` [PATCH " Jaswinder Singh Rajput
  2 siblings, 1 reply; 6+ messages in thread
From: Jaswinder Singh Rajput @ 2009-05-20  4:57 UTC (permalink / raw)
  To: Ingo Molnar, David Miller
  Cc: Andrew Morton, Sam Ravnborg, x86 maintainers, LKML


fix the following 'make headers_check' warnings:

  usr/include/linux/net_dropmon.h:7: found __[us]{8,16,32,64} type without #include <linux/types.h>

Signed-off-by: Jaswinder Singh Rajput <jaswinderrajput@gmail.com>
---
 include/linux/net_dropmon.h |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/include/linux/net_dropmon.h b/include/linux/net_dropmon.h
index 0217fb8..0e2e100 100644
--- a/include/linux/net_dropmon.h
+++ b/include/linux/net_dropmon.h
@@ -1,6 +1,7 @@
 #ifndef __NET_DROPMON_H
 #define __NET_DROPMON_H
 
+#include <linux/types.h>
 #include <linux/netlink.h>
 
 struct net_dm_drop_point {
-- 
1.6.1.1




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

* Re: [RESEND][PATCH 1/2 -tip] headers_check fix: linux/auto_fs.h
  2009-05-20  4:54 [PATCH 1/2 -tip] headers_check fix: linux/auto_fs.h Jaswinder Singh Rajput
  2009-05-20  4:57 ` [PATCH 2/2 -tip] headers_check fix: linux/net_dropmon.h Jaswinder Singh Rajput
@ 2009-06-01  5:50 ` Jaswinder Singh Rajput
  2009-06-01  6:53 ` [PATCH " Jaswinder Singh Rajput
  2 siblings, 0 replies; 6+ messages in thread
From: Jaswinder Singh Rajput @ 2009-06-01  5:50 UTC (permalink / raw)
  To: Ingo Molnar; +Cc: Andrew Morton, Sam Ravnborg, x86 maintainers, LKML

On Wed, 2009-05-20 at 10:24 +0530, Jaswinder Singh Rajput wrote:
> fix the following 'make headers_check' warnings:
> 
>   usr/include/linux/auto_fs.h:17: include of <linux/types.h> is preferred over <asm/types.h>
> 
> Signed-off-by: Jaswinder Singh Rajput <jaswinderrajput@gmail.com>
> ---
>  include/linux/auto_fs.h |    3 +--
>  1 files changed, 1 insertions(+), 2 deletions(-)
> 
> diff --git a/include/linux/auto_fs.h b/include/linux/auto_fs.h
> index 6326585..7b09c83 100644
> --- a/include/linux/auto_fs.h
> +++ b/include/linux/auto_fs.h
> @@ -14,13 +14,12 @@
>  #ifndef _LINUX_AUTO_FS_H
>  #define _LINUX_AUTO_FS_H
>  
> +#include <linux/types.h>
>  #ifdef __KERNEL__
>  #include <linux/fs.h>
>  #include <linux/limits.h>
> -#include <linux/types.h>
>  #include <linux/ioctl.h>
>  #else
> -#include <asm/types.h>
>  #include <sys/ioctl.h>
>  #endif /* __KERNEL__ */
>  


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

* Re: [RESEND][PATCH 2/2 -tip] headers_check fix: linux/net_dropmon.h
  2009-05-20  4:57 ` [PATCH 2/2 -tip] headers_check fix: linux/net_dropmon.h Jaswinder Singh Rajput
@ 2009-06-01  5:50   ` Jaswinder Singh Rajput
  0 siblings, 0 replies; 6+ messages in thread
From: Jaswinder Singh Rajput @ 2009-06-01  5:50 UTC (permalink / raw)
  To: Ingo Molnar
  Cc: David Miller, Andrew Morton, Sam Ravnborg, x86 maintainers, LKML

On Wed, 2009-05-20 at 10:27 +0530, Jaswinder Singh Rajput wrote:
> fix the following 'make headers_check' warnings:
> 
>   usr/include/linux/net_dropmon.h:7: found __[us]{8,16,32,64} type without #include <linux/types.h>
> 
> Signed-off-by: Jaswinder Singh Rajput <jaswinderrajput@gmail.com>
> ---
>  include/linux/net_dropmon.h |    1 +
>  1 files changed, 1 insertions(+), 0 deletions(-)
> 
> diff --git a/include/linux/net_dropmon.h b/include/linux/net_dropmon.h
> index 0217fb8..0e2e100 100644
> --- a/include/linux/net_dropmon.h
> +++ b/include/linux/net_dropmon.h
> @@ -1,6 +1,7 @@
>  #ifndef __NET_DROPMON_H
>  #define __NET_DROPMON_H
>  
> +#include <linux/types.h>
>  #include <linux/netlink.h>
>  
>  struct net_dm_drop_point {


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

* Re: [PATCH 1/2 -tip] headers_check fix: linux/auto_fs.h
  2009-05-20  4:54 [PATCH 1/2 -tip] headers_check fix: linux/auto_fs.h Jaswinder Singh Rajput
  2009-05-20  4:57 ` [PATCH 2/2 -tip] headers_check fix: linux/net_dropmon.h Jaswinder Singh Rajput
  2009-06-01  5:50 ` [RESEND][PATCH 1/2 -tip] headers_check fix: linux/auto_fs.h Jaswinder Singh Rajput
@ 2009-06-01  6:53 ` Jaswinder Singh Rajput
  2009-06-01  7:14   ` Jaswinder Singh Rajput
  2 siblings, 1 reply; 6+ messages in thread
From: Jaswinder Singh Rajput @ 2009-06-01  6:53 UTC (permalink / raw)
  To: Ingo Molnar
  Cc: Andrew Morton, Sam Ravnborg, x86 maintainers, LKML, Linus Torvalds

On Wed, 2009-05-20 at 10:24 +0530, Jaswinder Singh Rajput wrote:
> fix the following 'make headers_check' warnings:
> 
>   usr/include/linux/auto_fs.h:17: include of <linux/types.h> is preferred over <asm/types.h>
> 
> Signed-off-by: Jaswinder Singh Rajput <jaswinderrajput@gmail.com>
> ---

I prepared headers-check tree and applied these patches on :

git://git.kernel.org/pub/scm/linux/kernel/git/jaswinder/headers-check-2.6.git

I will send headers-check patches to Linus on next merge window.

Thanks,
--
JSR




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

* Re: [PATCH 1/2 -tip] headers_check fix: linux/auto_fs.h
  2009-06-01  6:53 ` [PATCH " Jaswinder Singh Rajput
@ 2009-06-01  7:14   ` Jaswinder Singh Rajput
  0 siblings, 0 replies; 6+ messages in thread
From: Jaswinder Singh Rajput @ 2009-06-01  7:14 UTC (permalink / raw)
  To: Ingo Molnar
  Cc: Andrew Morton, Sam Ravnborg, x86 maintainers, LKML, Linus Torvalds

On Mon, 2009-06-01 at 12:23 +0530, Jaswinder Singh Rajput wrote:
> On Wed, 2009-05-20 at 10:24 +0530, Jaswinder Singh Rajput wrote:
> > fix the following 'make headers_check' warnings:
> > 
> >   usr/include/linux/auto_fs.h:17: include of <linux/types.h> is preferred over <asm/types.h>
> > 
> > Signed-off-by: Jaswinder Singh Rajput <jaswinderrajput@gmail.com>
> > ---
> 
> I prepared headers-check tree and applied these patches on :
> 
> git://git.kernel.org/pub/scm/linux/kernel/git/jaswinder/headers-check-2.6.git
> 
> I will send headers-check patches to Linus on next merge window.
> 

But these are header-check fixes so better I will send these fixes to
Linus.

Thanks,
--
JSR


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

end of thread, other threads:[~2009-06-01  7:15 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-05-20  4:54 [PATCH 1/2 -tip] headers_check fix: linux/auto_fs.h Jaswinder Singh Rajput
2009-05-20  4:57 ` [PATCH 2/2 -tip] headers_check fix: linux/net_dropmon.h Jaswinder Singh Rajput
2009-06-01  5:50   ` [RESEND][PATCH " Jaswinder Singh Rajput
2009-06-01  5:50 ` [RESEND][PATCH 1/2 -tip] headers_check fix: linux/auto_fs.h Jaswinder Singh Rajput
2009-06-01  6:53 ` [PATCH " Jaswinder Singh Rajput
2009-06-01  7:14   ` Jaswinder Singh Rajput

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