mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-03-22 07:27:12 +08:00
mm: rename vma_flag_test/set_atomic() to vma_test/set_atomic_flag()
In order to stay consistent between functions which manipulate a vm_flags_t argument of the form of vma_flags_...() and those which manipulate a VMA (in this case the flags field of a VMA), rename vma_flag_[test/set]_atomic() to vma_[test/set]_atomic_flag(). This lays the groundwork for adding VMA flag manipulation functions in a subsequent commit. Link: https://lkml.kernel.org/r/033dcf12e819dee5064582bced9b12ea346d1607.1769097829.git.lorenzo.stoakes@oracle.com Signed-off-by: Lorenzo Stoakes <lorenzo.stoakes@oracle.com> Reviewed-by: Pedro Falcato <pfalcato@suse.de> Reviewed-by: Liam R. Howlett <Liam.Howlett@oracle.com> Cc: Baolin Wang <baolin.wang@linux.alibaba.com> Cc: Barry Song <baohua@kernel.org> Cc: David Hildenbrand <david@kernel.org> Cc: Dev Jain <dev.jain@arm.com> Cc: Jason Gunthorpe <jgg@nvidia.com> Cc: Suren Baghdasaryan <surenb@google.com> Cc: Vlastimil Babka <vbabka@suse.cz> Cc: Zi Yan <ziy@nvidia.com> Cc: Damien Le Moal <dlemoal@kernel.org> Cc: "Darrick J. Wong" <djwong@kernel.org> Cc: Jarkko Sakkinen <jarkko@kernel.org> Cc: Yury Norov <ynorov@nvidia.com> Cc: Chris Mason <clm@fb.com> Cc: Pedro Falcato <pfalcato@suse.de> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
This commit is contained in:
committed by
Andrew Morton
parent
a30de4c6b7
commit
e388d31257
@@ -1741,7 +1741,7 @@ static bool file_backed_vma_is_retractable(struct vm_area_struct *vma)
|
||||
* obtained on guard region installation after the flag is set, so this
|
||||
* check being performed under this lock excludes races.
|
||||
*/
|
||||
if (vma_flag_test_atomic(vma, VMA_MAYBE_GUARD_BIT))
|
||||
if (vma_test_atomic_flag(vma, VMA_MAYBE_GUARD_BIT))
|
||||
return false;
|
||||
|
||||
return true;
|
||||
|
||||
@@ -1140,7 +1140,7 @@ static long madvise_guard_install(struct madvise_behavior *madv_behavior)
|
||||
* acquire an mmap/VMA write lock to read it. All remaining readers may
|
||||
* or may not see the flag set, but we don't care.
|
||||
*/
|
||||
vma_flag_set_atomic(vma, VMA_MAYBE_GUARD_BIT);
|
||||
vma_set_atomic_flag(vma, VMA_MAYBE_GUARD_BIT);
|
||||
|
||||
/*
|
||||
* If anonymous and we are establishing page tables the VMA ought to
|
||||
|
||||
Reference in New Issue
Block a user