From owner-svn-src-user@FreeBSD.ORG Tue Oct 30 11:42:10 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 39F3DBB1; Tue, 30 Oct 2012 11:42:10 +0000 (UTC) (envelope-from andre@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id DF1798FC31; Tue, 30 Oct 2012 11:33:47 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q9UBXlAs080639; Tue, 30 Oct 2012 11:33:47 GMT (envelope-from andre@svn.freebsd.org) Received: (from andre@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9UBXlke080637; Tue, 30 Oct 2012 11:33:47 GMT (envelope-from andre@svn.freebsd.org) Message-Id: <201210301133.q9UBXlke080637@svn.freebsd.org> From: Andre Oppermann Date: Tue, 30 Oct 2012 11:33:47 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org Subject: svn commit: r242355 - user/andre/tcp_workqueue/sys/sys X-SVN-Group: user MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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:42:10 -0000 Author: andre Date: Tue Oct 30 11:33:47 2012 New Revision: 242355 URL: http://svn.freebsd.org/changeset/base/242355 Log: Add define for CSUM_UFO which is UDP checksum offload. Spell out TSO as TCP segmentation offload. Modified: user/andre/tcp_workqueue/sys/sys/mbuf.h Modified: user/andre/tcp_workqueue/sys/sys/mbuf.h ============================================================================== --- user/andre/tcp_workqueue/sys/sys/mbuf.h Tue Oct 30 11:15:36 2012 (r242354) +++ user/andre/tcp_workqueue/sys/sys/mbuf.h Tue Oct 30 11:33:47 2012 (r242355) @@ -280,8 +280,8 @@ struct mbuf { #define CSUM_TCP 0x0002 /* will csum TCP */ #define CSUM_UDP 0x0004 /* will csum UDP */ #define CSUM_IPFRAG 0x0008 /* IP fragmentation offload */ -/* 0x0010 */ -#define CSUM_TSO 0x0020 /* will do TSO */ +#define CSUM_UFO 0x0010 /* UDP fragmentation offload */ +#define CSUM_TSO 0x0020 /* TCP segmentation offliad */ #define CSUM_SCTP 0x0040 /* will csum SCTP */ #define CSUM_SCTP_IPV6 0x0080 /* will csum IPv6/SCTP */