Linux-mm Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Richard Cheng <icheng@nvidia.com>
To: Gregory Price <gourry@gourry.net>
Cc: linux-mm@kvack.org, nvdimm@lists.linux.dev,
	 linux-kernel@vger.kernel.org, linux-cxl@vger.kernel.org,
	driver-core@lists.linux.dev,  linux-kselftest@vger.kernel.org,
	kernel-team@meta.com, david@kernel.org, osalvador@suse.de,
	 gregkh@linuxfoundation.org, rafael@kernel.org, dakr@kernel.org,
	djbw@kernel.org,  vishal.l.verma@intel.com, dave.jiang@intel.com,
	alison.schofield@intel.com,  akpm@linux-foundation.org,
	ljs@kernel.org, liam@infradead.org, vbabka@kernel.org,
	 rppt@kernel.org, surenb@google.com, mhocko@suse.com,
	shuah@kernel.org,  iweiny@kernel.org,
	Smita.KoralahalliChannabasappa@amd.com, apopple@nvidia.com
Subject: Re: [PATCH v6 10/10] selftests/dax: add dax/kmem hotplug sysfs regression test
Date: Thu, 9 Jul 2026 16:20:00 +0800	[thread overview]
Message-ID: <ak9Y1UTTe3Hl6rVN@MWDK4CY14F> (raw)
In-Reply-To: <20260630211842.2252800-11-gourry@gourry.net>

