From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752639AbbJFO0v (ORCPT ); Tue, 6 Oct 2015 10:26:51 -0400 Received: from mx1.redhat.com ([209.132.183.28]:51686 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751812AbbJFO0t (ORCPT ); Tue, 6 Oct 2015 10:26:49 -0400 Date: Tue, 6 Oct 2015 10:26:48 -0400 (EDT) From: Mikulas Patocka X-X-Sender: mpatocka@file01.intranet.prod.int.rdu2.redhat.com To: Mike Snitzer cc: Jens Axboe , Kent Overstreet , "Alasdair G. Kergon" , linux-kernel@vger.kernel.org, dm-devel@redhat.com Subject: Re: block: flush queued bios when the process blocks In-Reply-To: <20151006134753.GA30555@redhat.com> Message-ID: References: <5384AA79.4010206@kernel.dk> <5384B26D.1000703@kernel.dk> <5384CE82.90601@kernel.dk> <20151005205943.GB25762@redhat.com> <20151006134753.GA30555@redhat.com> User-Agent: Alpine 2.02 (LRH 1266 2009-07-14) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, 6 Oct 2015, Mike Snitzer wrote: > On Tue, Oct 06 2015 at 9:28am -0400, > Mikulas Patocka wrote: > > > > > > > On Mon, 5 Oct 2015, Mike Snitzer wrote: > > > > > Mikulas, > > > > > > Could it be that cond_resched() wasn't unplugging? As was > > > recently raised in this thread: https://lkml.org/lkml/2015/9/18/378 > > > Chris Mason's patch from that thread fixed this issue... I _think_ Linus > > > has since committed Chris' work but I haven't kept my finger on the > > > pulse of that issue. > > > > I think it doesn't matter (regarding correctness) if cond_reched unplugs > > on not. If it didn't unplug, the process will be scheduled later, and it > > will eventually reach the point where it unplugs. > > Couldn't the original deadlock you fixed (as described in your first > patch) manifest when a new process is scheduled? A process rescheduled with cond_reched is not stuck, it will be run later. It may contribute to increased request latency, but it can't contribute to a deadlock. Mikulas