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/kern/uipc_socket.c,v retrieving revision 1.111.2.10 retrieving revision 1.111.2.11 diff -u -p -r1.111.2.10 -r1.111.2.11 --- src/sys/kern/uipc_socket.c 2007/12/07 17:33:17 1.111.2.10 +++ src/sys/kern/uipc_socket.c 2008/01/21 09:46:30 1.111.2.11 @@ -1,4 +1,4 @@ -/* $NetBSD: uipc_socket.c,v 1.111.2.10 2007/12/07 17:33:17 yamt Exp $ */ +/* $NetBSD: uipc_socket.c,v 1.111.2.11 2008/01/21 09:46:30 yamt Exp $ */ /*- * Copyright (c) 2002, 2007 The NetBSD Foundation, Inc. @@ -68,7 +68,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: uipc_socket.c,v 1.111.2.10 2007/12/07 17:33:17 yamt Exp $"); +__KERNEL_RCSID(0, "$NetBSD: uipc_socket.c,v 1.111.2.11 2008/01/21 09:46:30 yamt Exp $"); #include "opt_sock_counters.h" #include "opt_sosend_loan.h" @@ -578,13 +578,13 @@ sobind(struct socket *so, struct mbuf *n } int -solisten(struct socket *so, int backlog) +solisten(struct socket *so, int backlog, struct lwp *l) { int s, error; s = splsoftnet(); error = (*so->so_proto->pr_usrreq)(so, PRU_LISTEN, NULL, - NULL, NULL, NULL); + NULL, NULL, l); if (error != 0) { splx(s); return error;