From owner-svn-src-user@FreeBSD.ORG Tue Oct 30 12:00:46 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 53BA57D9 for ; Tue, 30 Oct 2012 12:00:46 +0000 (UTC) (envelope-from andre@freebsd.org) Received: from c00l3r.networx.ch (c00l3r.networx.ch [62.48.2.2]) by mx1.freebsd.org (Postfix) with ESMTP id A3F168FC14 for ; Tue, 30 Oct 2012 12:00:45 +0000 (UTC) Received: (qmail 54827 invoked from network); 30 Oct 2012 13:37:29 -0000 Received: from c00l3r.networx.ch (HELO [127.0.0.1]) ([62.48.2.2]) (envelope-sender ) by c00l3r.networx.ch (qmail-ldap-1.03) with SMTP for ; 30 Oct 2012 13:37:29 -0000 Message-ID: <508FC169.9050208@freebsd.org> Date: Tue, 30 Oct 2012 13:00:41 +0100 From: Andre Oppermann User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:16.0) Gecko/20121010 Thunderbird/16.0.1 MIME-Version: 1.0 To: Gleb Smirnoff Subject: Re: svn commit: r242355 - user/andre/tcp_workqueue/sys/sys References: <201210301133.q9UBXlke080637@svn.freebsd.org> <20121030114413.GC70741@FreeBSD.org> In-Reply-To: <20121030114413.GC70741@FreeBSD.org> Content-Type: text/plain; charset=KOI8-R; format=flowed Content-Transfer-Encoding: 7bit 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 12:00:46 -0000 On 30.10.2012 12:44, Gleb Smirnoff wrote: > 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? Fragmentation as in comment. Commit message is wrong. > A> +#define CSUM_TSO 0x0020 /* TCP segmentation offliad */ > > Typo in last word in comment. Oops. Thanks. > A> #define CSUM_SCTP 0x0040 /* will csum SCTP */ > A> #define CSUM_SCTP_IPV6 0x0080 /* will csum IPv6/SCTP */ > A> -- Andre