mm/slab: sanity-check page type when looking up cache
[linux/fpc-iii.git] / kernel / rcu / rcu_segcblist.h
blob71b64648464e464961f3835d6010ec353cf6262e
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3 * RCU segmented callback lists, internal-to-rcu header file
5 * Copyright IBM Corporation, 2017
7 * Authors: Paul E. McKenney <paulmck@linux.ibm.com>
8 */
10 #include <linux/rcu_segcblist.h>
13 * Account for the fact that a previously dequeued callback turned out
14 * to be marked as lazy.
16 static inline void rcu_cblist_dequeued_lazy(struct rcu_cblist *rclp)
18 rclp->len_lazy--;
21 void rcu_cblist_init(struct rcu_cblist *rclp);
22 struct rcu_head *rcu_cblist_dequeue(struct rcu_cblist *rclp);
25 * Is the specified rcu_segcblist structure empty?
27 * But careful! The fact that the ->head field is NULL does not
28 * necessarily imply that there are no callbacks associated with
29 * this structure. When callbacks are being invoked, they are
30 * removed as a group. If callback invocation must be preempted,
31 * the remaining callbacks will be added back to the list. Either
32 * way, the counts are updated later.
34 * So it is often the case that rcu_segcblist_n_cbs() should be used
35 * instead.
37 static inline bool rcu_segcblist_empty(struct rcu_segcblist *rsclp)
39 return !rsclp->head;
42 /* Return number of callbacks in segmented callback list. */
43 static inline long rcu_segcblist_n_cbs(struct rcu_segcblist *rsclp)
45 return READ_ONCE(rsclp->len);
48 /* Return number of lazy callbacks in segmented callback list. */
49 static inline long rcu_segcblist_n_lazy_cbs(struct rcu_segcblist *rsclp)
51 return rsclp->len_lazy;
54 /* Return number of lazy callbacks in segmented callback list. */
55 static inline long rcu_segcblist_n_nonlazy_cbs(struct rcu_segcblist *rsclp)
57 return rsclp->len - rsclp->len_lazy;
61 * Is the specified rcu_segcblist enabled, for example, not corresponding
62 * to an offline or callback-offloaded CPU?
64 static inline bool rcu_segcblist_is_enabled(struct rcu_segcblist *rsclp)
66 return !!rsclp->tails[RCU_NEXT_TAIL];
70 * Are all segments following the specified segment of the specified
71 * rcu_segcblist structure empty of callbacks? (The specified
72 * segment might well contain callbacks.)
74 static inline bool rcu_segcblist_restempty(struct rcu_segcblist *rsclp, int seg)
76 return !*rsclp->tails[seg];
80 * Interim function to return rcu_segcblist head pointer. Longer term, the
81 * rcu_segcblist will be used more pervasively, removing the need for this
82 * function.
84 static inline struct rcu_head *rcu_segcblist_head(struct rcu_segcblist *rsclp)
86 return rsclp->head;
90 * Interim function to return rcu_segcblist head pointer. Longer term, the
91 * rcu_segcblist will be used more pervasively, removing the need for this
92 * function.
94 static inline struct rcu_head **rcu_segcblist_tail(struct rcu_segcblist *rsclp)
96 WARN_ON_ONCE(rcu_segcblist_empty(rsclp));
97 return rsclp->tails[RCU_NEXT_TAIL];
100 void rcu_segcblist_init(struct rcu_segcblist *rsclp);
101 void rcu_segcblist_disable(struct rcu_segcblist *rsclp);
102 bool rcu_segcblist_ready_cbs(struct rcu_segcblist *rsclp);
103 bool rcu_segcblist_pend_cbs(struct rcu_segcblist *rsclp);
104 struct rcu_head *rcu_segcblist_first_cb(struct rcu_segcblist *rsclp);
105 struct rcu_head *rcu_segcblist_first_pend_cb(struct rcu_segcblist *rsclp);
106 void rcu_segcblist_enqueue(struct rcu_segcblist *rsclp,
107 struct rcu_head *rhp, bool lazy);
108 bool rcu_segcblist_entrain(struct rcu_segcblist *rsclp,
109 struct rcu_head *rhp, bool lazy);
110 void rcu_segcblist_extract_count(struct rcu_segcblist *rsclp,
111 struct rcu_cblist *rclp);
112 void rcu_segcblist_extract_done_cbs(struct rcu_segcblist *rsclp,
113 struct rcu_cblist *rclp);
114 void rcu_segcblist_extract_pend_cbs(struct rcu_segcblist *rsclp,
115 struct rcu_cblist *rclp);
116 void rcu_segcblist_insert_count(struct rcu_segcblist *rsclp,
117 struct rcu_cblist *rclp);
118 void rcu_segcblist_insert_done_cbs(struct rcu_segcblist *rsclp,
119 struct rcu_cblist *rclp);
120 void rcu_segcblist_insert_pend_cbs(struct rcu_segcblist *rsclp,
121 struct rcu_cblist *rclp);
122 void rcu_segcblist_advance(struct rcu_segcblist *rsclp, unsigned long seq);
123 bool rcu_segcblist_accelerate(struct rcu_segcblist *rsclp, unsigned long seq);
124 void rcu_segcblist_merge(struct rcu_segcblist *dst_rsclp,
125 struct rcu_segcblist *src_rsclp);