Lines Matching refs:new_tail

228 						  unsigned long *new_tail)  in handshake_get_tx_packet()  argument
237 *new_tail = t; in handshake_get_tx_packet()
259 unsigned long limit, tail, new_tail, diff; in tx_has_space_for() local
264 new_tail = tx_advance(lp, tail); in tx_has_space_for()
265 if (new_tail == limit) in tx_has_space_for()
268 if (limit > new_tail) in tx_has_space_for()
269 diff = limit - new_tail; in tx_has_space_for()
272 ((lp->tx_num_entries * LDC_PACKET_SIZE) - new_tail)); in tx_has_space_for()
283 unsigned long *new_tail) in data_get_tx_packet() argument
293 *new_tail = t; in data_get_tx_packet()
349 unsigned long new_tail) in send_tx_packet() argument
353 return set_tx_tail(lp, new_tail); in send_tx_packet()
359 unsigned long *new_tail) in handshake_compose_ctrl() argument
361 struct ldc_packet *p = handshake_get_tx_packet(lp, new_tail); in handshake_compose_ctrl()
378 unsigned long new_tail; in start_handshake() local
386 ver, sizeof(*ver), &new_tail); in start_handshake()
388 int err = send_tx_packet(lp, p, new_tail); in start_handshake()
401 unsigned long new_tail; in send_version_nack() local
407 &ver, sizeof(ver), &new_tail); in send_version_nack()
412 return send_tx_packet(lp, p, new_tail); in send_version_nack()
421 unsigned long new_tail; in send_version_ack() local
424 vp, sizeof(*vp), &new_tail); in send_version_ack()
429 return send_tx_packet(lp, p, new_tail); in send_version_ack()
437 unsigned long new_tail; in send_rts() local
440 &new_tail); in send_rts()
449 return send_tx_packet(lp, p, new_tail); in send_rts()
457 unsigned long new_tail; in send_rtr() local
460 &new_tail); in send_rtr()
468 return send_tx_packet(lp, p, new_tail); in send_rtr()
476 unsigned long new_tail; in send_rdx() local
479 &new_tail); in send_rdx()
488 return send_tx_packet(lp, p, new_tail); in send_rdx()
496 unsigned long new_tail; in send_data_nack() local
499 p = data_get_tx_packet(lp, &new_tail); in send_data_nack()
512 err = send_tx_packet(lp, p, new_tail); in send_data_nack()
635 unsigned long new_tail; in process_ver_nack() local
646 &new_tail); in process_ver_nack()
650 return send_tx_packet(lp, p, new_tail); in process_ver_nack()
1453 unsigned long new_tail; in write_raw() local
1459 p = data_get_tx_packet(lp, &new_tail); in write_raw()
1465 err = send_tx_packet(lp, p, new_tail); in write_raw()
1661 unsigned long new_tail; in send_data_ack() local
1664 p = data_get_tx_packet(lp, &new_tail); in send_data_ack()
1675 err = send_tx_packet(lp, p, new_tail); in send_data_ack()