projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
30a5140
)
mm/khugepaged: use vma_is_anonymous
author
xu xin
<xu.xin16@zte.com.cn>
Fri, 29 Apr 2022 21:36:58 +0000
(14:36 -0700)
committer
akpm
<akpm@linux-foundation.org>
Fri, 29 Apr 2022 21:36:58 +0000
(14:36 -0700)
Clean up the vma->vm_ops usage. Use vma_is_anonymous instead of
vma->vm_ops to make it more understandable.
Link:
https://lkml.kernel.org/r/20220424071642.3234971-1-xu.xin16@zte.com.cn
Signed-off-by: xu xin <xu.xin16@zte.com.cn>
Reviewed-by: Yang Shi <shy828301@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
mm/khugepaged.c
patch
|
blob
|
history
diff --git
a/mm/khugepaged.c
b/mm/khugepaged.c
index a4e5eaf3eb012df0df881b729d88326e9120b302..ac53ad2c9bb1a19382bb87dd65dd2c9d196b5581 100644
(file)
--- a/
mm/khugepaged.c
+++ b/
mm/khugepaged.c
@@
-466,7
+466,7
@@
static bool hugepage_vma_check(struct vm_area_struct *vma,
S_ISREG(inode->i_mode);
}
- if (!vma->anon_vma ||
vma->vm_ops
)
+ if (!vma->anon_vma ||
!vma_is_anonymous(vma)
)
return false;
if (vma_is_temporary_stack(vma))
return false;
@@
-972,7
+972,7
@@
static int hugepage_vma_revalidate(struct mm_struct *mm, unsigned long address,
if (!hugepage_vma_check(vma, vma->vm_flags))
return SCAN_VMA_CHECK;
/* Anon VMA expected */
- if (!vma->anon_vma ||
vma->vm_ops
)
+ if (!vma->anon_vma ||
!vma_is_anonymous(vma)
)
return SCAN_VMA_CHECK;
return 0;
}