On Wed, Mar 05, 2025 at 06:11:32AM +0000, Yosry Ahmed wrote: > zs_map_object() and zs_unmap_object() are no longer used, remove them. > Since these are the only users of per-CPU mapping_areas, remove them and > the associated CPU hotplug callbacks too. > > Signed-off-by: Yosry Ahmed <yosry.ahmed@xxxxxxxxx> > --- > include/linux/cpuhotplug.h | 1 - > include/linux/zsmalloc.h | 21 ---- > mm/zsmalloc.c | 226 +------------------------------------ > 3 files changed, 1 insertion(+), 247 deletions(-) I missed updating the docs. Andrew, could you please squash the following diff in? I intentionally did not state the name of the new APIs to avoid needing to update the docs with similar changes in the future: diff --git a/Documentation/mm/zsmalloc.rst b/Documentation/mm/zsmalloc.rst index 76902835e68e9..d2bbecd78e146 100644 --- a/Documentation/mm/zsmalloc.rst +++ b/Documentation/mm/zsmalloc.rst @@ -27,9 +27,8 @@ Instead, it returns an opaque handle (unsigned long) which encodes actual location of the allocated object. The reason for this indirection is that zsmalloc does not keep zspages permanently mapped since that would cause issues on 32-bit systems where the VA region for kernel space mappings -is very small. So, before using the allocating memory, the object has to -be mapped using zs_map_object() to get a usable pointer and subsequently -unmapped using zs_unmap_object(). +is very small. So, using the allocated memory should be done through the +proper handle-based APIs. stat ====