Commit e2fb7836 authored by Bagas Sanjaya's avatar Bagas Sanjaya Committed by Andrew Morton
Browse files

mm: describe @flags parameter in memalloc_flags_save()

Patch series "mm kernel-doc fixes".

Here are kernel-doc fixes for mm subsystem.  I'm also including textsearch
fix since there's currently no maintainer for include/linux/textsearch.h
(get_maintainer.pl only shows LKML).


This patch (of 4):

Sphinx reports kernel-doc warning:

WARNING: ./include/linux/sched/mm.h:332 function parameter 'flags' not described in 'memalloc_flags_save'

Describe @flags to fix it.

Link: https://lkml.kernel.org/r/20251219014006.16328-2-bagasdotme@gmail.com
Link: https://lkml.kernel.org/r/20251219014006.16328-3-bagasdotme@gmail.com


Signed-off-by: default avatarBagas Sanjaya <bagasdotme@gmail.com>
Fixes: 3f6d5e6a ("mm: introduce memalloc_flags_{save,restore}")
Acked-by: default avatarDavid Hildenbrand (Red Hat) <david@kernel.org>
Acked-by: default avatarHarry Yoo <harry.yoo@oracle.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
parent 0f61b186
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -325,6 +325,7 @@ static inline void might_alloc(gfp_t gfp_mask)

/**
 * memalloc_flags_save - Add a PF_* flag to current->flags, save old value
 * @flags: Flags to add.
 *
 * This allows PF_* flags to be conveniently added, irrespective of current
 * value, and then the old version restored with memalloc_flags_restore().