Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1669941 > unrolled thread
| Started by | David Rientjes <rientjes@google.com> |
|---|---|
| First post | 2017-06-19 22:50 +0200 |
| Last post | 2017-06-23 15:30 +0200 |
| Articles | 2 — 2 participants |
Back to article view | Back to linux.kernel
[patch for-4.12] mm, thp: remove cond_resched from __collapse_huge_page_copy David Rientjes <rientjes@google.com> - 2017-06-19 22:50 +0200
Re: [patch for-4.12] mm, thp: remove cond_resched from __collapse_huge_page_copy Michal Hocko <mhocko@kernel.org> - 2017-06-23 15:30 +0200
| From | David Rientjes <rientjes@google.com> |
|---|---|
| Date | 2017-06-19 22:50 +0200 |
| Subject | [patch for-4.12] mm, thp: remove cond_resched from __collapse_huge_page_copy |
| Message-ID | <tUbMu-7Ag-31@gated-at.bofh.it> |
This is a partial revert of commit 338a16ba1549 ("mm, thp: copying user
pages must schedule on collapse") which added a cond_resched() to
__collapse_huge_page_copy().
On x86 with CONFIG_HIGHPTE, __collapse_huge_page_copy is called in atomic
context and thus scheduling is not possible. This is only a possible
config on arm and i386.
Although need_resched has been shown to be set for over 100 jiffies while
doing the iteration in __collapse_huge_page_copy, this is better than
doing
if (in_atomic())
cond_resched()
to cover only non-CONFIG_HIGHPTE configs.
Reported-by: Larry Finger <Larry.Finger@lwfinger.net>
Signed-off-by: David Rientjes <rientjes@google.com>
---
Note: Larry should be back as of June 17 to test if this fixes the
reported issue.
mm/khugepaged.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/mm/khugepaged.c b/mm/khugepaged.c
--- a/mm/khugepaged.c
+++ b/mm/khugepaged.c
@@ -652,7 +652,6 @@ static void __collapse_huge_page_copy(pte_t *pte, struct page *page,
spin_unlock(ptl);
free_page_and_swap_cache(src_page);
}
- cond_resched();
}
}
[toc] | [next] | [standalone]
| From | Michal Hocko <mhocko@kernel.org> |
|---|---|
| Date | 2017-06-23 15:30 +0200 |
| Message-ID | <tVwOR-2Hx-7@gated-at.bofh.it> |
| In reply to | #1669941 |
On Mon 19-06-17 13:43:11, David Rientjes wrote:
> This is a partial revert of commit 338a16ba1549 ("mm, thp: copying user
> pages must schedule on collapse") which added a cond_resched() to
> __collapse_huge_page_copy().
>
> On x86 with CONFIG_HIGHPTE, __collapse_huge_page_copy is called in atomic
> context and thus scheduling is not possible. This is only a possible
> config on arm and i386.
>
> Although need_resched has been shown to be set for over 100 jiffies while
> doing the iteration in __collapse_huge_page_copy, this is better than
> doing
>
> if (in_atomic())
> cond_resched()
>
> to cover only non-CONFIG_HIGHPTE configs.
>
> Reported-by: Larry Finger <Larry.Finger@lwfinger.net>
> Signed-off-by: David Rientjes <rientjes@google.com>
Acked-by: Michal Hocko <mhocko@suse.com>
> ---
> Note: Larry should be back as of June 17 to test if this fixes the
> reported issue.
>
> mm/khugepaged.c | 1 -
> 1 file changed, 1 deletion(-)
>
> diff --git a/mm/khugepaged.c b/mm/khugepaged.c
> --- a/mm/khugepaged.c
> +++ b/mm/khugepaged.c
> @@ -652,7 +652,6 @@ static void __collapse_huge_page_copy(pte_t *pte, struct page *page,
> spin_unlock(ptl);
> free_page_and_swap_cache(src_page);
> }
> - cond_resched();
> }
> }
>
>
> --
> To unsubscribe, send a message with 'unsubscribe linux-mm' in
> the body to majordomo@kvack.org. For more info on Linux MM,
> see: http://www.linux-mm.org/ .
> Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
--
Michal Hocko
SUSE Labs
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web