Home
last modified time | relevance | path

Searched refs:new_tail (Results 1 – 6 of 6) sorted by relevance

/Linux-v4.19/arch/sparc/kernel/
Dldc.c221 unsigned long *new_tail) in handshake_get_tx_packet() argument
230 *new_tail = t; in handshake_get_tx_packet()
252 unsigned long limit, tail, new_tail, diff; in tx_has_space_for() local
257 new_tail = tx_advance(lp, tail); in tx_has_space_for()
258 if (new_tail == limit) in tx_has_space_for()
261 if (limit > new_tail) in tx_has_space_for()
262 diff = limit - new_tail; in tx_has_space_for()
265 ((lp->tx_num_entries * LDC_PACKET_SIZE) - new_tail)); in tx_has_space_for()
276 unsigned long *new_tail) in data_get_tx_packet() argument
286 *new_tail = t; in data_get_tx_packet()
[all …]
/Linux-v4.19/mm/kasan/
Dquarantine.c198 int new_tail; in quarantine_put() local
200 new_tail = quarantine_tail + 1; in quarantine_put()
201 if (new_tail == QUARANTINE_BATCHES) in quarantine_put()
202 new_tail = 0; in quarantine_put()
203 if (new_tail != quarantine_head) in quarantine_put()
204 quarantine_tail = new_tail; in quarantine_put()
/Linux-v4.19/fs/gfs2/
Dlog.c290 static void ail2_empty(struct gfs2_sbd *sdp, unsigned int new_tail) in ail2_empty() argument
294 int wrap = (new_tail < old_tail); in ail2_empty()
301 b = (tr->tr_first < new_tail); in ail2_empty()
501 static void log_pull_tail(struct gfs2_sbd *sdp, unsigned int new_tail) in log_pull_tail() argument
503 unsigned int dist = log_distance(sdp, new_tail, sdp->sd_log_tail); in log_pull_tail()
505 ail2_empty(sdp, new_tail); in log_pull_tail()
512 sdp->sd_log_tail = new_tail; in log_pull_tail()
/Linux-v4.19/drivers/net/ethernet/qualcomm/
Dqca_spi.c703 u16 new_tail; in qcaspi_netdev_xmit() local
746 new_tail = qca->txr.tail + 1; in qcaspi_netdev_xmit()
747 if (new_tail >= qca->txr.count) in qcaspi_netdev_xmit()
748 new_tail = 0; in qcaspi_netdev_xmit()
751 qca->txr.tail = new_tail; in qcaspi_netdev_xmit()
/Linux-v4.19/drivers/atm/
Dhe.c1884 struct he_rbp *new_tail; in he_service_rbpl() local
1895 new_tail = (struct he_rbp *) ((unsigned long)he_dev->rbpl_base | in he_service_rbpl()
1899 if (new_tail == rbpl_head) in he_service_rbpl()
1917 new_tail->idx = i << RBP_IDX_OFFSET; in he_service_rbpl()
1918 new_tail->phys = mapping + offsetof(struct he_buff, data); in he_service_rbpl()
1920 he_dev->rbpl_tail = new_tail; in he_service_rbpl()
2056 struct he_tpdrq *new_tail; in __enqueue_tpd() local
2062 new_tail = (struct he_tpdrq *) ((unsigned long) he_dev->tpdrq_base | in __enqueue_tpd()
2072 if (new_tail == he_dev->tpdrq_head) { in __enqueue_tpd()
2077 if (new_tail == he_dev->tpdrq_head) { in __enqueue_tpd()
[all …]
/Linux-v4.19/drivers/crypto/
Dn2_core.c200 unsigned long hv_ret, new_tail; in spu_queue_submit() local
202 new_tail = spu_next_offset(q, last - q->q); in spu_queue_submit()
204 hv_ret = sun4v_ncs_settail(q->qhandle, new_tail); in spu_queue_submit()
206 q->tail = new_tail; in spu_queue_submit()