Searched refs:gp_seq_needed (Results 1 – 4 of 4) sorted by relevance
/Linux-v5.10/kernel/rcu/ |
D | tree_stall.h | 681 (long)data_race(rcu_get_root()->gp_seq_needed), in show_rcu_gp_kthreads() 685 READ_ONCE(rnp->gp_seq_needed))) in show_rcu_gp_kthreads() 689 (long)data_race(rnp->gp_seq_needed)); in show_rcu_gp_kthreads() 696 READ_ONCE(rdp->gp_seq_needed))) in show_rcu_gp_kthreads() 699 cpu, (long)data_race(rdp->gp_seq_needed)); in show_rcu_gp_kthreads() 727 READ_ONCE(rnp_root->gp_seq_needed)) || in rcu_check_gp_start_stall() 740 READ_ONCE(rnp_root->gp_seq_needed)) || in rcu_check_gp_start_stall() 754 READ_ONCE(rnp_root->gp_seq_needed)) || in rcu_check_gp_start_stall()
|
D | tree.c | 1370 if (ULONG_CMP_GE(rnp->gp_seq_needed, gp_seq_req) || in rcu_start_this_gp() 1378 WRITE_ONCE(rnp->gp_seq_needed, gp_seq_req); in rcu_start_this_gp() 1412 if (ULONG_CMP_LT(gp_seq_req, rnp->gp_seq_needed)) { in rcu_start_this_gp() 1413 WRITE_ONCE(rnp_start->gp_seq_needed, rnp->gp_seq_needed); in rcu_start_this_gp() 1414 WRITE_ONCE(rdp->gp_seq_needed, rnp->gp_seq_needed); in rcu_start_this_gp() 1430 needmore = ULONG_CMP_LT(rnp->gp_seq, rnp->gp_seq_needed); in rcu_future_gp_cleanup() 1432 rnp->gp_seq_needed = rnp->gp_seq; /* Avoid counter wrap. */ in rcu_future_gp_cleanup() 1527 if (!READ_ONCE(rdp->gpwrap) && ULONG_CMP_GE(rdp->gp_seq_needed, c)) { in rcu_accelerate_cbs_unlocked() 1643 if (ULONG_CMP_LT(rdp->gp_seq_needed, rnp->gp_seq_needed) || rdp->gpwrap) in __note_gp_changes() 1644 WRITE_ONCE(rdp->gp_seq_needed, rnp->gp_seq_needed); in __note_gp_changes() [all …]
|
D | tree.h | 45 unsigned long gp_seq_needed; /* Track furthest future GP request. */ member 153 unsigned long gp_seq_needed; /* Track furthest future GP request. */ member
|
/Linux-v5.10/Documentation/RCU/Design/Data-Structures/ |
D | Data-Structures.rst | 384 2 unsigned long gp_seq_needed; 395 The ``->gp_seq_needed`` fields record the furthest-in-the-future grace 398 equals or exceeds that of the ``->gp_seq_needed`` field. 409 | No, because if the ``->gp_seq_needed`` field lags behind the | 410 | ``->gp_seq`` field, the ``->gp_seq_needed`` field will be updated at | 830 2 unsigned long gp_seq_needed; 837 ``->gp_seq_needed`` field is the counterpart of the field of the same
|