Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. =================================================================== RCS file: /ftp/cvs/cvsroot/src/sys/netinet/raw_ip.c,v rcsdiff: /ftp/cvs/cvsroot/src/sys/netinet/raw_ip.c,v: warning: Unknown phrases like `commitid ...;' are present. retrieving revision 1.96.2.1 retrieving revision 1.99 diff -u -p -r1.96.2.1 -r1.99 --- src/sys/netinet/raw_ip.c 2007/06/08 14:17:47 1.96.2.1 +++ src/sys/netinet/raw_ip.c 2007/09/02 07:18:55 1.99 @@ -1,4 +1,4 @@ -/* $NetBSD: raw_ip.c,v 1.96.2.1 2007/06/08 14:17:47 ad Exp $ */ +/* $NetBSD: raw_ip.c,v 1.99 2007/09/02 07:18:55 dyoung Exp $ */ /* * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project. @@ -61,7 +61,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: raw_ip.c,v 1.96.2.1 2007/06/08 14:17:47 ad Exp $"); +__KERNEL_RCSID(0, "$NetBSD: raw_ip.c,v 1.99 2007/09/02 07:18:55 dyoung Exp $"); #include "opt_inet.h" #include "opt_ipsec.h" @@ -184,7 +184,7 @@ rip_input(struct mbuf *m, ...) /* do not inject data to pcb */ } #endif /*IPSEC*/ - else if ((n = m_copy(m, 0, M_COPYALL)) != NULL) { + else if ((n = m_copypacket(m, M_DONTWAIT)) != NULL) { if (last->inp_flags & INP_CONTROLOPTS || last->inp_socket->so_options & SO_TIMESTAMP) ip_savecontrol(last, &opts, ip, n);