diff options
| author | Linus Torvalds <torvalds@g5.osdl.org> | 2006-09-18 19:16:05 -0400 |
|---|---|---|
| committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-09-18 19:16:05 -0400 |
| commit | 1d19f176a2884d31c4fe2c7018349ff884a819b1 (patch) | |
| tree | f0f02160cb954d3d7bd4417548ca997f0a88fd45 /net/ipv6/icmp.c | |
| parent | 20bf94e266969f91c623ed8b51da4109e3f57bcb (diff) | |
| parent | fe26109a9dfd9327fdbe630fc819e1b7450986b2 (diff) | |
Merge master.kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6
* master.kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6:
[ATM] CLIP: Do not refer freed skbuff in clip_mkip().
[NET]: Drop tx lock in dev_watchdog_up
[PACKET]: Don't truncate non-linear skbs with mmaped IO
[NET]: Mark frame diverter for future removal.
[NETFILTER]: Add secmark headers to header-y
[ATM]: linux-atm-general mailing list is subscribers only
[ATM]: [he] when transmit fails, unmap the dma regions
[TCP] tcp-lp: update information to MAINTAINERS
[TCP] tcp-lp: bug fix for oops in 2.6.18-rc6
[BRIDGE]: random extra bytes on STP TCN packet
[IPV6]: Accept -1 for IPV6_TCLASS
[IPV6]: Fix tclass setting for raw sockets.
[IPVS]: remove the debug option go ip_vs_ftp
[IPVS]: Make sure ip_vs_ftp ports are valid
[IPVS]: auto-help for ip_vs_ftp
[IPVS]: Document the ports option to ip_vs_ftp in kernel-parameters.txt
[TCP]: Turn ABC off.
[NEIGH]: neigh_table_clear() doesn't free stats
Diffstat (limited to 'net/ipv6/icmp.c')
| -rw-r--r-- | net/ipv6/icmp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/ipv6/icmp.c b/net/ipv6/icmp.c index 3d6e9a351150..356a8a7ef22a 100644 --- a/net/ipv6/icmp.c +++ b/net/ipv6/icmp.c | |||
| @@ -401,7 +401,7 @@ void icmpv6_send(struct sk_buff *skb, int type, int code, __u32 info, | |||
| 401 | if (hlimit < 0) | 401 | if (hlimit < 0) |
| 402 | hlimit = ipv6_get_hoplimit(dst->dev); | 402 | hlimit = ipv6_get_hoplimit(dst->dev); |
| 403 | 403 | ||
| 404 | tclass = np->cork.tclass; | 404 | tclass = np->tclass; |
| 405 | if (tclass < 0) | 405 | if (tclass < 0) |
| 406 | tclass = 0; | 406 | tclass = 0; |
| 407 | 407 | ||
| @@ -497,7 +497,7 @@ static void icmpv6_echo_reply(struct sk_buff *skb) | |||
| 497 | if (hlimit < 0) | 497 | if (hlimit < 0) |
| 498 | hlimit = ipv6_get_hoplimit(dst->dev); | 498 | hlimit = ipv6_get_hoplimit(dst->dev); |
| 499 | 499 | ||
| 500 | tclass = np->cork.tclass; | 500 | tclass = np->tclass; |
| 501 | if (tclass < 0) | 501 | if (tclass < 0) |
| 502 | tclass = 0; | 502 | tclass = 0; |
| 503 | 503 | ||
