Lines Matching refs:tsb
62 * tcw_get_tsb - return pointer to tsb associated with tcw
65 * Return pointer to the tsb associated with this tcw.
67 struct tsb *tcw_get_tsb(struct tcw *tcw)
69 return (struct tsb *) ((addr_t) tcw->tsb);
235 * tcw_set_tsb - set tsb address of a tcw
237 * @tsb: the tsb address
239 * Set the address of the tsb in the specified tcw.
241 void tcw_set_tsb(struct tcw *tcw, struct tsb *tsb)
243 tcw->tsb = (u64) ((addr_t) tsb);
266 * tsb_init - initialize tsb
267 * @tsb: the tsb address
269 * Initialize the specified tsb by resetting all values to zero.
271 void tsb_init(struct tsb *tsb)
273 memset(tsb, 0, sizeof(*tsb));