From owner-p4-projects@FreeBSD.ORG Sat Oct 6 22:22:23 2007 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 9F68116A41A; Sat, 6 Oct 2007 22:22:22 +0000 (UTC) Delivered-To: perforce@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5676216A417 for ; Sat, 6 Oct 2007 22:22:22 +0000 (UTC) (envelope-from zec@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 47B6213C45A for ; Sat, 6 Oct 2007 22:22:22 +0000 (UTC) (envelope-from zec@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l96MMMKX044736 for ; Sat, 6 Oct 2007 22:22:22 GMT (envelope-from zec@FreeBSD.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l96MMM7U044733 for perforce@freebsd.org; Sat, 6 Oct 2007 22:22:22 GMT (envelope-from zec@FreeBSD.org) Date: Sat, 6 Oct 2007 22:22:22 GMT Message-Id: <200710062222.l96MMM7U044733@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: perforce set sender to zec@FreeBSD.org using -f From: Marko Zec To: Perforce Change Reviews Cc: Subject: PERFORCE change 127267 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 06 Oct 2007 22:22:23 -0000 http://perforce.freebsd.org/chv.cgi?CH=127267 Change 127267 by zec@zec_tpx32 on 2007/10/06 22:21:31 Change the M_REMOTE_VNET mbuf flag so that it won't collide with the newly introduced M_NOFREE flag in -HEAD on next IFC. Apparently we are running out of bits in mbuf flags... Affected files ... .. //depot/projects/vimage/src/sys/sys/mbuf.h#8 edit Differences ... ==== //depot/projects/vimage/src/sys/sys/mbuf.h#8 (text+ko) ==== @@ -192,7 +192,7 @@ #define M_LASTFRAG 0x2000 /* packet is last fragment */ #define M_VLANTAG 0x10000 /* ether_vtag is valid */ #define M_PROMISC 0x20000 /* packet was not for us */ -#define M_REMOTE_VNET 0x40000 /* mbuf crossed boundary between two vnets */ +#define M_REMOTE_VNET 0x80000 /* mbuf crossed boundary between two vnets */ /* * External buffer types: identify ext_buf type.