Home
last modified time | relevance | path

Searched refs:outreq (Results 1 – 4 of 4) sorted by relevance

/Linux-v4.19/net/sctp/
Dstream.c586 struct sctp_strreset_outreq *outreq = param.v; in sctp_process_strreset_outreq() local
593 request_seq = ntohl(outreq->request_seq); in sctp_process_strreset_outreq()
595 if (ntohl(outreq->send_reset_at_tsn) > in sctp_process_strreset_outreq()
621 asoc, outreq->response_seq, in sctp_process_strreset_outreq()
645 nums = (ntohs(param.p->length) - sizeof(*outreq)) / sizeof(__u16); in sctp_process_strreset_outreq()
647 str_p = outreq->list_of_streams; in sctp_process_strreset_outreq()
1017 struct sctp_strreset_outreq *outreq; in sctp_process_strreset_resp() local
1020 outreq = (struct sctp_strreset_outreq *)req; in sctp_process_strreset_resp()
1021 str_p = outreq->list_of_streams; in sctp_process_strreset_resp()
1022 nums = (ntohs(outreq->param_hdr.length) - sizeof(*outreq)) / in sctp_process_strreset_resp()
Dsm_make_chunk.c3645 struct sctp_strreset_outreq outreq; in sctp_make_strreset_req() local
3650 outlen = (sizeof(outreq) + stream_len) * out; in sctp_make_strreset_req()
3658 outreq.param_hdr.type = SCTP_PARAM_RESET_OUT_REQUEST; in sctp_make_strreset_req()
3659 outreq.param_hdr.length = htons(outlen); in sctp_make_strreset_req()
3660 outreq.request_seq = htonl(asoc->strreset_outseq); in sctp_make_strreset_req()
3661 outreq.response_seq = htonl(asoc->strreset_inseq - 1); in sctp_make_strreset_req()
3662 outreq.send_reset_at_tsn = htonl(asoc->next_tsn - 1); in sctp_make_strreset_req()
3664 sctp_addto_chunk(retval, sizeof(outreq), &outreq); in sctp_make_strreset_req()
/Linux-v4.19/drivers/usb/gadget/function/
Df_mass_storage.c369 bh->outreq->length = length; in set_bulk_out_req_length()
583 if (start_transfer(common->fsg, common->fsg->bulk_out, bh->outreq)) in start_out_transfer()
854 if (bh->outreq->status != 0) { in do_write()
862 amount = bh->outreq->actual; in do_write()
914 if (bh->outreq->actual < bh->bulk_out_intended_length) { in do_write()
1479 if (bh->outreq->actual < bh->bulk_out_intended_length || in throw_away_data()
1480 bh->outreq->status != 0) { in throw_away_data()
2071 struct usb_request *req = bh->outreq; in received_cbw()
2209 if (bh->outreq) { in do_set_interface()
2210 usb_ep_free_request(fsg->bulk_out, bh->outreq); in do_set_interface()
[all …]
Dstorage_common.h156 struct usb_request *outreq; member