diff options
author | Paul E. McKenney <paulmck@linux.vnet.ibm.com> | 2017-10-24 11:22:18 -0400 |
---|---|---|
committer | Paul E. McKenney <paulmck@linux.vnet.ibm.com> | 2017-11-28 19:00:28 -0500 |
commit | 50d4fb781287b47c4c2d455e3395783c1f06a3a5 (patch) | |
tree | 43ecdd409850b3bf00f89c91d75d5bf28689e177 /mm/mlock.c | |
parent | ffa53c5863ddb265f9a25729023f4d0409cdacf7 (diff) |
mm: Eliminate cond_resched_rcu_qs() in favor of cond_resched()
Now that cond_resched() also provides RCU quiescent states when
needed, it can be used in place of cond_resched_rcu_qs(). This
commit therefore makes this change.
Signed-off-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: "Kirill A. Shutemov" <kirill.shutemov@linux.intel.com>
Cc: Vlastimil Babka <vbabka@suse.cz>
Diffstat (limited to 'mm/mlock.c')
-rw-r--r-- | mm/mlock.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/mlock.c b/mm/mlock.c index 30472d438794..f7f54fd2e13f 100644 --- a/mm/mlock.c +++ b/mm/mlock.c | |||
@@ -779,7 +779,7 @@ static int apply_mlockall_flags(int flags) | |||
779 | 779 | ||
780 | /* Ignore errors */ | 780 | /* Ignore errors */ |
781 | mlock_fixup(vma, &prev, vma->vm_start, vma->vm_end, newflags); | 781 | mlock_fixup(vma, &prev, vma->vm_start, vma->vm_end, newflags); |
782 | cond_resched_rcu_qs(); | 782 | cond_resched(); |
783 | } | 783 | } |
784 | out: | 784 | out: |
785 | return 0; | 785 | return 0; |