This is a patchset on top of Matthew Wilcox Xarray code and implements object migration of xarray nodes. The migration is integrated into the defragmetation and shrinking logic of the slab allocator. Defragmentation will ensure that all xarray slab pages have less objects available than specified by the slab defrag ratio. Slab shrinking will create a slab cache with optimal object density. Only one slab page will have available objects per node. To test apply this patchset on top of Matthew Wilcox Xarray code from Dec 11th (See infradead github). Then go to /sys/kernel/slab/radix_tree Inspect the number of partial slab pages cat partial And then perform a cache shrink operation echo 1 >shrink This is just a barebones approach using a special mode of the slab migration patchset that does not require refcounts. If this is acceptable then additional functionality can be added: 1. Migration of objects to a specific node 2. Dispersion of objects across all nodes (MPOL_INTERLEAVE) 3. Subsystems can request to move an object to a specific node. 4. Tying into the page migration and page defragmentation logic so that so far unmovable pages that are in the way of creating a contiguous block of memory will become movable. This is only possible for xarray for now but it would be worthwhile to extend this to dentries and inodes. -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@xxxxxxxxx. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: <a href=mailto:"dont@xxxxxxxxx"> email@xxxxxxxxx </a>