Home
last modified time | relevance | path

Searched refs:req_seq (Results 1 – 3 of 3) sorted by relevance

/linux/drivers/gpu/drm/
H A Ddrm_vblank.c1608 u64 req_seq, in drm_queue_vblank_event() argument
1658 req_seq, seq, pipe); in drm_queue_vblank_event()
1660 trace_drm_vblank_event_queued(file_priv, pipe, req_seq); in drm_queue_vblank_event()
1662 e->sequence = req_seq; in drm_queue_vblank_event()
1663 if (drm_vblank_passed(seq, req_seq)) { in drm_queue_vblank_event()
1670 vblwait->reply.sequence = req_seq; in drm_queue_vblank_event()
1741 u64 req_seq, seq; in drm_wait_vblank_ioctl() local
1810 req_seq = seq + vblwait->request.sequence; in drm_wait_vblank_ioctl()
1811 vblwait->request.sequence = req_seq; in drm_wait_vblank_ioctl()
1815 req_seq = widen_32_to_64(vblwait->request.sequence, seq); in drm_wait_vblank_ioctl()
[all …]
/linux/net/tls/
H A Dtls_device.c717 u32 req_seq = resync_req >> 32; in tls_device_rx_resync_async() local
718 u32 req_end = req_seq + ((resync_req >> 16) & 0xffff); in tls_device_rx_resync_async()
735 if (before(*seq, req_seq)) in tls_device_rx_resync_async()
750 if (req_seq == resync_async->log[i] && in tls_device_rx_resync_async()
753 *seq = req_seq; in tls_device_rx_resync_async()
762 if (req_seq == *seq && in tls_device_rx_resync_async()
779 u32 req_seq; in tls_device_rx_resync_new_rec() local
793 req_seq = resync_req >> 32; in tls_device_rx_resync_new_rec()
797 if (likely(!is_req_pending) || req_seq != seq || in tls_device_rx_resync_new_rec()
/linux/tools/net/ynl/pyynl/lib/
H A Dynl.py1094 def _encode_message(self, op, vals, flags, req_seq):
1099 msg = self.nlproto.message(nl_flags, op.req_value, 1, req_seq)
1111 req_seq = random.randint(1024, 65535)
1115 msg = self._encode_message(op, vals, flags, req_seq)
1116 reqs_by_seq[req_seq] = (op, vals, msg, flags)
1118 req_seq += 1
1027 _encode_message(self, op, vals, flags, req_seq) global() argument