From owner-svn-src-all@FreeBSD.ORG Thu Nov 1 07:07:13 2012 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 67853D3D; Thu, 1 Nov 2012 07:07:13 +0000 (UTC) (envelope-from pyunyh@gmail.com) Received: from mail-pb0-f54.google.com (mail-pb0-f54.google.com [209.85.160.54]) by mx1.freebsd.org (Postfix) with ESMTP id 1A2AF8FC08; Thu, 1 Nov 2012 07:07:12 +0000 (UTC) Received: by mail-pb0-f54.google.com with SMTP id rp8so1643311pbb.13 for ; Thu, 01 Nov 2012 00:07:12 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:date:to:cc:subject:message-id:reply-to:references:mime-version :content-type:content-disposition:in-reply-to:user-agent; bh=XbYvdjvkk/Dkud9PW7SArXYhOXgH1Enc5wDCiJ9kpx8=; b=jgQVPwBG48Vf7v1XtyNmPCBwfq4G7VA5tVaI5QMZ02DK5QCG9CrZz7ZbsMFwhLz4uK z06jVrxtq+FYqtUt9qsSMpsDaevNLntmUs6r0aTP7OVFoN+eFjjF5dxy5CmVbG9uAm14 WvTUgmj38iwg4NyvRElA9GXdtpxSMQF27UjxExW96IFOl9x8ZlyaeXUhQazElM8hMGoO d8zBk9S8jbFF/W35SNBI+6kHrGFPFUdrit0vpuGc4NYYrxlHzXUwpy3yMTN6tl2/XKjl kvTCfBHxnMp/ITmDuM/SqjfJz7w4f441X04r+d2VSwFa/SatLhEsKR+QKrHWT+Z0iFWH 2qKA== Received: by 10.68.191.200 with SMTP id ha8mr37957087pbc.51.1351753632640; Thu, 01 Nov 2012 00:07:12 -0700 (PDT) Received: from pyunyh@gmail.com (lpe4.p59-icn.cdngp.net. [114.111.62.249]) by mx.google.com with ESMTPS id lb3sm3578255pbc.73.2012.11.01.00.07.09 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 01 Nov 2012 00:07:11 -0700 (PDT) Received: by pyunyh@gmail.com (sSMTP sendmail emulation); Thu, 01 Nov 2012 16:06:42 +0900 From: YongHyeon PYUN Date: Thu, 1 Nov 2012 16:06:42 +0900 To: Adrian Chadd Subject: Re: svn commit: r242425 - head/sys/dev/ti Message-ID: <20121101070642.GB1545@michelle.cdnetworks.com> References: <201211010539.qA15dLjs026526@svn.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4.2.3i Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org, Pyun YongHyeon X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: pyunyh@gmail.com List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 01 Nov 2012 07:07:13 -0000 On Wed, Oct 31, 2012 at 11:16:43PM -0700, Adrian Chadd wrote: > so where'd this happen? interleaved TX nowdays via if_transmit() ? > if_output after fragmentation. > > > Adrian > > On 31 October 2012 22:39, Pyun YongHyeon wrote: > > Author: yongari > > Date: Thu Nov 1 05:39:21 2012 > > New Revision: 242425 > > URL: http://svn.freebsd.org/changeset/base/242425 > > > > Log: > > Remove TCP/UDP checksum offloading feature for IP fragmented > > datagrams. Traditionally upper stack fragmented packets without > > computing TCP/UDP checksum and these datagrams were passed to > > driver. But there are chances that other packets slip into the > > interface queue in SMP world. If this happens firmware running on > > MIPS 4000 processor in the controller would see mixed packets and > > it shall send out corrupted packets. > > While I'm here simplify checksum offloading setup.