Lines Matching refs:tsb
63 * tcw_get_tsb - return pointer to tsb associated with tcw
66 * Return pointer to the tsb associated with this tcw.
68 struct tsb *tcw_get_tsb(struct tcw *tcw)
70 return phys_to_virt(tcw->tsb);
236 * tcw_set_tsb - set tsb address of a tcw
238 * @tsb: the tsb address
240 * Set the address of the tsb in the specified tcw.
242 void tcw_set_tsb(struct tcw *tcw, struct tsb *tsb)
244 tcw->tsb = virt_to_phys(tsb);
267 * tsb_init - initialize tsb
268 * @tsb: the tsb address
270 * Initialize the specified tsb by resetting all values to zero.
272 void tsb_init(struct tsb *tsb)
274 memset(tsb, 0, sizeof(*tsb));