From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (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 C613A1D416C for ; Sat, 9 May 2026 00:52:01 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1778287921; cv=none; b=cFoSK/0r3iFj1yUiBoEPab1dch86nIzoTRm0KcO7MfYdsIXMC63lAUR1M14W/9sTqbQ8K02MONCiuyX5V0BeemttmAJesSMbQqO1Yo+939IGl4p8E2T+sEB//dBd2oCCHHSo/57I0O3eAZhVUoXNB9z/5SJX705Y28xudrZYbCU= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1778287921; c=relaxed/simple; bh=e3ztE0rnQikB8fImgVEXrEibQFzHZ2MyHHIVueiiZC0=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=eq+TEpaBQKr+DBe9/Ri4KB9iPCHlvH8WXH+HlYHC0Bq+R9UhHsK0wjuZLzI2fWqvzNITdbDApa0cde5K9iriZSCq41TNzGsCvDLGGkKnqCUldowfuN62vqnN7TUR26t+0Yv+ldj8KQo6Vo+quaR08LTeW5qBsJj70TJWzELxJlE= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=YlAkkgNc; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="YlAkkgNc" Received: by smtp.kernel.org (Postfix) with ESMTPSA id F1BCCC2BCB0; Sat, 9 May 2026 00:52:00 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1778287921; bh=e3ztE0rnQikB8fImgVEXrEibQFzHZ2MyHHIVueiiZC0=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=YlAkkgNckl58MV7JlE6tfdttqzxk21kwdqCFEaZ/QxhlkX1wL4B0XstEM4e2PRgUI h47flzc5WNIYJbRgiZcxseMjY/RdnXxefVMAU2V/eUkuISAyJ8CmwtmXy5W0oiJby1 c3bArAOoFddqb4RzxbEKUWHhzEovycd+6uygAzf8pfedZgoujQBfLlqAD7gKKRyNMp Fxnp6gXmX0edRdjAnxo6TYk5XwmIB65ElrT27dXfsOurRaF8Sfcvql3kC9Jq6ZAbbD rZLu+xxwJOY4Vqg+K2b6pfqhSC2UVowomGWKTw9HngsE1upvsSqfKjJMabdG/0lDVN 6gWs1ezKOfpIQ== From: SeongJae Park To: Zhen Ni Cc: SeongJae Park , akpm@linux-foundation.org, vbabka@kernel.org, surenb@google.com, mhocko@suse.com, jackmanb@google.com, hannes@cmpxchg.org, ziy@nvidia.com, linux-mm@kvack.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH v5 3/3] mm/page_owner: document page_owner filter features Date: Fri, 8 May 2026 17:51:53 -0700 Message-ID: <20260509005153.84410-1-sj@kernel.org> X-Mailer: git-send-email 2.47.3 In-Reply-To: <20260507064643.179187-4-zhen.ni@easystack.cn> References: Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit On Thu, 7 May 2026 14:46:43 +0800 Zhen Ni wrote: > Add documentation for the page_owner filter functionality, including: > - Print mode filter (full stack vs stack handle) > - NUMA node filter (single node, multiple nodes, ranges) > - Usage examples for both filters > > Signed-off-by: Zhen Ni Reviewed-by: SeongJae Park > --- > > Changes in v5: > - No code changes > > Changes in v4: > - Update print_mode documentation to reflect string-based interface > * Change from "0/1" to "full_stack"/"stack_handle" > * Add bracket notation example: "[full_stack] stack_handle" > - Update NUMA filter documentation > * Remove "-1" example > * Add empty string as clear method > - Fix indentation: use tabs instead of spaces in code examples > > Changes in v3: > - New patch to document filter features as requested by Andrew Morton Adding links to preivious revisions would be nice. Thanks, SJ [...]