Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755149AbZAGEnA (ORCPT ); Tue, 6 Jan 2009 23:43:00 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1756795AbZAGEmp (ORCPT ); Tue, 6 Jan 2009 23:42:45 -0500 Received: from rhun.apana.org.au ([64.62.148.172]:35942 "EHLO arnor.apana.org.au" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1754649AbZAGEmo (ORCPT ); Tue, 6 Jan 2009 23:42:44 -0500 Date: Wed, 7 Jan 2009 15:42:32 +1100 From: Herbert Xu To: Jens Axboe Cc: Evgeniy Polyakov , Willy Tarreau , linux-kernel@vger.kernel.org, netdev@vger.kernel.org Subject: Re: Data corruption issue with splice() on 2.6.27.10 Message-ID: <20090107044232.GA22218@gondor.apana.org.au> References: <20081224152841.GB13113@1wt.eu> <20090106183223.GA11964@ioremap.net> <20090106183704.GC32491@kernel.dk> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20090106183704.GC32491@kernel.dk> User-Agent: Mutt/1.5.18 (2008-05-17) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1400 Lines: 33 On Tue, Jan 06, 2009 at 06:37:05PM +0000, Jens Axboe wrote: > > I'll give this a spin tomorrow as well. A hunch tells me that this is > likely a page reuse issue, that splice is getting the reference to the > buffer dropped before the data has really been transmitted. IOW, the > page is likely fine reaching the ->sendpage() bit, but will be reused > before the data has actually been transmitted. So once you get that far, > other random data from that page is going out. I see the problem. The socket pipes in net/core/skbuff.c use references on the skb to hold down the memory in skb->head as well as the pages in the skb. Unfortunately, once the pipe is fed into sendpage we only use page reference counting to pin down the memory. So as soon as sendpage returns we drop the ref count on the skb, thus freeing the memory in skb->head, which is yet to be transmitted. Moral: Using page reference counts on skb->head is wrong. Cheers, -- Visit Openswan at http://www.openswan.org/ Email: Herbert Xu ~{PmV>HI~} Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/