Lines Matching refs:sequence
213 u8 sequence, const uuid_t *initiator_uuid, const uuid_t *target_uuid, in tbnet_fill_header() argument
220 length_sn |= (sequence << TBIP_HDR_SN_SHIFT) & TBIP_HDR_SN_MASK; in tbnet_fill_header()
232 static int tbnet_login_response(struct tbnet *net, u64 route, u8 sequence, in tbnet_login_response() argument
239 tbnet_fill_header(&reply.hdr, route, sequence, xd->local_uuid, in tbnet_login_response()
249 static int tbnet_login_request(struct tbnet *net, u8 sequence) in tbnet_login_request() argument
256 tbnet_fill_header(&request.hdr, xd->route, sequence, xd->local_uuid, in tbnet_login_request()
269 static int tbnet_logout_response(struct tbnet *net, u64 route, u8 sequence, in tbnet_logout_response() argument
276 tbnet_fill_header(&reply.hdr, route, sequence, xd->local_uuid, in tbnet_logout_response()
406 u32 sequence; in tbnet_handle_packet() local
422 sequence = pkg->hdr.length_sn & TBIP_HDR_SN_MASK; in tbnet_handle_packet()
423 sequence >>= TBIP_HDR_SN_SHIFT; in tbnet_handle_packet()
431 ret = tbnet_login_response(net, route, sequence, in tbnet_handle_packet()
455 ret = tbnet_logout_response(net, route, sequence, command_id); in tbnet_handle_packet()