forked from mirrors/linux
		
	trace: 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: Steven Rostedt <rostedt@goodmis.org> Cc: Ingo Molnar <mingo@redhat.com>
This commit is contained in:
		
							parent
							
								
									a7e6425ea5
								
							
						
					
					
						commit
						e31d28b6ab
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
					@ -165,7 +165,7 @@ static int benchmark_event_kthread(void *arg)
 | 
				
			||||||
		 * this thread will never voluntarily schedule which would
 | 
							 * this thread will never voluntarily schedule which would
 | 
				
			||||||
		 * block synchronize_rcu_tasks() indefinitely.
 | 
							 * block synchronize_rcu_tasks() indefinitely.
 | 
				
			||||||
		 */
 | 
							 */
 | 
				
			||||||
		cond_resched_rcu_qs();
 | 
							cond_resched();
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	return 0;
 | 
						return 0;
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue