From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753889AbdLSPen (ORCPT ); Tue, 19 Dec 2017 10:34:43 -0500 Received: from zeniv.linux.org.uk ([195.92.253.2]:33800 "EHLO ZenIV.linux.org.uk" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753841AbdLSPe0 (ORCPT ); Tue, 19 Dec 2017 10:34:26 -0500 Date: Tue, 19 Dec 2017 15:34:19 +0000 From: Al Viro To: Michal Hocko Cc: Andrew Morton , Tetsuo Handa , Aliaksei Karaliou , linux-mm@kvack.org, linux-fsdevel@vger.kernel.org, LKML Subject: Re: [resend PATCH 0/2] fix VFS register_shrinker fixup Message-ID: <20171219153418.GR21978@ZenIV.linux.org.uk> References: <20171219132844.28354-1-mhocko@kernel.org> <20171219151915.GA2787@dhcp22.suse.cz> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20171219151915.GA2787@dhcp22.suse.cz> User-Agent: Mutt/1.9.0 (2017-09-02) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, Dec 19, 2017 at 04:19:15PM +0100, Michal Hocko wrote: > Dohh, I have missed resend by Tetsuo http://lkml.kernel.org/r/1513596701-4518-1-git-send-email-penguin-kernel@I-love.SAKURA.ne.jp > (thanks for dropping me from the CC). Al seeemed to take the patch. We > still need patch 2. Al, are you going to take it from this thread or you > are going to go your way? Umm... git log for-linus in vfs.git since yesterday: commit 9ee332d99e4d5a97548943b81c54668450ce641b Author: Al Viro Date: Mon Dec 18 15:05:07 2017 -0500 sget(): handle failures of register_shrinker() Signed-off-by: Al Viro commit bb422a738f6566f7439cd347d54e321e4fe92a9f Author: Tetsuo Handa Date: Mon Dec 18 20:31:41 2017 +0900 mm,vmscan: Make unregister_shrinker() no-op if register_shrinker() failed. Syzbot caught an oops at unregister_shrinker() because combination of commit 1d3d4437eae1bb29 ("vmscan: per-node deferred work") and fault injection made register_shrinker() fail and the caller of register_shrinker() did not check for failure. ....