aboutsummaryrefslogtreecommitdiffstats
path: root/kernel
diff options
context:
space:
mode:
Diffstat (limited to 'kernel')
-rw-r--r--kernel/rcutiny.c2
-rw-r--r--kernel/rcutree.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/kernel/rcutiny.c b/kernel/rcutiny.c
index 0c343b9a46d5..4d60fbc9c64c 100644
--- a/kernel/rcutiny.c
+++ b/kernel/rcutiny.c
@@ -167,7 +167,7 @@ static void rcu_process_callbacks(struct rcu_ctrlblk *rcp)
167 prefetch(next); 167 prefetch(next);
168 debug_rcu_head_unqueue(list); 168 debug_rcu_head_unqueue(list);
169 local_bh_disable(); 169 local_bh_disable();
170 list->func(list); 170 __rcu_reclaim(list);
171 local_bh_enable(); 171 local_bh_enable();
172 list = next; 172 list = next;
173 RCU_TRACE(cb_count++); 173 RCU_TRACE(cb_count++);
diff --git a/kernel/rcutree.c b/kernel/rcutree.c
index b579e4f97210..2c07adb97088 100644
--- a/kernel/rcutree.c
+++ b/kernel/rcutree.c
@@ -1206,7 +1206,7 @@ static void rcu_do_batch(struct rcu_state *rsp, struct rcu_data *rdp)
1206 next = list->next; 1206 next = list->next;
1207 prefetch(next); 1207 prefetch(next);
1208 debug_rcu_head_unqueue(list); 1208 debug_rcu_head_unqueue(list);
1209 list->func(list); 1209 __rcu_reclaim(list);
1210 list = next; 1210 list = next;
1211 if (++count >= rdp->blimit) 1211 if (++count >= rdp->blimit)
1212 break; 1212 break;