From owner-cvs-src@FreeBSD.ORG Fri Feb 25 16:12:33 2005 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C188416A4CE for ; Fri, 25 Feb 2005 16:12:33 +0000 (GMT) Received: from hydra.bec.de (www.ostsee-abc.de [62.206.222.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5F1A743D49 for ; Fri, 25 Feb 2005 16:12:33 +0000 (GMT) (envelope-from joerg@britannica.bec.de) Received: from britannica.bec.de (unknown [139.30.55.112]) by hydra.bec.de (Postfix) with ESMTP id 498B835707 for ; Fri, 25 Feb 2005 17:12:32 +0100 (CET) Received: by britannica.bec.de (Postfix, from userid 1001) id B6B5DA2; Fri, 25 Feb 2005 17:11:08 +0100 (CET) Date: Fri, 25 Feb 2005 17:11:08 +0100 From: Joerg Sonnenberger To: cvs-src@freebsd.org Message-ID: <20050225161108.GC1562@britannica.bec.de> References: <20050224135254.A8585@odysseus.silby.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.8i Subject: Re: cvs commit: src/sys/kern uipc_mbuf.c src/sys/sys mbuf.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Feb 2005 16:12:33 -0000 On Thu, Feb 24, 2005 at 08:25:27PM +0000, Robert Watson wrote: > @@ -1461,7 +1464,7 @@ > if (m_head == NULL) > break; > > - if (rl_encap(sc, m_head)) > + if (rl_encap(sc, &m_head)) > break; > > /* Pass a copy of this mbuf chain to the bpf subsystem. */ This is a place where it actually works, because the packet is fully dropped and the mbuf was freed already. Joerg