* [PATCH] include/asm-generic/pgtable.h: Remove redundant variable r
@ 2015-12-13 9:09 Chen Gang
0 siblings, 0 replies; only message in thread
From: Chen Gang @ 2015-12-13 9:09 UTC (permalink / raw)
To: arnd, Andrew Morton
Cc: linux-arch, linux-kernel@vger.kernel.org, Chen Gang, chenwei
Return the immediate number directly.
Signed-off-by: Chen Gang <gang.chen.5i5j@gmail.com>
---
include/asm-generic/pgtable.h | 18 ++++++++----------
1 file changed, 8 insertions(+), 10 deletions(-)
diff --git a/include/asm-generic/pgtable.h b/include/asm-generic/pgtable.h
index aecf0141..069536a 100644
--- a/include/asm-generic/pgtable.h
+++ b/include/asm-generic/pgtable.h
@@ -51,12 +51,11 @@ static inline int ptep_test_and_clear_young(struct vm_area_struct *vma,
pte_t *ptep)
{
pte_t pte = *ptep;
- int r = 1;
+
if (!pte_young(pte))
- r = 0;
- else
- set_pte_at(vma->vm_mm, address, ptep, pte_mkold(pte));
- return r;
+ return 0;
+ set_pte_at(vma->vm_mm, address, ptep, pte_mkold(pte));
+ return 1;
}
#endif
@@ -67,12 +66,11 @@ static inline int pmdp_test_and_clear_young(struct vm_area_struct *vma,
pmd_t *pmdp)
{
pmd_t pmd = *pmdp;
- int r = 1;
+
if (!pmd_young(pmd))
- r = 0;
- else
- set_pmd_at(vma->vm_mm, address, pmdp, pmd_mkold(pmd));
- return r;
+ return 0;
+ set_pmd_at(vma->vm_mm, address, pmdp, pmd_mkold(pmd));
+ return 1;
}
#else
static inline int pmdp_test_and_clear_young(struct vm_area_struct *vma,
--
1.9.3
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2015-12-13 9:12 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-12-13 9:09 [PATCH] include/asm-generic/pgtable.h: Remove redundant variable r Chen Gang
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).