From owner-cvs-all@FreeBSD.ORG Sun Sep 26 02:01:27 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 87CDF16A4CE; Sun, 26 Sep 2004 02:01:27 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 664F443D1D; Sun, 26 Sep 2004 02:01:27 +0000 (GMT) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i8Q21RPt060845; Sun, 26 Sep 2004 02:01:27 GMT (envelope-from sam@repoman.freebsd.org) Received: (from sam@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i8Q21Rai060844; Sun, 26 Sep 2004 02:01:27 GMT (envelope-from sam) Message-Id: <200409260201.i8Q21Rai060844@repoman.freebsd.org> From: Sam Leffler Date: Sun, 26 Sep 2004 02:01:27 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netipsec key.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 26 Sep 2004 02:01:27 -0000 sam 2004-09-26 02:01:27 UTC FreeBSD src repository Modified files: sys/netipsec key.c Log: Correct handling of SADB_UPDATE and SADB_ADD requests. key_align may split the mbuf due to use of m_pulldown. Discarding the result because of this does not make sense as no subsequent code depends on the entire msg being linearized (only the individual pieces). It's likely something else is wrong here but for now this appears to get things back to a working state. Submitted by: Roselyn Lee Revision Changes Path 1.17 +0 -5 src/sys/netipsec/key.c