diff options
| author | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-08-27 18:06:01 -0400 |
|---|---|---|
| committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-08-27 18:06:01 -0400 |
| commit | 28d9aa613daa65b295a099a8433df97de1c56a2f (patch) | |
| tree | 8e7bf451f3390b926787d410c8d5df0454cbf16b /include/linux | |
| parent | d243769d3f83b318813a04a9592bb7cfedc6c280 (diff) | |
| parent | 10e2ff1c39e6d829379c7c5bb8f1c8f512f257c8 (diff) | |
Merge branch 'master' of master.kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6
* 'master' of master.kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6:
[NET]: Mark Paul Moore as maintainer of labelled networking.
[VLAN/BRIDGE]: Fix "skb_pull_rcsum - Fatal exception in interrupt"
[ISDN]: Get rid of some pointless allocation casts in common and bsd comp.
[NET]: Avoid pointless allocation casts in BSD compression module
[IRDA]: Do not do pointless kmalloc return value cast in KingSun driver
[NET]: Fix crash in dev_mc_sync()/dev_mc_unsync()
[PPPOL2TP]: Fix endianness annotations.
[IOAT]: ioatdma needs to to play nice in a multi-dma-client world
[SLIP]: trivial sparse warning fix
[EQL]: sparse warning fix
[NET]: is_power_of_2 in net/core/neighbour.c
[TCP]: Describe tcp_init_cwnd() thoroughly in a comment.
[NET]: Fix IP_ADD/DROP_MEMBERSHIP to handle only connectionless
[KBUILD]: Sanitize tc_ematch headers.
[IPSEC] AH4: Update IPv4 options handling to conform to RFC 4302.
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/Kbuild | 1 | ||||
| -rw-r--r-- | include/linux/if_pppol2tp.h | 4 |
2 files changed, 3 insertions, 2 deletions
diff --git a/include/linux/Kbuild b/include/linux/Kbuild index ad7f71a81b0a..818cc3a50e6b 100644 --- a/include/linux/Kbuild +++ b/include/linux/Kbuild | |||
| @@ -7,6 +7,7 @@ header-y += raid/ | |||
| 7 | header-y += spi/ | 7 | header-y += spi/ |
| 8 | header-y += sunrpc/ | 8 | header-y += sunrpc/ |
| 9 | header-y += tc_act/ | 9 | header-y += tc_act/ |
| 10 | header-y += tc_ematch/ | ||
| 10 | header-y += netfilter/ | 11 | header-y += netfilter/ |
| 11 | header-y += netfilter_arp/ | 12 | header-y += netfilter_arp/ |
| 12 | header-y += netfilter_bridge/ | 13 | header-y += netfilter_bridge/ |
diff --git a/include/linux/if_pppol2tp.h b/include/linux/if_pppol2tp.h index 516203b6fdeb..a7d6a2234b31 100644 --- a/include/linux/if_pppol2tp.h +++ b/include/linux/if_pppol2tp.h | |||
| @@ -32,8 +32,8 @@ struct pppol2tp_addr | |||
| 32 | 32 | ||
| 33 | struct sockaddr_in addr; /* IP address and port to send to */ | 33 | struct sockaddr_in addr; /* IP address and port to send to */ |
| 34 | 34 | ||
| 35 | __be16 s_tunnel, s_session; /* For matching incoming packets */ | 35 | __u16 s_tunnel, s_session; /* For matching incoming packets */ |
| 36 | __be16 d_tunnel, d_session; /* For sending outgoing packets */ | 36 | __u16 d_tunnel, d_session; /* For sending outgoing packets */ |
| 37 | }; | 37 | }; |
| 38 | 38 | ||
| 39 | /* Socket options: | 39 | /* Socket options: |
