From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from out-183.mta1.migadu.com (out-183.mta1.migadu.com [95.215.58.183]) (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 570001C5F11 for ; Mon, 1 Jun 2026 02:19:56 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=95.215.58.183 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1780280398; cv=none; b=RIBUNnRWcrWlmLDmzbBxSMJPZQj+PMbC32Uo90muzSk2+XXmfXiay4s9KtKzntm86BoeRc9QSGVVFpGbuvQMd1Anv5V5MXN7B+Ahh93VMKOiqUzQV+0nRo0QE/Hqt36PwSwx+YkqGpiwKkdUNP4st/2rhfEEi4CCSTaC0al8mUY= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1780280398; c=relaxed/simple; bh=DkbiK7xTkQnd4WrcYAgERkfg/wT3aw19YfKCSvhWPiY=; h=MIME-Version:Date:Content-Type:From:Message-ID:Subject:To:Cc: In-Reply-To:References; b=PnbAi7wc6isq8hTw6Y8d1ZeXXwC2u1rxnkBu3suHTkYy87VSji1qhtyl5jNxuDPf1YAliLE2lrN4+/uRZd3bUw6wEX8l6L3t+jC6rqSHiVOLa5hJyAu39fGfM2GiwexAJT6FwKbirR3ustwBd0eQpIVAOup+StJ1MN9ukCHPZEE= 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=hLftl0Gl; arc=none smtp.client-ip=95.215.58.183 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="hLftl0Gl" Precedence: bulk X-Mailing-List: damon@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1780280394; 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=nefyT5OBxsTCuKDlG/KjCrlTz0zZS2F3Z2D5SQfViTU=; b=hLftl0GlB63Jiph1E4xmIkxrKeqSb360RDRyLjAJRYHNGnc8hWoRkYA4tqsQZEx2eWaRgM e3PcRH2+Apep+uxasvb31jPHo7l3tr4KVaGSkIZiO0TmUkgm1RuITE0QASkL1FAMkjPtqX QG1WOYawC+iijEAXY55OMsSLMFrEnrE= Date: Mon, 01 Jun 2026 02:19:48 +0000 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. From: "Kunwu Chan" Message-ID: <075c80f2482b358705292a2557defdf384c94f7c@linux.dev> TLS-Required: No Subject: Re: [PATCH 2/5] selftests/damon: fix memcg filter path handling To: "SeongJae Park" Cc: "SeongJae Park" , shuah@kernel.org, damon@lists.linux.dev, linux-kselftest@vger.kernel.org, linux-kernel@vger.kernel.org, linux-mm@kvack.org, "Kunwu Chan" , "Wang Lian" , "Kunwu Chan" , "Cheng Nie" In-Reply-To: <20260531163607.99063-1-sj@kernel.org> References: <20260531163607.99063-1-sj@kernel.org> X-Migadu-Flow: FLOW_OUT June 1, 2026 at 12:36 AM, "SeongJae Park" wrote: >=20 >=20Conventionally, this mail should be sent as a direct reply to the cov= erletter. > But somehow this was sent as a reply to the first patch of the series. = Please > send all patches of a series as a direct reply to the coverletter from = the next > time. >=20 Thanks,=20SJ. Sorry about that. I'll make sure future revisions are sent as direct replies to the cover letter. > On Sun, 31 May 2026 17:17:21 +0800 Kunwu Chan wr= ote: >=20 >=20>=20 >=20> From: Kunwu Chan > >=20=20 >=20> A trailing comma in the memcg_path assignment makes > > memcg_path a single-element tuple instead of a string. > >=20=20 >=20> As a result, an invalid value is written to sysfs and memcg > > filter configuration fails. > >=20=20 >=20> Remove the comma. > >=20 >=20Good findinng! But, Cheng sent [1] a same patch earlier. I believe Ch= eng is > working on revisioning it. I think we should give Cheng more time for t= hat. >=20 Yes,=20I noticed that after sending the series and saw that Cheng had already posted the same fix. I'll drop this patch from v2 and let Cheng continue with his version. Thanks, Kunwu > [1] https://lore.kernel.org/20260529145248.84593-1-sj@kernel.org >=20 >=20Thanks, > SJ >=20 >=20[...] >