Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753933AbYGSIva (ORCPT ); Sat, 19 Jul 2008 04:51:30 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1751814AbYGSIvU (ORCPT ); Sat, 19 Jul 2008 04:51:20 -0400 Received: from relay.2ka.mipt.ru ([194.85.80.65]:35617 "EHLO 2ka.mipt.ru" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751642AbYGSIvT (ORCPT ); Sat, 19 Jul 2008 04:51:19 -0400 Date: Sat, 19 Jul 2008 12:51:10 +0400 From: Evgeniy Polyakov To: Octavian Purdila Cc: netdev@vger.kernel.org, linux-kernel@vger.kernel.org, axboe@kernel.dk Subject: Re: [PATCH] tcp: do not promote SPLICE_F_NONBLOCK to socket O_NONBLOCK Message-ID: <20080719085110.GA25052@2ka.mipt.ru> References: <200807171633.49791.opurdila@ixiacom.com> <200807182116.43451.opurdila@ixiacom.com> <20080718183549.GA23263@2ka.mipt.ru> <200807182143.38624.opurdila@ixiacom.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200807182143.38624.opurdila@ixiacom.com> User-Agent: Mutt/1.5.9i Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2103 Lines: 45 Hi Octavian. On Fri, Jul 18, 2008 at 09:43:38PM +0300, Octavian Purdila (opurdila@ixiacom.com) wrote: > The flag gets propagated to splice_to_pipe (so there is no need to propagate > the check in skb_splice_bits) but we don't have SPLICE_F_NONBLOCK set, we are > on the blocking usecase. Hmm, than how does it concerns SPLICE_F_NONBLOCK feature change? Your patch does not touch this behaviour. Anyway, in case of not having SPLICE_F_NONBLOCK it does not deadlock, but waits until someone reads from the other side of the pipe. It blocks and expects reader to unblock it. It looks like you have two unexpected independent issues with splice: ability to perform non-blocking reading from the socket into the pipe when SPLICE_F_NONBLOCK is set, and blocking waiting for reader to get data from the pipe when SPLICE_F_NONBLOCK is not set. Is it correct? If so, the former is a feature, which allows to have some progress when receiving queue is empty: one can start getting data from the pipe, i.e. splice data out of the pipe to the different file descriptor. So, this flag means both non-blocking pipe operations _and_ non-blocking receiving from the socket. For the blocking in pipe_wait() when pipe is full and SPLICE_F_NONBLOCK is not set, then it is just a pipe behaviour, which is used as a temporal storage for the requested data. It is not some buffer, which is returned to the userspace when it is full (or indication of it), but a pipe, where you put page pointers, so when pipe is full and opened in blocking mode, writer sleeps waiting or reader to get some data out of it and thus awake writer. It is not a deadlock, but very expected behaviour of the pipe: to block when pipe is full waiting for reader to get data. Hope this will clarify this discussion a bit, so it would not look like talk of blind and deaf :) -- Evgeniy Polyakov -- 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/