Hi Andrew, Thanks for reviewing! On Wed, Jul 14, 2021 at 05:15:40PM -0700, Andrew Morton wrote: > On Mon, 12 Jul 2021 16:09:28 +0800 Feng Tang <feng.tang@xxxxxxxxx> wrote: > > > This patch series introduces the concept of the MPOL_PREFERRED_MANY mempolicy. > > This mempolicy mode can be used with either the set_mempolicy(2) or mbind(2) > > interfaces. Like the MPOL_PREFERRED interface, it allows an application to set a > > preference for nodes which will fulfil memory allocation requests. Unlike the > > MPOL_PREFERRED mode, it takes a set of nodes. Like the MPOL_BIND interface, it > > works over a set of nodes. Unlike MPOL_BIND, it will not cause a SIGSEGV or > > invoke the OOM killer if those preferred nodes are not available. > > Do we have any real-world testing which demonstrates the benefits of > all of this? We have done some internal tests, and are actively working with some external customer on using this new 'prefer-many' policy, as they have different types of memory (fast DRAM and slower Persistent memory) in system, and their program wants to set clear preference for several NUMA nodes, to better deploy the huge application data before running the application. We have met another issue that customer wanted to run a docker container while binding it to 2 persistent memory nodes, which always failed. At that time we tried 2 hack pachtes to solve it. https://lore.kernel.org/lkml/1604470210-124827-2-git-send-email-feng.tang@xxxxxxxxx/ https://lore.kernel.org/lkml/1604470210-124827-3-git-send-email-feng.tang@xxxxxxxxx/ And that use case can be easily achieved with this new policy. Thanks, Feng