On Tue, Jun 30, 2026 at 05:18:42PM +0800, Gregory Price wrote:
> Add a kselftest for the dax/kmem whole-device "state" sysfs attribute
> (/sys/bus/dax/devices/daxX.Y/state), which transitions a kmem-backed
> dax device between "unplugged", "online" and "online_movable".
> 
> The kselftest also includes a test to demonstrate the force-unbind
> does not deadlock - but this is a destructive test.  The dax device
> can never be rebound after doing this.
> 
> Provisioning a devdax device and binding it to kmem needs daxctl/ndctl
> out of scope for an in-tree selftest, so the test discovers an already
> kmem-bound dax device and SKIPs when none are present or the memory
> cannot be freed to reach a known baseline.
> 
> When a device is available it validates the interface contract:
>   - online / online_movable actually add memory (MemTotal grows),
>   - online is idempotent,
>   - switching between online types without unplug is rejected,
>   - unplug removes memory and the reported state is "unplugged"
>   - invalid input is rejected.
> 
> One specific regression test:
>     online -> unplug -> online_movable -> unplug
> 
> Re-online must re-reserve per-range resources so subsequent unplug
> actually offlines and removes instead of silently reporting success
> while the memory stays online.
> 
> Signed-off-by: Gregory Price <gourry@gourry.net>
> ---
>  tools/testing/selftests/Makefile              |   1 +
>  tools/testing/selftests/dax/Makefile          |   6 +
>  tools/testing/selftests/dax/config            |   4 +
>  .../testing/selftests/dax/dax-kmem-hotplug.sh | 190 ++++++++++++++++++
>  tools/testing/selftests/dax/settings          |   1 +
>  5 files changed, 202 insertions(+)
>  create mode 100644 tools/testing/selftests/dax/Makefile
>  create mode 100644 tools/testing/selftests/dax/config
>  create mode 100755 tools/testing/selftests/dax/dax-kmem-hotplug.sh
>  create mode 100644 tools/testing/selftests/dax/settings
> 
> diff --git a/tools/testing/selftests/Makefile b/tools/testing/selftests/Makefile
> index 6e59b8f63e41..8c2b4f97619c 100644
> --- a/tools/testing/selftests/Makefile
> +++ b/tools/testing/selftests/Makefile
> @@ -14,6 +14,7 @@ TARGETS += core
>  TARGETS += cpufreq
>  TARGETS += cpu-hotplug
>  TARGETS += damon
> +TARGETS += dax
>  TARGETS += devices/error_logs
>  TARGETS += devices/probe
>  TARGETS += dmabuf-heaps
> diff --git a/tools/testing/selftests/dax/Makefile b/tools/testing/selftests/dax/Makefile
> new file mode 100644
> index 000000000000..25a4f3d73a5b
> --- /dev/null
> +++ b/tools/testing/selftests/dax/Makefile
> @@ -0,0 +1,6 @@
> +# SPDX-License-Identifier: GPL-2.0
> +all:
> +
> +TEST_PROGS := dax-kmem-hotplug.sh
> +
> +include ../lib.mk
> diff --git a/tools/testing/selftests/dax/config b/tools/testing/selftests/dax/config
> new file mode 100644
> index 000000000000..4c9aaeb6ceb4
> --- /dev/null
> +++ b/tools/testing/selftests/dax/config
> @@ -0,0 +1,4 @@
> +CONFIG_DEV_DAX=m
> +CONFIG_DEV_DAX_KMEM=m
> +CONFIG_MEMORY_HOTPLUG=y
> +CONFIG_MEMORY_HOTREMOVE=y
> diff --git a/tools/testing/selftests/dax/dax-kmem-hotplug.sh b/tools/testing/selftests/dax/dax-kmem-hotplug.sh
> new file mode 100755
> index 000000000000..c8bbaf6178ed
> --- /dev/null
> +++ b/tools/testing/selftests/dax/dax-kmem-hotplug.sh
> @@ -0,0 +1,190 @@
> +#!/bin/bash
> +# SPDX-License-Identifier: GPL-2.0
> +#
> +# Exercise the dax/kmem "state" sysfs attribute:
> +#   /sys/bus/dax/devices/daxX.Y/state  ->  unplugged | online | online_kernel | online_movable
> +#
> +# The test needs a dax device already bound to the kmem driver.
> +# If no suitable device is found the tests SKIP.
> +#
> +# A dax device can be provisioned with the memmap= boot param, e.g.:
> +#   memmap=2G!4G
> +#
> +# then, in the booted system:
> +#
> +#   ndctl create-namespace -m devdax -e namespace0.0 -f
> +#   daxctl reconfigure-device -N -m system-ram dax0.0   # bind kmem
> +#   ./dax-kmem-hotplug.sh
> +
> +# shellcheck disable=SC1091
> +DIR="$(dirname "$(readlink -f "$0")")"
> +. "$DIR"/../kselftest/ktap_helpers.sh
> +
> +DAX_BASE=/sys/bus/dax/devices
> +
> +memtotal_kb() { awk '/^MemTotal:/ {print $2}' /proc/meminfo; }
> +get_state() { cat "$HP" 2>/dev/null; }
> +# set_state STATE -- write a state to the state attribute; returns the
> +# write's exit status (0 = accepted by the kernel)
> +set_state() { echo "$1" > "$HP" 2>/dev/null; }
> +
> +find_kmem_dax() {
> +	local d drv
> +	for d in "$DAX_BASE"/dax*; do
> +		[ -e "$d/state" ] || continue
> +		drv=$(readlink "$d/driver" 2>/dev/null)
> +		[ "$(basename "${drv:-}")" = kmem ] || continue
> +		basename "$d"
> +		return 0
> +	done
> +	return 1
> +}

It picks the first kmem-bound dax device and runs online/offline cycles on it.
If the selected device is a real device with production usage, offlining movable
memory will migrate all in-use pages.

Could the destructive parts be gated behind an opt-in, e.g. an environment var ?
Or find the testable backend device instead of just picking the first one?

Best regards,
Richard Cheng.

