Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/netinet6 fix the sun2 case for real.
details: https://anonhg.NetBSD.org/src/rev/1b29dfdb65ed
branches: trunk
changeset: 748272:1b29dfdb65ed
user: christos <christos%NetBSD.org@localhost>
date: Sun Oct 18 22:57:05 2009 +0000
description:
fix the sun2 case for real.
diffstat:
sys/netinet6/icmp6.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diffs (27 lines):
diff -r d0c14028d198 -r 1b29dfdb65ed sys/netinet6/icmp6.c
--- a/sys/netinet6/icmp6.c Sun Oct 18 22:55:56 2009 +0000
+++ b/sys/netinet6/icmp6.c Sun Oct 18 22:57:05 2009 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: icmp6.c,v 1.154 2009/10/12 22:32:23 christos Exp $ */
+/* $NetBSD: icmp6.c,v 1.155 2009/10/18 22:57:05 christos Exp $ */
/* $KAME: icmp6.c,v 1.217 2001/06/20 15:03:29 jinmei Exp $ */
/*
@@ -62,7 +62,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: icmp6.c,v 1.154 2009/10/12 22:32:23 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: icmp6.c,v 1.155 2009/10/18 22:57:05 christos Exp $");
#include "opt_inet.h"
#include "opt_ipsec.h"
@@ -2383,7 +2383,7 @@
MGETHDR(m, M_DONTWAIT, MT_HEADER);
if (m && IPV6_MMTU >= MHLEN) {
#if IPV6_MMTU >= MCLBYTES
- _MCLGET(m, &mclpool_cache, IPV6_MMTU, M_DONTWAIT);
+ _MCLGET(m, mcl_cache, IPV6_MMTU, M_DONTWAIT);
#else
MCLGET(m, M_DONTWAIT);
#endif
Home |
Main Index |
Thread Index |
Old Index