Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751509AbdGZTys (ORCPT ); Wed, 26 Jul 2017 15:54:48 -0400 Received: from mail-wm0-f45.google.com ([74.125.82.45]:36176 "EHLO mail-wm0-f45.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750930AbdGZTyq (ORCPT ); Wed, 26 Jul 2017 15:54:46 -0400 MIME-Version: 1.0 Reply-To: dmitriyz@waymo.com In-Reply-To: References: <20170726165022.10326-1-dmitriyz@waymo.com> From: Dima Zavin Date: Wed, 26 Jul 2017 12:54:44 -0700 Message-ID: Subject: Re: [RFC PATCH] mm/slub: fix a deadlock due to incomplete patching of cpusets_enabled() To: Christopher Lameter Cc: Mel Gorman , Andrew Morton , Li Zefan , Pekka Enberg , David Rientjes , Joonsoo Kim , cgroups@vger.kernel.org, LKML , linux-mm@kvack.org, Cliff Spradlin Content-Type: text/plain; charset="UTF-8" Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1106 Lines: 26 On Wed, Jul 26, 2017 at 10:02 AM, Christopher Lameter wrote: > On Wed, 26 Jul 2017, Dima Zavin wrote: > >> The fix is to cache the value that's returned by cpusets_enabled() at the >> top of the loop, and only operate on the seqlock (both begin and retry) if >> it was true. > > I think the proper fix would be to ensure that the calls to > read_mems_allowed_{begin,retry} cannot cause the deadlock. Otherwise you > have to fix this in multiple places. > > Maybe read_mems_allowed_* can do some form of synchronization or *_retry > can implictly rely on the results of cpusets_enabled() by *_begin? > (res-ending because gmail hates me, sorry). Thanks for the quick reply! I can turn the cookie into a uint64, put the sequence into the low order 32 bits and put the enabled state into bit 33 (or 63 :) ). Then retry will not query cpusets_enabled() and will just look at the enabled bit. This means that *_retry will always have a conditional jump (i.e. lose the whole static_branch optimization) but maybe that's ok since that's pretty rare and the *_begin() will still benefit from it?