> +
> +ktap_print_header
> +
> +if [ "$UID" != 0 ]; then
> +	ktap_skip_all "must be run as root"
> +	exit "$KSFT_SKIP"
> +fi
> +
> +DAX=$(find_kmem_dax)
> +if [ -z "$DAX" ]; then
> +	ktap_skip_all "no kmem-bound dax device with a state attribute"
> +	exit "$KSFT_SKIP"
> +fi
> +HP=$DAX_BASE/$DAX/state
> +ORIG=$(get_state)
> +
> +# A failure to reach the baseline is environmental (memory in use), not an
> +# interface failure, so skip rather than fail.
> +set_state unplugged; rc=$?
> +if [ "$rc" != 0 ] || [ "$(get_state)" != unplugged ]; then
> +	ktap_skip_all "$DAX: cannot reach 'unplugged' baseline (memory in use?)"
> +	[ -n "$ORIG" ] && set_state "$ORIG"
> +	exit "$KSFT_SKIP"
> +fi
> +mt_unplugged=$(memtotal_kb)
> +
> +DRV=/sys/bus/dax/drivers/kmem
> +AOB=/sys/devices/system/memory/auto_online_blocks
> +
> +ktap_print_msg "using $DAX (initial state was: $ORIG)"
> +ktap_set_plan 8
> +
> +# A public (N_MEMORY) kmem node onlined into a kernel zone (online/online_kernel)
> +# collects unmovable allocations and can then never be offlined, which would
> +# wedge the device for the rest of this test.  So this test only ever
> +# successfully onlines online_movable, the one mode that is reliably unpluggable.
> +
> +set_state online_movable; rc=$?
> +mt_online=$(memtotal_kb)
> +if [ "$rc" = 0 ] && [ "$(get_state)" = online_movable ] && [ "$mt_online" -gt "$mt_unplugged" ]; then
> +	ktap_test_pass "online_movable: state=online_movable, MemTotal $mt_unplugged -> $mt_online kB"
> +else
> +	ktap_test_fail "online_movable: rc=$rc state=$(get_state) MemTotal $mt_unplugged -> $mt_online"
> +fi
> +
> +set_state online_movable; rc=$?
> +if [ "$rc" = 0 ] && [ "$(get_state)" = online_movable ]; then
> +	ktap_test_pass "online_movable idempotent"
> +else
> +	ktap_test_fail "online_movable idempotent: rc=$rc state=$(get_state)"
> +fi
> +
> +# A different online type is rejected without an intervening unplug.  The write
> +# is refused before any hotplug, so this never actually onlines a kernel zone.
> +set_state online_kernel; rc=$?
> +if [ "$rc" != 0 ] && [ "$(get_state)" = online_movable ]; then
> +	ktap_test_pass "reject online_kernel without intervening unplug (no kernel-zone online)"
> +else
> +	ktap_test_fail "online_movable->online_kernel not rejected: rc=$rc state=$(get_state)"
> +fi
> +
> +set_state unplugged; rc=$?
> +mt=$(memtotal_kb)
> +if [ "$rc" = 0 ] && [ "$(get_state)" = unplugged ] && [ "$mt" -lt "$mt_online" ]; then
> +	ktap_test_pass "unplug from online_movable: MemTotal $mt_online -> $mt kB"
> +else
> +	ktap_test_fail "unplug from online_movable: rc=$rc state=$(get_state) MemTotal $mt_online -> $mt"
> +fi
> +
> +before=$(get_state)
> +set_state bogus_state; rc=$?
> +if [ "$rc" != 0 ] && [ "$(get_state)" = "$before" ]; then
> +	ktap_test_pass "reject invalid state string"
> +else
> +	ktap_test_fail "invalid state not rejected: rc=$rc state=$(get_state)"
> +fi
> +
> +# The online_movable -> unplug cycle once regressed: a re-online failed to
> +# re-reserve the per-range resources, so a later unplug reported success while
> +# leaving the memory online.  Assert each iteration really adds and frees memory.
> +set_state unplugged
> +cycle_ok=1; fail_i=0; on=0; off=0
> +for i in 1 2 3; do
> +	if ! set_state online_movable; then cycle_ok=0; fail_i=$i; break; fi
> +	on=$(memtotal_kb)
> +	if ! set_state unplugged; then cycle_ok=0; fail_i=$i; break; fi
> +	off=$(memtotal_kb)
> +	if [ "$on" -le "$mt_unplugged" ] || [ "$off" -ge "$on" ]; then
> +		cycle_ok=0; fail_i=$i; break
> +	fi
> +done
> +if [ "$cycle_ok" = 1 ]; then
> +	ktap_test_pass "online_movable/unplug cycle re-acquires resources (3x: added and freed each time)"
> +else
> +	ktap_test_fail "online_movable/unplug cycle regressed at iteration $fail_i (on=$on off=$off baseline=$mt_unplugged)"
> +fi
> +
> +# change system default online policy while the device is unbound, and show
> +# the new system default policy is utilized across bindings.
> +set_state unplugged
> +if [ -w "$AOB" ] && [ -w "$DRV/unbind" ] && [ -w "$DRV/bind" ]; then
> +	orig_aob=$(cat "$AOB")
> +	echo "$DAX" > "$DRV/unbind" 2>/dev/null
> +	echo offline > "$AOB" 2>/dev/null
> +	echo "$DAX" > "$DRV/bind" 2>/dev/null
> +	sleep 1
> +	st=$(get_state)
> +	echo "$orig_aob" > "$AOB" 2>/dev/null		# restore system policy
> +	if [ "$st" = offline ]; then
> +		ktap_test_pass "online policy resolved at bind: auto_online_blocks=offline -> state=offline"
> +	else
> +		ktap_test_fail "bind-time policy not honored: state=$st (expected offline)"
> +	fi
> +	set_state unplugged 2>/dev/null
> +else
> +	ktap_test_skip "auto_online_blocks or driver bind/unbind not writable"
> +fi
> +
> +[ -n "$ORIG" ] && set_state "$ORIG"
> +
> +# DESTRUCTIVE: unbinding the driver while memory is online causes the resources
> +# to leak - but the unbind should not deadlock.  Instead the driver leaks it
> +# with a single "stuck online" warning. This leaves the memory online and the
> +# device unbound until reboot, so it runs last - and only if we can run it,
> +# leaving the restored state above untouched otherwise.  online_movable only:
> +# this test never onlines a public node into a kernel zone.
> +if [ -w "$DRV/unbind" ]; then
> +	set_state unplugged; set_state online_movable
> +fi
> +if [ "$(get_state)" = online_movable ] && [ -w "$DRV/unbind" ]; then
> +	mt_on=$(memtotal_kb)
> +	dmesg -C 2>/dev/null
> +	echo "$DAX" > "$DRV/unbind" 2>/dev/null
> +	mt_after=$(memtotal_kb)
> +	# The leaked "System RAM (kmem)" regions stay in the iomem tree; reading
> +	# their names dereferences res_name, which a buggy unbind already freed.
> +	# Walk /proc/iomem to provoke that use-after-free (caught by KASAN).
> +	cat /proc/iomem > /dev/null 2>&1
> +	splat=$(dmesg 2>/dev/null | grep -ciE "KASAN|BUG:|use-after-free|general protection|Oops|refcount_t")
> +	if [ "$splat" = 0 ] && [ "$mt_after" -ge "$mt_on" ]; then
> +		ktap_test_pass "unbind while online: memory left online, no UAF/oops (MemTotal $mt_on -> $mt_after kB)"
> +	else
> +		ktap_test_fail "unbind while online regressed: splat=$splat MemTotal $mt_on -> $mt_after kB"
> +	fi
> +else
> +	ktap_test_skip "could not online device for unbind-while-online test"
> +fi
> +
> +ktap_finished
> diff --git a/tools/testing/selftests/dax/settings b/tools/testing/selftests/dax/settings
> new file mode 100644
> index 000000000000..ba4d85f74cd6
> --- /dev/null
> +++ b/tools/testing/selftests/dax/settings
> @@ -0,0 +1 @@
> +timeout=90
> -- 
> 2.53.0-Meta
> 
> 


  reply	other threads:[~2026-07-09  8:20 UTC|newest]

