On May 20, 2026 "Mike Rapoport (Microsoft)" <[email protected]> wrote: > > multi_transaction_new() allocates memory with get_zeroed_page() and uses > it as struct multi_transaction. > > The usage of that structure does not require struct page access and it is > better to allocate multi_transaction objects with kzalloc() that provides > better scalability and more debugging possibilities. > > Replace use of get_zeroed_page() with kzalloc(). > > Link: > https://lore.kernel.org/all/[email protected] > Signed-off-by: Mike Rapoport (Microsoft) <[email protected]> > --- > security/apparmor/apparmorfs.c | 5 +++-- > 1 file changed, 3 insertions(+), 2 deletions(-)
I'll leave this for John and/or Georgia to review and ultimately decide to merge, but it looks okay to me. Reviewed-by: Paul Moore <[email protected]> -- paul-moore.com
