Home
last modified time | relevance | path

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

/OK3568_Linux_fs/kernel/arch/sparc/kernel/
H A 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 …]
/OK3568_Linux_fs/kernel/mm/kasan/
H A Dquarantine.c209 int new_tail; in kasan_quarantine_put() local
211 new_tail = quarantine_tail + 1; in kasan_quarantine_put()
212 if (new_tail == QUARANTINE_BATCHES) in kasan_quarantine_put()
213 new_tail = 0; in kasan_quarantine_put()
214 if (new_tail != quarantine_head) in kasan_quarantine_put()
215 quarantine_tail = new_tail; in kasan_quarantine_put()
/OK3568_Linux_fs/kernel/fs/gfs2/
H A Dlog.c368 static void ail2_empty(struct gfs2_sbd *sdp, unsigned int new_tail) in ail2_empty() argument
372 int wrap = (new_tail < old_tail); in ail2_empty()
379 b = (tr->tr_first < new_tail); in ail2_empty()
578 static void log_pull_tail(struct gfs2_sbd *sdp, unsigned int new_tail) in log_pull_tail() argument
580 unsigned int dist = log_distance(sdp, new_tail, sdp->sd_log_tail); in log_pull_tail()
582 ail2_empty(sdp, new_tail); in log_pull_tail()
589 sdp->sd_log_tail = new_tail; in log_pull_tail()
/OK3568_Linux_fs/kernel/drivers/net/ethernet/qualcomm/
H A Dqca_spi.c723 u16 new_tail; in qcaspi_netdev_xmit() local
766 new_tail = qca->txr.tail + 1; in qcaspi_netdev_xmit()
767 if (new_tail >= qca->txr.count) in qcaspi_netdev_xmit()
768 new_tail = 0; in qcaspi_netdev_xmit()
771 qca->txr.tail = new_tail; in qcaspi_netdev_xmit()
/OK3568_Linux_fs/kernel/drivers/atm/
H A Dhe.c1883 struct he_rbp *new_tail; in he_service_rbpl() local
1894 new_tail = (struct he_rbp *) ((unsigned long)he_dev->rbpl_base | in he_service_rbpl()
1898 if (new_tail == rbpl_head) in he_service_rbpl()
1916 new_tail->idx = i << RBP_IDX_OFFSET; in he_service_rbpl()
1917 new_tail->phys = mapping + offsetof(struct he_buff, data); in he_service_rbpl()
1919 he_dev->rbpl_tail = new_tail; in he_service_rbpl()
2055 struct he_tpdrq *new_tail; in __enqueue_tpd() local
2061 new_tail = (struct he_tpdrq *) ((unsigned long) he_dev->tpdrq_base | in __enqueue_tpd()
2071 if (new_tail == he_dev->tpdrq_head) { in __enqueue_tpd()
2076 if (new_tail == he_dev->tpdrq_head) { in __enqueue_tpd()
[all …]
/OK3568_Linux_fs/u-boot/drivers/net/
H A Dmacb.c349 unsigned int new_tail) in reclaim_rx_buffers() argument
356 while (i > new_tail) { in reclaim_rx_buffers()
363 while (i < new_tail) { in reclaim_rx_buffers()
370 macb->rx_tail = new_tail; in reclaim_rx_buffers()
/OK3568_Linux_fs/kernel/drivers/crypto/
H A Dn2_core.c202 unsigned long hv_ret, new_tail; in spu_queue_submit() local
204 new_tail = spu_next_offset(q, last - q->q); in spu_queue_submit()
206 hv_ret = sun4v_ncs_settail(q->qhandle, new_tail); in spu_queue_submit()
208 q->tail = new_tail; in spu_queue_submit()