Thread overview: 45+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-06-30 21:18 [PATCH v6 00/10] dax/kmem: atomic whole-device hotplug via sysfs Gregory Price
2026-06-30 21:18 ` [PATCH v6 01/10] mm/memory: add memory_block_aligned_range() helper Gregory Price
2026-07-09 17:58   ` Dave Jiang
2026-06-30 21:18 ` [PATCH v6 02/10] mm/memory_hotplug: add mhp_online_type_to_str() and export string helpers Gregory Price
2026-07-01  8:30   ` David Hildenbrand (Arm)
2026-07-09 17:59   ` Dave Jiang
2026-07-09 21:08   ` Dave Jiang
2026-07-09 21:57     ` Gregory Price
2026-07-10 12:44       ` David Hildenbrand (Arm)
2026-06-30 21:18 ` [PATCH v6 03/10] mm/memory_hotplug: pass online_type to online_memory_block() via arg Gregory Price
2026-07-09 18:22   ` Dave Jiang
2026-06-30 21:18 ` [PATCH v6 04/10] mm/memory_hotplug: export mhp_get_default_online_type Gregory Price
2026-07-09 18:30   ` Dave Jiang
2026-06-30 21:18 ` [PATCH v6 05/10] mm/memory_hotplug: add __add_memory_driver_managed() with online_type arg Gregory Price
2026-07-09 18:48   ` Dave Jiang
2026-06-30 21:18 ` [PATCH v6 06/10] mm/memory_hotplug: add offline_and_remove_memory_ranges() Gregory Price
2026-07-01  8:32   ` David Hildenbrand (Arm)
2026-07-09  8:45   ` Richard Cheng
2026-07-09 15:06     ` Gregory Price
2026-07-09 17:15     ` Gregory Price
2026-07-09 18:53   ` Dave Jiang
2026-06-30 21:18 ` [PATCH v6 07/10] dax: plumb hotplug online_type through dax Gregory Price
2026-07-09 21:07   ` Dave Jiang
2026-07-09 21:46   ` Dan Williams (nvidia)
2026-07-09 22:08     ` Gregory Price
2026-07-10  1:30       ` Gregory Price
2026-07-11  0:44         ` Dan Williams (nvidia)
2026-06-30 21:18 ` [PATCH v6 08/10] dax/kmem: extract hotplug/hotremove helper functions Gregory Price
2026-07-09 21:44   ` Dave Jiang
2026-07-09 21:57     ` Gregory Price
2026-06-30 21:18 ` [PATCH v6 09/10] dax/kmem: add sysfs interface for atomic whole-device hotplug Gregory Price
2026-06-30 22:14   ` Gregory Price
2026-07-01  6:13     ` Hannes Reinecke
2026-07-01  6:23       ` Gregory Price
2026-07-09  8:07   ` Richard Cheng
2026-07-09 14:57     ` Gregory Price
2026-07-09 22:14   ` Dave Jiang
2026-07-09 22:22     ` Gregory Price
2026-07-09 22:36   ` Dan Williams (nvidia)
2026-07-09 23:06     ` Gregory Price
2026-07-09 23:57       ` Dan Williams (nvidia)
2026-07-10  3:08         ` Gregory Price
2026-06-30 21:18 ` [PATCH v6 10/10] selftests/dax: add dax/kmem hotplug sysfs regression test Gregory Price
2026-07-09  8:20   ` Richard Cheng [this message]
2026-07-09 15:02     ` Gregory Price

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=ak9Y1UTTe3Hl6rVN@MWDK4CY14F \
    --to=icheng@nvidia.com \
    --cc=Smita.KoralahalliChannabasappa@amd.com \
    --cc=akpm@linux-foundation.org \
    --cc=alison.schofield@intel.com \
    --cc=apopple@nvidia.com \
    --cc=dakr@kernel.org \
    --cc=dave.jiang@intel.com \
    --cc=david@kernel.org \
    --cc=djbw@kernel.org \
    --cc=driver-core@lists.linux.dev \
    --cc=gourry@gourry.net \
    --cc=gregkh@linuxfoundation.org \
    --cc=iweiny@kernel.org \
    --cc=kernel-team@meta.com \
    --cc=liam@infradead.org \
    --cc=linux-cxl@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-kselftest@vger.kernel.org \
    --cc=linux-mm@kvack.org \
    --cc=ljs@kernel.org \
    --cc=mhocko@suse.com \
    --cc=nvdimm@lists.linux.dev \
    --cc=osalvador@suse.de \
    --cc=rafael@kernel.org \
    --cc=rppt@kernel.org \
    --cc=shuah@kernel.org \
    --cc=surenb@google.com \
    --cc=vbabka@kernel.org \
    --cc=vishal.l.verma@intel.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox