Searched refs:sent (Results 51 - 75 of 127) sorted by relevance

123456

/linux-master/drivers/net/ppp/
H A Dppp_synctty.c513 * and 7 (code-reject) must be sent as though no options
584 int sent, done = 0; local
595 sent = tty->ops->write(tty, ap->tpkt->data, ap->tpkt->len);
596 if (sent < 0)
598 if (sent < ap->tpkt->len) {
H A Dppp_async.c542 * and 7 (code-reject) must be sent as though no options
644 int avail, sent, done = 0; local
666 sent = tty->ops->write(tty, ap->optr, avail);
667 if (sent < 0)
669 ap->optr += sent;
670 if (sent < avail)
929 * In the situation where the peer has been sent a configure-ack
930 * already, LCP is up once it has sent its configure-ack
931 * so the immediately following packet can be sent with the
936 * sent
[all...]
/linux-master/include/scsi/
H A Dlibiscsi.h96 int sent; /* R2T sequence progress */ member in struct:iscsi_r2t_info
140 return task->unsol_r2t.data_length > task->unsol_r2t.sent;
/linux-master/drivers/xen/
H A Dpvcalls-front.c545 int sent, tot_sent = 0; local
567 sent = __write_ring(map->active.ring,
570 if (sent > 0) {
571 len -= sent;
572 tot_sent += sent;
575 if (sent >= 0 && len > 0 && count < PVCALLS_FRONT_MAX_SPIN)
577 if (sent < 0)
578 tot_sent = sent;
/linux-master/drivers/net/ethernet/google/gve/
H A Dgve_tx.c763 /* If the packet is getting sent, we need to update the skb */
950 int sent = 0, nsegs; local
954 while (sent < budget) {
966 sent++;
969 if (sent > 0) {
974 return sent;
992 int sent = gve_xsk_tx(priv, tx, budget); local
995 tx->xdp_xsk_sent += sent;
997 repoll |= (sent == budget);
/linux-master/drivers/net/ethernet/fujitsu/
H A Dfmvj18x_cs.c116 u_short sent; member in struct:local_info
746 dev->stats.tx_packets += lp->sent ;
747 lp->sent = 0 ;
750 lp->sent = lp->tx_queue ;
800 lp->sent = 0;
850 lp->sent = lp->tx_queue ;
/linux-master/tools/testing/selftests/bpf/prog_tests/
H A Dsockmap_basic.c509 int expected, zero = 0, sent, recvd, avail; local
548 sent = xsend(p1, &buf, sizeof(buf), 0);
549 ASSERT_EQ(sent, sizeof(buf), "xsend(p0)");
573 int err, s, c1, p1, zero = 0, sent, recvd, avail; local
589 sent = xsend(p1, snd, sizeof(snd), 0);
590 ASSERT_EQ(sent, sizeof(snd), "xsend(p1)");
/linux-master/net/bluetooth/
H A Dhci_core.c2960 /* Detect if ISO packet has been sent as ACL */
3125 * Therefore, all standard HCI commands must be sent via the
3148 /* Get data from the previously sent command */
3164 /* Get data from the previously sent command */
3169 /* Check if opcode matches last sent command */
3435 if (c->sent < min) {
3436 min = c->sent;
3463 if (c->type == type && c->sent) {
3520 if (conn->sent < min) {
3521 min = conn->sent;
3937 struct hci_command_hdr *sent; local
[all...]
/linux-master/fs/smb/client/
H A Dtransport.c61 /* when mid allocated can be before when sent */
176 * @sent: amount of data sent on socket is stored here
183 size_t *sent)
189 *sent = 0;
234 cifs_server_dbg(VFS, "tcp sent no data\n");
240 *sent += rc;
281 size_t total_len = 0, sent, size; local
330 rc = smb_send_kvec(server, &smb_msg, &sent);
334 total_len += sent;
182 smb_send_kvec(struct TCP_Server_Info *server, struct msghdr *smb_msg, size_t *sent) argument
[all...]
/linux-master/drivers/usb/gadget/udc/
H A Dfsl_qe_udc.c1145 last_len = min_t(unsigned, req->req.length - ep->sent,
1150 ep->sent += asent;
1167 if (((ep->tx_req->req.length - ep->sent) <= 0) && !zlp) {
1171 ep->sent = 0;
1181 ep->sent = 0;
1195 size = min_t(u32, (ep->tx_req->req.length - ep->sent),
1197 buf = (u8 *)ep->tx_req->req.buf + ep->sent;
1235 if ((req->req.length - ep->sent) > 0)
1321 ep->sent += asent;
1328 if ((ep->tx_req->req.length - ep->sent) <
[all...]
/linux-master/drivers/net/
H A Dveth.c548 int sent, i, err = 0, drops; local
550 sent = veth_xdp_xmit(rq->dev, bq->count, bq->q, 0, false);
551 if (sent < 0) {
552 err = sent;
553 sent = 0;
556 for (i = sent; unlikely(i < bq->count); i++)
559 drops = bq->count - sent;
560 trace_xdp_bulk_tx(rq->dev, sent, drops, err);
563 rq->stats.vs.xdp_tx += sent;
/linux-master/drivers/scsi/
H A Dlibiscsi_tcp.c625 "Target has sent more R2Ts than it "
638 r2t->sent = 0;
1037 if (r2t->data_length <= r2t->sent) {
1107 r2t->data_offset + r2t->sent, r2t->data_count);
1109 rc = conn->session->tt->init_pdu(task, r2t->data_offset + r2t->sent,
1116 r2t->sent += r2t->data_count;
/linux-master/drivers/net/wireless/mediatek/mt7601u/
H A Dmcu.c116 int sent, ret; local
137 ret = usb_bulk_msg(usb_dev, cmd_pipe, skb->data, skb->len, &sent, 500);
142 if (sent != skb->len)
143 dev_err(dev->dev, "Error: %s sent != skb->len\n", __func__);
/linux-master/net/ipv4/
H A Dtcp_bpf.c386 u32 tosend, origsize, sent, delta = 0; local
449 sent = origsize - msg->sg.size;
488 sk_mem_charge(sk, tosend - sent);
/linux-master/drivers/net/ethernet/
H A Dec_bhf.c99 __le32 sent; member in struct:tx_header
180 return le32_to_cpu(desc->header.sent) & TX_HDR_SENT;
366 priv->tx_descs[i].header.sent = cpu_to_le32(TX_HDR_SENT);
/linux-master/net/hsr/
H A Dhsr_forward.c21 * 1) Use the frames that are sent after node initialization ("HSR_TLV.Type =
277 /* If the original frame was an HSR tagged frame, just clone it to be sent
472 bool sent = false; local
491 if ((port->dev->features & NETIF_F_HW_HSR_DUP) && sent)
494 /* Don't send frame over port where it has been sent before.
532 sent = true;
/linux-master/drivers/infiniband/hw/qib/
H A Dqib_user_sdma.c101 * pkts sent to dma engine are queued on this
105 struct list_head sent; member in struct:qib_user_sdma_queue
199 INIT_LIST_HEAD(&pq->sent);
1076 list_for_each_entry_safe(pkt, pkt_prev, &pq->sent, list) {
1169 list_move_tail(&pkt->list, &pq->sent);
1179 list_splice_init(&pq->sent, &free_list);
1311 list_move_tail(&pkt->list, &pkt->pq->sent);
/linux-master/drivers/net/wireless/broadcom/brcm80211/brcmfmac/
H A Dusb.c884 unsigned int sendlen, sent, dllen; local
910 sent = 0;
917 * the bytes we sent */
918 if ((rdlbytes == sent) && (rdlbytes != dllen)) {
919 if ((dllen-sent) < TRX_RDL_CHUNK)
920 sendlen = dllen-sent;
941 sent += sendlen;
/linux-master/net/sunrpc/
H A Dxprtsock.c923 * 0: The request has been sent
927 * other: Some other error occurred, the request was not sent
941 unsigned int sent; local
957 transport->xmit.offset, rm, &sent);
961 if (likely(sent > 0) || status == 0) {
962 transport->xmit.offset += sent;
994 * 0: The request has been sent
998 * other: Some other error occurred, the request was not sent
1010 unsigned int sent; local
1027 status = xprt_sock_sendmsg(transport->sock, &msg, xdr, 0, 0, &sent);
1097 unsigned int sent; local
2957 unsigned int sent = 0; local
[all...]
/linux-master/scripts/
H A Dparse-maintainers.pl40 L: Mailing list where patches should be sent
/linux-master/net/rds/
H A Dib_send.c710 /* Account the RDS header in the number of bytes we sent, but just once.
867 int sent; local
914 sent = 0;
954 sent += len;
955 rdsdebug("ic %p sent %d remote_addr %llu\n", ic, sent, remote_addr);
/linux-master/net/appletalk/
H A Daarp.c609 goto sent;
619 goto sent;
663 goto sent;
670 sent:
/linux-master/net/bluetooth/rfcomm/
H A Dtty.c356 /* Limit the outstanding number of packets not yet sent to 40 */
788 size_t sent = 0, size; local
801 skb_put_data(skb, buf + sent, size);
805 sent += size;
809 return sent;
/linux-master/net/ceph/
H A Dmessenger_v2.c3458 int sent; local
3461 sent = front_len(con->out_msg) - resid;
3462 dout("%s con %p sent %d resid %d\n", __func__, con, sent, resid);
3464 if (sent) {
3466 crc32c(-1, con->out_msg->front.iov_base, sent);
3479 int sent; local
3482 sent = middle_len(con->out_msg) - resid;
3483 dout("%s con %p sent %d resid %d\n", __func__, con, sent, resi
3550 int sent, resid; /* current piece of data */ local
[all...]
/linux-master/drivers/block/aoe/
H A Daoecmd.c400 f->sent = ktime_get();
490 f->sent = ktime_get();
499 u64 delta = ktime_to_ns(ktime_sub(ktime_get(), f->sent));
572 nf->sent = f->sent;
616 f->sent = ktime_get();
1406 f->sent = ktime_get();

Completed in 401 milliseconds

123456