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 in drm_wait_vblank_ioctl()
2074 u64 req_seq; drm_crtc_queue_sequence_ioctl() local
[all...]
/linux/net/tls/
H A Dtls_device.c714 u32 req_seq = resync_req >> 32; in tls_device_rx_resync_async() local
715 u32 req_end = req_seq + ((resync_req >> 16) & 0xffff); in tls_device_rx_resync_async()
728 * req_seq <= seq <= end_seq, and wait for real resync request in tls_device_rx_resync_async()
730 if (before(*seq, req_seq)) in tls_device_rx_resync_async()
745 if (req_seq == resync_async->log[i] && in tls_device_rx_resync_async()
748 *seq = req_seq; in tls_device_rx_resync_async()
757 if (req_seq == *seq && in tls_device_rx_resync_async()
774 u32 req_seq; in tls_device_rx_resync_new_rec() local
788 req_seq = resync_req >> 32; in tls_device_rx_resync_new_rec()
792 if (likely(!is_req_pending) || req_seq ! in tls_device_rx_resync_new_rec()
[all...]
/linux/tools/net/ynl/pyynl/lib/
H A Dynl.py1027 def _encode_message(self, op, vals, flags, req_seq): argument
1032 msg = self.nlproto.message(nl_flags, op.req_value, 1, req_seq)
1043 req_seq = random.randint(1024, 65535)
1047 msg = self._encode_message(op, vals, flags, req_seq)
1048 reqs_by_seq[req_seq] = (op, vals, msg, flags)
1050 req_seq += 1