Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932449AbaDWPH2 (ORCPT ); Wed, 23 Apr 2014 11:07:28 -0400 Received: from mail-ve0-f177.google.com ([209.85.128.177]:44928 "EHLO mail-ve0-f177.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1757544AbaDWPHR (ORCPT ); Wed, 23 Apr 2014 11:07:17 -0400 MIME-Version: 1.0 In-Reply-To: <20140423144901.GA24220@redhat.com> References: <20140422180308.GA19038@redhat.com> <20140423144901.GA24220@redhat.com> Date: Wed, 23 Apr 2014 08:07:16 -0700 X-Google-Sender-Auth: MztCJWMfkywAlq14FuLZoF-425Q Message-ID: Subject: Re: 3.15rc2 hanging processes on exit. From: Linus Torvalds To: Dave Jones , Hugh Dickins , Linus Torvalds , Linux Kernel , linux-mm Content-Type: text/plain; charset=UTF-8 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, Apr 23, 2014 at 7:49 AM, Dave Jones wrote: > > So for reasons I can't figure out, I've not been able to hit it on 3.14 > The only 'interesting' thing I've hit in overnight testing is this, which > I'm not sure if I've also seen in my .15rc testing, but it doesn't look > familiar to me. (Though the vm oopses I've seen the last few months > are starting to all blur together in my memory) > > > kernel BUG at mm/mlock.c:82! That's mlock_vma_page: BUG_ON(!PageLocked(page)); which is odd, because: > Call Trace: > [] try_to_unmap_nonlinear+0x2a2/0x530 > [] rmap_walk+0x157/0x320 > [] try_to_unmap+0x93/0xf0 > [] migrate_pages+0x3b6/0x7b0 All the calls to "try_to_unmap()" in mm/migrate.c are preceded by the pattern if (!trylock_page(page)) { .... lock_page(page); } where there are just a few "goto out" style cases for the "ok, we're not going to wait for this page lock" in there. Very odd. Does anybody see anything I missed? Linus -- 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/