aboutsummaryrefslogtreecommitdiff
path: root/include/linux/ip_vs.h
AgeCommit message (Collapse)AuthorFilesLines
2009-11-04net: cleanup include/linuxEric Dumazet1-2/+1
This cleanup patch puts struct/union/enum opening braces, in first line to ease grep games. struct something { becomes : struct something { Signed-off-by: Eric Dumazet <[email protected]> Signed-off-by: David S. Miller <[email protected]>
2009-03-26make most exported headers use strict integer typesArnd Bergmann1-13/+13
This takes care of all files that have only a small number of non-strict integer type uses. Signed-off-by: Arnd Bergmann <[email protected]> Cc: Mauro Carvalho Chehab <[email protected]> Cc: David Airlie <[email protected]> Cc: Arnaldo Carvalho de Melo <[email protected]> Cc: YOSHIFUJI Hideaki <[email protected]> Cc: [email protected] Cc: [email protected] Cc: Jaroslav Kysela <[email protected]> Cc: Takashi Iwai <[email protected]> Cc: David Woodhouse <[email protected]> Signed-off-by: H. Peter Anvin <[email protected]> Signed-off-by: Ingo Molnar <[email protected]>
2008-08-15IPVS: Add genetlink interface definitions to ip_vs.hJulius Volz1-0/+160
Add IPVS Generic Netlink interface definitions to include/linux/ip_vs.h. Signed-off-by: Julius Volz <[email protected]> Signed-off-by: Simon Horman <[email protected]>
2008-07-31ipvs: Move userspace definitions to include/linux/ip_vs.hJulius Volz1-0/+245
Current versions of ipvsadm include "/usr/src/linux/include/net/ip_vs.h" directly. This file also contains kernel-only definitions. Normally, public definitions should live in include/linux, so this patch moves the definitions shared with userspace to a new file, "include/linux/ip_vs.h". This also removes the unused NFC_IPVS_PROPERTY bitmask, which was once used to point into skb->nfcache. To make old ipvsadms still compile with this, the old header file includes the new one. Thanks to Dave Miller and Horms for noting/adding the missing Kbuild entry for the new header file. Signed-off-by: Julius Volz <[email protected]> Acked-by: Simon Horman <[email protected]> Signed-off-by: David S. Miller <[email protected]>