]> www.infradead.org Git - users/jedix/linux-maple.git/commitdiff
mm/codetag: fix arg in pgalloc_tag_copy alloc_tag_sub
authorSourav Panda <souravpanda@google.com>
Tue, 22 Oct 2024 23:24:40 +0000 (23:24 +0000)
committerAndrew Morton <akpm@linux-foundation.org>
Fri, 1 Nov 2024 04:29:16 +0000 (21:29 -0700)
alloc_tag_sub() takes bytes as opposed to number of pages as argument.

Currently pgalloc_tag_copy() passes the number of pages.  This fix passes
the correct unit, which is the number of bytes allocated.

Link: https://lkml.kernel.org/r/20241022232440.334820-1-souravpanda@google.com
Fixes: e0a955bf7f61 ("mm/codetag: add pgalloc_tag_copy()")
Signed-off-by: Sourav Panda <souravpanda@google.com>
Acked-by: Suren Baghdasaryan <surenb@google.com>
Reviewed-by: Pasha Tatashin <pasha.tatashin@soleen.com>
Reviewed-by: Anshuman Khandual <anshuman.khandual@arm.com>
Cc: Wei Xu <weixugc@google.com>
Cc: Yu Zhao <yuzhao@google.com>
Cc: Kent Overstreet <kent.overstreet@linux.dev>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
include/linux/mm.h

index 5f9f055ed21aa6c376c88403de957eabd45d86c7..c4ea7ca0c227825db82cdb97dcb15925f35c02be 100644 (file)
@@ -4207,7 +4207,7 @@ static inline void pgalloc_tag_copy(struct folio *new, struct folio *old)
        /* Clear the old ref to the original allocation tag. */
        clear_page_tag_ref(&old->page);
        /* Decrement the counters of the tag on get_new_folio. */
-       alloc_tag_sub(ref, folio_nr_pages(new));
+       alloc_tag_sub(ref, folio_size(new));
 
        __alloc_tag_ref_set(ref, tag);