diff options
author | Arnd Bergmann <arnd@arndb.de> | 2009-02-25 18:51:40 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-03-26 13:14:15 -0400 |
commit | 9adfbfb611307060db54691bc7e6d53fdc12312b (patch) | |
tree | 35d2fb021c0a4e8d2980af114363bff714301aae /include/linux/selinux_netlink.h | |
parent | 85efde6f4e0de9577256c5f0030088d3fd4347c1 (diff) |
make most exported headers use strict integer types
This takes care of all files that have only a small number
of non-strict integer type uses.
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Cc: Mauro Carvalho Chehab <mchehab@redhat.com>
Cc: David Airlie <airlied@linux.ie>
Cc: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Cc: YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org>
Cc: netdev@vger.kernel.org
Cc: linux-ppp@vger.kernel.org
Cc: Jaroslav Kysela <perex@perex.cz>
Cc: Takashi Iwai <tiwai@suse.de>
Cc: David Woodhouse <dwmw2@infradead.org>
Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'include/linux/selinux_netlink.h')
-rw-r--r-- | include/linux/selinux_netlink.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/include/linux/selinux_netlink.h b/include/linux/selinux_netlink.h index bbf489decd84..d239797785cf 100644 --- a/include/linux/selinux_netlink.h +++ b/include/linux/selinux_netlink.h | |||
@@ -12,6 +12,8 @@ | |||
12 | #ifndef _LINUX_SELINUX_NETLINK_H | 12 | #ifndef _LINUX_SELINUX_NETLINK_H |
13 | #define _LINUX_SELINUX_NETLINK_H | 13 | #define _LINUX_SELINUX_NETLINK_H |
14 | 14 | ||
15 | #include <linux/types.h> | ||
16 | |||
15 | /* Message types. */ | 17 | /* Message types. */ |
16 | #define SELNL_MSG_BASE 0x10 | 18 | #define SELNL_MSG_BASE 0x10 |
17 | enum { | 19 | enum { |
@@ -38,11 +40,11 @@ enum selinux_nlgroups { | |||
38 | 40 | ||
39 | /* Message structures */ | 41 | /* Message structures */ |
40 | struct selnl_msg_setenforce { | 42 | struct selnl_msg_setenforce { |
41 | int32_t val; | 43 | __s32 val; |
42 | }; | 44 | }; |
43 | 45 | ||
44 | struct selnl_msg_policyload { | 46 | struct selnl_msg_policyload { |
45 | u_int32_t seqno; | 47 | __u32 seqno; |
46 | }; | 48 | }; |
47 | 49 | ||
48 | #endif /* _LINUX_SELINUX_NETLINK_H */ | 50 | #endif /* _LINUX_SELINUX_NETLINK_H */ |