From owner-svn-src-user@FreeBSD.ORG Tue Oct 30 11:44:15 2012 Return-Path: Delivered-To: svn-src-user@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BA729EBD; Tue, 30 Oct 2012 11:44:15 +0000 (UTC) (envelope-from glebius@FreeBSD.org) Received: from cell.glebius.int.ru (glebius.int.ru [81.19.64.117]) by mx1.freebsd.org (Postfix) with ESMTP id 355CA8FC08; Tue, 30 Oct 2012 11:44:15 +0000 (UTC) Received: from cell.glebius.int.ru (localhost [127.0.0.1]) by cell.glebius.int.ru (8.14.5/8.14.5) with ESMTP id q9UBiDWH037058; Tue, 30 Oct 2012 15:44:13 +0400 (MSK) (envelope-from glebius@FreeBSD.org) Received: (from glebius@localhost) by cell.glebius.int.ru (8.14.5/8.14.5/Submit) id q9UBiDDx037057; Tue, 30 Oct 2012 15:44:13 +0400 (MSK) (envelope-from glebius@FreeBSD.org) X-Authentication-Warning: cell.glebius.int.ru: glebius set sender to glebius@FreeBSD.org using -f Date: Tue, 30 Oct 2012 15:44:13 +0400 From: Gleb Smirnoff To: Andre Oppermann Subject: Re: svn commit: r242355 - user/andre/tcp_workqueue/sys/sys Message-ID: <20121030114413.GC70741@FreeBSD.org> References: <201210301133.q9UBXlke080637@svn.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline In-Reply-To: <201210301133.q9UBXlke080637@svn.freebsd.org> User-Agent: Mutt/1.5.21 (2010-09-15) Cc: src-committers@FreeBSD.org, svn-src-user@FreeBSD.org X-BeenThere: svn-src-user@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the experimental " user" src tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Oct 2012 11:44:15 -0000 On Tue, Oct 30, 2012 at 11:33:47AM +0000, Andre Oppermann wrote: A> Author: andre A> Date: Tue Oct 30 11:33:47 2012 A> New Revision: 242355 A> URL: http://svn.freebsd.org/changeset/base/242355 A> A> Log: A> Add define for CSUM_UFO which is UDP checksum offload. A> Spell out TSO as TCP segmentation offload. A> A> Modified: A> user/andre/tcp_workqueue/sys/sys/mbuf.h A> A> Modified: user/andre/tcp_workqueue/sys/sys/mbuf.h A> ============================================================================== A> --- user/andre/tcp_workqueue/sys/sys/mbuf.h Tue Oct 30 11:15:36 2012 (r242354) A> +++ user/andre/tcp_workqueue/sys/sys/mbuf.h Tue Oct 30 11:33:47 2012 (r242355) A> @@ -280,8 +280,8 @@ struct mbuf { A> #define CSUM_TCP 0x0002 /* will csum TCP */ A> #define CSUM_UDP 0x0004 /* will csum UDP */ A> #define CSUM_IPFRAG 0x0008 /* IP fragmentation offload */ A> -/* 0x0010 */ A> -#define CSUM_TSO 0x0020 /* will do TSO */ A> +#define CSUM_UFO 0x0010 /* UDP fragmentation offload */ So does it mean fragmentation as in comment or checksum as in commit log? A> +#define CSUM_TSO 0x0020 /* TCP segmentation offliad */ Typo in last word in comment. A> #define CSUM_SCTP 0x0040 /* will csum SCTP */ A> #define CSUM_SCTP_IPV6 0x0080 /* will csum IPv6/SCTP */ A> -- Totus tuus, Glebius.