From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mta0.migadu.com (out-165.mta0.migadu.com [91.218.175.165]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id C10C831F99B for ; Fri, 14 Aug 2026 01:29:42 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=91.218.175.165 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1786670986; cv=none; b=Cxuk1Td5ewUzJvOfUKnd9A7n8gPQEIjCQI4DjwD1PavdoLN7uVIYZLudbK/188nVOp8F/qGZFx4F9aF/mqOEaw+t7rZtrAMysvHi+0dNXnODhCYcvRNpMVc8VhJPCvyWMlCot3wo3xydf47/YCcUg3lizz7Fxqfuh0Gpm/U2IKc= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1786670986; c=relaxed/simple; bh=ek42tK/WchC2oA1PHIRS4QtmcmVuTZv2hEePGmd7yqE=; h=From:To:Cc:Subject:Date:Message-Id:MIME-Version; b=NU9f34811mZT4/iXovItFHEnFD1qQiME7O/KMPry7agCRYuLw3Zq1YemOV8C3Eut/JT9UFUo6vtN8Eesi3C3hRmJiycDr1w42TLMS0a7saf/4US0NPAVy1bK6EkLReTAMoyRfe2ROwM96db87rS08X8uokA84NdXJOS8SD34urk= 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=Q18HdAys; arc=none smtp.client-ip=91.218.175.165 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="Q18HdAys" X-Envelope-To: linux-kernel@vger.kernel.org DKIM-Signature: a=rsa-sha256; bh=ek42tK/WchC2oA1PHIRS4QtmcmVuTZv2hEePGmd7yqE=; c=simple/simple; d=linux.dev; h=from:to:subject:date:message-id:mime-version:content-type; s=key1; t=1786670980; v=1; x=1787275780; b=Q18HdAysD+lsrITUMZl1XAAKoqwSH84122i8rprLh+1ilqPnV4wjDkzvVCWYdU25PGdwhGwM P75B1BjSl9YvvqRlD2NisU4l8dEhx4HFHip6YIamoDhO9zEtt90EEgRZ3C/3Uz2ztuv4r6Xb6sd r8PEVd8RpIuYAs0icMbk0kD0= X-Envelope-To: linux-kernel@vger.kernel.org Received: from mi-ThinkCentre-M760t.mioffice.cn (14.29.108.92) by smtp.migadu.com with ESMTPS id 8baf117ec7468f79; Fri, 14 Aug 2026 01:29:40 +0000 X-Migadu-Flow: FLOW_OUT From: Ridong Chen To: Johannes Weiner , Michal Hocko , Roman Gushchin , Shakeel Butt , Andrew Morton Cc: Muchun Song , Tejun Heo , David Finkel , =?UTF-8?q?Michal=20Koutn=C3=BD?= , cgroups@vger.kernel.org (open list:CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)), linux-mm@kvack.org (open list:CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)), linux-kernel@vger.kernel.org, Tao Cui , Ridong Chen , Ridong Chen Subject: [PATCH v3 0/2] mm, memcg: fix memory.peak reset clobbering other fds' watermark Date: Fri, 14 Aug 2026 09:29:22 +0800 Message-Id: <20260814012924.2388613-1-ridong.chen@linux.dev> X-Mailer: git-send-email 2.34.1 Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit From: Ridong Chen The memory.peak / memory.swap.peak per-fd watermark tracking has two issues. Each open fd is a watcher and reads back max(its own value, the shared local_watermark); both bugs live in that scheme. Worst case for both is the same and is userspace-visible: a reader of memory.peak (or memory.swap.peak) gets a value lower than the true peak, so a tool that sizes or bills a cgroup by its peak usage under-reports it. Patch 1 (read side) fixes the race Sashiko pointed out in the v1 review [1]: peak_show() inspects local_watermark and the per-fd values without holding peaks_lock, so a reader that races an unrelated peak_write() reset briefly observes the lowered value. Transient. It takes peaks_lock in the show path. Patch 2 (write side) fixes peak_write(): on a reset it stores the current usage into the other watchers instead of the old watermark, so once usage has dropped from a peak a reset on one fd drags every other fd's peak down too, even fds that never reset. --- Changes since v2: - Spell out the worst-case userspace-visible effect, per Andrew's Go back to v1 [2]. Changes since v1: - New patch 1: hold peaks_lock in the peak readers (Sashiko). - Patch 2: floor the peers with max(usage, local_watermark), mirroring peak_show(), and skip the writing fd (Johannes Weiner). [1] https://sashiko.dev/#/patchset/20260730115314.1069089-1-ridong.chen@linux.dev?part=1 [2] https://lore.kernel.org/all/20260730115314.1069089-1-ridong.chen@linux.dev/ Ridong Chen (2): memcg: acquire peaks_lock when reading memory.peak mm, memcg: fix memory.peak reset clobbering other fds' watermark mm/memcontrol.c | 21 ++++++++++++++++----- 1 file changed, 16 insertions(+), 5 deletions(-) -- 2.34.1