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/ip_input.c,v retrieving revision 1.284 retrieving revision 1.285 diff -u -p -r1.284 -r1.285 --- src/sys/netinet/ip_input.c 2009/09/16 15:23:05 1.284 +++ src/sys/netinet/ip_input.c 2010/03/31 07:31:15 1.285 @@ -1,4 +1,4 @@ -/* $NetBSD: ip_input.c,v 1.284 2009/09/16 15:23:05 pooka Exp $ */ +/* $NetBSD: ip_input.c,v 1.285 2010/03/31 07:31:15 tls Exp $ */ /* * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project. @@ -91,7 +91,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: ip_input.c,v 1.284 2009/09/16 15:23:05 pooka Exp $"); +__KERNEL_RCSID(0, "$NetBSD: ip_input.c,v 1.285 2010/03/31 07:31:15 tls Exp $"); #include "opt_inet.h" #include "opt_compat_netbsd.h" @@ -483,7 +483,9 @@ ipintr(void) splx(s); if (m == NULL) break; + KERNEL_UNLOCK_ONE(NULL); ip_input(m); + KERNEL_LOCK(1, NULL); } KERNEL_UNLOCK_ONE(NULL); mutex_exit(softnet_lock);