lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <Z-1axdrOVBYESrXo@localhost.localdomain>
Date: Wed, 2 Apr 2025 17:41:57 +0200
From: Oscar Salvador <osalvador@...e.de>
To: Gregory Price <gourry@...rry.net>
Cc: Rakie Kim <rakie.kim@...com>, akpm@...ux-foundation.org,
	linux-mm@...ck.org, linux-kernel@...r.kernel.org,
	linux-cxl@...r.kernel.org, joshua.hahnjy@...il.com,
	dan.j.williams@...el.com, ying.huang@...ux.alibaba.com,
	david@...hat.com, Jonathan.Cameron@...wei.com,
	kernel_team@...ynix.com, honggyu.kim@...com, yunjeong.mun@...com
Subject: Re: [PATCH v5 3/3] mm/mempolicy: Support memory hotplug in weighted
 interleave

On Wed, Apr 02, 2025 at 10:14:42AM -0400, Gregory Price wrote:
> On Wed, Apr 02, 2025 at 11:51:17AM +0200, Oscar Salvador wrote:
> > > +	case MEM_OFFLINE:
> > > +		if (!node_state(nid, N_MEMORY))
> > > +			sysfs_wi_node_release(nid);
> > 
> > This check is not needed.
> > 
> > If status_change_nid is different than NUMA_NO_NODE, it means that the memory
> > state of the numa node was effectively changed.
> > So doing:
> >  
> >   case MEM_OFFLINE:
> >           sysfs_wi_node_release(nid)
> >  
> > is enough.
> 
> offline_pages will call this callback unconditionally any time it's
> called (and succeeds).  If 2 dax devices online into the same node, it's

Yes, this callback will be called whenever {online,offline}_pages succeeds, but
status_change_nid will be != NUMA_NO_NODE IFF the node state changes.
And you already have the check

 if (nid < 0)
    goto out

at the beginning, which means that all {offline,online}_pages operation that
do not carry a numa node state change will be filtered out there.

Makes sense, or am I missing something?

-- 
Oscar Salvador
SUSE Labs

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