mincore_hugetlb() returns always '0' Signed-off-by: Daeseok Youn <daeseok.youn@xxxxxxxxx> --- mm/mincore.c | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/mm/mincore.c b/mm/mincore.c index 8d6db5c..be25efd 100644 --- a/mm/mincore.c +++ b/mm/mincore.c @@ -22,7 +22,6 @@ static int mincore_hugetlb(pte_t *pte, unsigned long hmask, unsigned long addr, unsigned long end, struct mm_walk *walk) { - int err = 0; #ifdef CONFIG_HUGETLB_PAGE unsigned char present; unsigned char *vec = walk->private; @@ -38,7 +37,7 @@ static int mincore_hugetlb(pte_t *pte, unsigned long hmask, unsigned long addr, #else BUG(); #endif - return err; + return 0; } /* -- 1.7.1 -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@xxxxxxxxx. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: <a href=mailto:"dont@xxxxxxxxx"> email@xxxxxxxxx </a>