Skip to content

Commit

Permalink
thp: remove khugepaged_loop
Browse files Browse the repository at this point in the history
Merge khugepaged_loop into khugepaged

Signed-off-by: Xiao Guangrong <xiaoguangrong@linux.vnet.ibm.com>
Cc: Andrea Arcangeli <aarcange@redhat.com>
Cc: Hugh Dickins <hughd@google.com>
Cc: David Rientjes <rientjes@google.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
  • Loading branch information
Xiao Guangrong authored and Linus Torvalds committed Oct 9, 2012
1 parent 26234f3 commit b723178
Showing 1 changed file with 4 additions and 10 deletions.
14 changes: 4 additions & 10 deletions mm/huge_memory.c
Original file line number Diff line number Diff line change
Expand Up @@ -2339,23 +2339,17 @@ static void khugepaged_wait_work(void)
wait_event_freezable(khugepaged_wait, khugepaged_wait_event());
}

static void khugepaged_loop(void)
{
while (likely(khugepaged_enabled())) {
khugepaged_do_scan();
khugepaged_wait_work();
}
}

static int khugepaged(void *none)
{
struct mm_slot *mm_slot;

set_freezable();
set_user_nice(current, 19);

while (!kthread_should_stop())
khugepaged_loop();
while (!kthread_should_stop()) {
khugepaged_do_scan();
khugepaged_wait_work();
}

spin_lock(&khugepaged_mm_lock);
mm_slot = khugepaged_scan.mm_slot;
Expand Down

0 comments on commit b723178

Please sign in to comment.