From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from out-171.mta0.migadu.com (out-171.mta0.migadu.com [91.218.175.171]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 6A0AD3C10B3 for ; Tue, 4 Aug 2026 06:18:57 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=91.218.175.171 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1785824340; cv=none; b=cUsMZTBODbuo1fmbHt8nn6KlCtXAzBDWHAk8PlEmlPJrpyNz7Q3yMt6INfD7nr64WMf2Vxa+Z3IryKksJhvdtFWbXPgjQiSTBRP8puKB5vIDQJP5s14OhXOvEE8pyOSkXOR9THb6XU94BfIUA6HUUq2dBzCfF0Xteuavy3YwzBc= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1785824340; c=relaxed/simple; bh=LaMSgiQVOZm2nfM4x7pSCrwZpV2MN3yBye1bl5VE4Ag=; h=Message-ID:Date:MIME-Version:Subject:To:Cc:References:From: In-Reply-To:Content-Type; b=KZY/nbnBWoq06M4MeMOavVR8IO3gpDmBcsM1ve/x76B0/UH+minAE1e1Zu6qTfqBTqrHPhOG2nwBl9bEtSwzgHOkVXezpAzrrX6HO5PR6D4VeyyMCuCylC8EbJ6+GHeHyYdHZmVjMT0dlhIaG3MSVB4dQ4AcSjmcTOVMDOb1czs= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev; spf=pass smtp.mailfrom=linux.dev; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b=tTROrjLI; arc=none smtp.client-ip=91.218.175.171 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=linux.dev Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b="tTROrjLI" Message-ID: DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1785824334; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=LIhbUxptxYPmxw4GJdyCVa0DLpOSL7TbtvJHRacVtxo=; b=tTROrjLI9dyYGN6dAe2M4SqRLz6jkVdWf/SenXz+sN3v4lOMGepGFUMc8YW5xownm4supI gwilwwD7ei4+qXQ3yuNNZs/a4nA9C8T4yowcPynJu4HhED5V46jTQUi20GD/rKAxxo+CNL b19U1J0FrU/uUAGWO4aEekSESV6Mr8w= Date: Tue, 4 Aug 2026 14:18:33 +0800 Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Subject: Re: [PATCH v3 1/3] fs: fix missed removal of super_fs_objects_eligible() To: Andrew Morton , brauner@kernel.org Cc: hughd@google.com, baolin.wang@linux.alibaba.com, usama.arif@linux.dev, david@kernel.org, linux-mm@kvack.org, linux-kernel@vger.kernel.org, Qi Zheng References: <139ec7ff190eeddc52f40e215ca5c950af5d087d.1785746588.git.zhengqi.arch@bytedance.com> <20260803142028.1facefdbff955e593aa36e53@linux-foundation.org> X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. From: Qi Zheng In-Reply-To: <20260803142028.1facefdbff955e593aa36e53@linux-foundation.org> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Migadu-Flow: FLOW_OUT On 8/4/26 5:20 AM, Andrew Morton wrote: > On Mon, 3 Aug 2026 16:46:33 +0800 Qi Zheng wrote: > >> Commit 0ef8faff490be ("fs: push nr_cached_objects memcg gating into >> individual filesystems") forgot to drop the super_fs_objects_eligible(), >> just fix it. > > What are the userspace-visible runtime effects of this bug? Please > include this info with all bugfix patches. It's seems this part was missed during the push to the linux-next branch, see https://lore.kernel.org/all/9c7efd5f-f8d3-4926-acb4-34c326ffb1c3@linux.dev/. I expect Christian to help fix this. Including this patch in the current series is just to provide a complete picture and make reviewing easier. Thanks, Qi > > Should we cc:stable? > > Thanks.