Return-Path: Received: from mx2.suse.de ([195.135.220.15]:34124 "EHLO mx1.suse.de" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1726602AbeLJSAA (ORCPT ); Mon, 10 Dec 2018 13:00:00 -0500 Date: Mon, 10 Dec 2018 18:59:56 +0100 From: Michal Hocko To: Liu Bo Cc: Dave Chinner , Jan Kara , linux-ext4@vger.kernel.org, linux-fsdevel@vger.kernel.org, linux-xfs@vger.kernel.org, linux-mm@kvack.org Subject: Re: [PATCH RFC] Ext4: fix deadlock on dirty pages between fault and writeback Message-ID: <20181210175956.GW1286@dhcp22.suse.cz> References: <20181128201122.r4sec265cnlxgj2x@US-160370MP2.local> <20181129085238.GD31087@quack2.suse.cz> <20181129120253.GR6311@dastard> <20181129130002.GM31087@quack2.suse.cz> <20181129204019.GS6311@dastard> <20181205170656.GJ30615@quack2.suse.cz> <20181207052051.GB6311@dastard> <20181207071615.GO1286@dhcp22.suse.cz> <20181207112036.GA1286@dhcp22.suse.cz> <20181207185102.2chvdfqwav5z6b7j@US-160370MP2.local> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20181207185102.2chvdfqwav5z6b7j@US-160370MP2.local> Sender: linux-ext4-owner@vger.kernel.org List-ID: On Fri 07-12-18 10:51:04, Liu Bo wrote: > On Fri, Dec 07, 2018 at 12:20:36PM +0100, Michal Hocko wrote: > > On Fri 07-12-18 08:16:15, Michal Hocko wrote: > > [...] > > > Memcg v1 indeed doesn't have any dirty IO throttling and this is a > > > poor's man workaround. We still do not have that AFAIK and I do not know > > > of an elegant way around that. Fortunatelly we shouldn't have that many > > > GFP_KERNEL | __GFP_ACCOUNT allocations under page lock and we can work > > > around this specific one quite easily. I haven't tested this yet but the > > > following should work > > > > > > diff --git a/mm/memory.c b/mm/memory.c > > > index 4ad2d293ddc2..59c98eeb0260 100644 > > > --- a/mm/memory.c > > > +++ b/mm/memory.c > > > @@ -2993,6 +2993,16 @@ static vm_fault_t __do_fault(struct vm_fault *vmf) > > > struct vm_area_struct *vma = vmf->vma; > > > vm_fault_t ret; > > > > > > + /* > > > + * Preallocate pte before we take page_lock because this might lead to > > > + * deadlocks for memcg reclaim which waits for pages under writeback. > > > + */ > > > + if (!vmf->prealloc_pte) { > > > + vmf->prealloc_pte = pte_alloc_one(vmf->vma->vm>mm, vmf->address); > > > + if (!vmf->prealloc_pte) > > > + return VM_FAULT_OOM; > > > + } > > > + > > > ret = vma->vm_ops->fault(vmf); > > > if (unlikely(ret & (VM_FAULT_ERROR | VM_FAULT_NOPAGE | VM_FAULT_RETRY | > > > VM_FAULT_DONE_COW))) > > > > This is too eager to allocate pte even when it is not really needed. > > Jack has also pointed out that I am missing a write barrier. So here we > > go with an updated patch. This is essentially what fault around code > > does. > > > > Makes sense to me, unfortunately we don't have a local reproducer to verify it > and we've disabled CONFIG_MEMCG_KMEM to workaround the problem. Given the stack > I put, the patch should address the deadlock at least. OK, I will send a full patch with the changelog tomorrow. -- Michal Hocko SUSE Labs