diff options
author | Sam Ravnborg <sam@ravnborg.org> | 2010-08-15 10:03:57 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-08-18 23:34:26 -0700 |
commit | e243f5b6de35b6fc394bc2e1e1737afe538e7e0c (patch) | |
tree | fac660342a3ceb80099e2cb39ead0465c5530312 | |
parent | a49f37eed22b74221f271811ea41323654e40dad (diff) | |
download | linux-3.10-e243f5b6de35b6fc394bc2e1e1737afe538e7e0c.tar.gz linux-3.10-e243f5b6de35b6fc394bc2e1e1737afe538e7e0c.tar.bz2 linux-3.10-e243f5b6de35b6fc394bc2e1e1737afe538e7e0c.zip |
netfilter: fix userspace header warning
"make headers_check" issued the following warning:
CHECK include/linux/netfilter (64 files)
usr/include/linux/netfilter/xt_ipvs.h:19: found __[us]{8,16,32,64} type without #include <linux/types.h>
Fix this by as suggested including linux/types.h.
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | include/linux/netfilter/xt_ipvs.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/netfilter/xt_ipvs.h b/include/linux/netfilter/xt_ipvs.h index 1167aeb7a34..eff34ac1880 100644 --- a/include/linux/netfilter/xt_ipvs.h +++ b/include/linux/netfilter/xt_ipvs.h @@ -1,6 +1,8 @@ #ifndef _XT_IPVS_H #define _XT_IPVS_H +#include <linux/types.h> + enum { XT_IPVS_IPVS_PROPERTY = 1 << 0, /* all other options imply this one */ XT_IPVS_PROTO = 1 << 1, |