[PATCH] resource: fix userspace warning

From: Sam Ravnborg
Date: Sun Aug 15 2010 - 16:19:39 EST


"make headers_check" gave following warning:

CHECK include/linux (364 files)
include/linux/resource.h:49: found __[us]{8,16,32,64} type without #include <linux/types.h>

The warning started to appear after rlimit64 structure was added.
The rlimit64 structure uses the correct types for export, but the
patch failed to include linux/types.h - thus the warning.

But include/linux/resource.h contains a _lot_ of native types,
which size may vary dependent on the architecture.

It would be good if all uses of native types could be
repalced by the intended exportable types.

Signed-off-by: Sam Ravnborg <sam@xxxxxxxxxxxx>
Cc: Jiri Slaby <jslaby@xxxxxxx>
---

Sam

diff --git a/include/linux/resource.h b/include/linux/resource.h
index 88d36f9..d01c96c 100644
--- a/include/linux/resource.h
+++ b/include/linux/resource.h
@@ -2,6 +2,7 @@
#define _LINUX_RESOURCE_H

#include <linux/time.h>
+#include <linux/types.h>

/*
* Resource control/accounting header file for linux
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/