Home
last modified time | relevance | path

Searched refs:src_cid (Results 1 – 12 of 12) sorted by relevance

/openbmc/linux/include/trace/events/
H A Dvsock_virtio_transport_common.h41 __u32 src_cid, __u32 src_port,
49 src_cid, src_port,
57 __field(__u32, src_cid)
67 __entry->src_cid = src_cid;
77 __entry->src_cid, __entry->src_port,
87 __u32 src_cid, __u32 src_port,
97 src_cid, src_port,
107 __field(__u32, src_cid)
119 __entry->src_cid = src_cid;
132 __entry->src_cid, __entry->src_port,
/openbmc/linux/net/vmw_vsock/
H A Dvirtio_transport_common.c50 u32 src_cid, in virtio_transport_alloc_skb() argument
68 hdr->src_cid = cpu_to_le64(src_cid); in virtio_transport_alloc_skb()
95 trace_virtio_transport_alloc_pkt(src_cid, src_port, in virtio_transport_alloc_skb()
140 hdr->src_cid = pkt_hdr->src_cid; in virtio_transport_build_skb()
205 u32 src_cid, src_port, dst_cid, dst_port; in virtio_transport_send_pkt_info() local
218 src_cid = t_ops->transport.get_local_cid(); in virtio_transport_send_pkt_info()
246 src_cid, src_port, in virtio_transport_send_pkt_info()
975 le64_to_cpu(hdr->src_cid), in virtio_transport_reset_no_sock()
1275 .remote_cid = le64_to_cpu(hdr->src_cid), in virtio_transport_send_response()
1353 vsock_addr_init(&vchild->remote_addr, le64_to_cpu(hdr->src_cid), in virtio_transport_recv_listen()
[all …]
/openbmc/linux/drivers/misc/vmw_vmci/
H A Dvmci_context.c1036 int vmci_ctx_notify_dbell(u32 src_cid, in vmci_ctx_notify_dbell() argument
1053 if (src_cid != handle.context) { in vmci_ctx_notify_dbell()
1056 if (VMCI_CONTEXT_IS_VM(src_cid) && in vmci_ctx_notify_dbell()
1059 src_cid, handle.context); in vmci_ctx_notify_dbell()
1071 if (src_cid != VMCI_HOST_CONTEXT_ID || in vmci_ctx_notify_dbell()
1073 src_priv_flags = vmci_context_get_priv_flags(src_cid); in vmci_ctx_notify_dbell()
1083 result = vmci_dbell_host_context_notify(src_cid, handle); in vmci_ctx_notify_dbell()
H A Dvmci_doorbell.h37 int vmci_dbell_host_context_notify(u32 src_cid, struct vmci_handle handle);
H A Dvmci_doorbell.c292 int vmci_dbell_host_context_notify(u32 src_cid, struct vmci_handle handle) in vmci_dbell_host_context_notify() argument
/openbmc/linux/include/uapi/linux/
H A Dvsockmon.h35 __le64 src_cid; member
H A Dvirtio_vsock.h57 __le64 src_cid; member
/openbmc/qemu/include/standard-headers/linux/
H A Dvirtio_vsock.h57 uint64_t src_cid; member
/openbmc/linux/drivers/net/ethernet/microchip/vcap/
H A Dvcap_api.c45 int src_cid; /* source chain id */ member
1677 bool vcap_is_next_lookup(struct vcap_control *vctrl, int src_cid, int dst_cid) in vcap_is_next_lookup() argument
1686 next_cid = roundup(src_cid + 1, VCAP_CID_LOOKUP_SIZE); in vcap_is_next_lookup()
2175 struct net_device *ndev, int src_cid) in vcap_is_chain_used() argument
2182 if (eport->src_cid == src_cid && eport->ndev == ndev) in vcap_is_chain_used()
2200 if (eport->src_cid == dst_cid) in vcap_get_next_chain()
2223 if (elem->src_cid == 0 && elem->ndev == ndev) { in vcap_path_exist()
3104 unsigned long cookie, int src_cid, int dst_cid) in vcap_enable() argument
3109 if (src_cid >= dst_cid) in vcap_enable()
3122 eport->src_cid = src_cid; in vcap_enable()
[all …]
H A Dvcap_api_kunit.c2203 .src_cid = 0, in vcap_api_rule_chain_path_test()
2209 .src_cid = 1000000, in vcap_api_rule_chain_path_test()
2215 .src_cid = 1100000, in vcap_api_rule_chain_path_test()
/openbmc/linux/kernel/sched/
H A Dcore.c11725 int src_cid, last_mm_cid; in __sched_mm_cid_migrate_from_fetch_cid() local
11738 src_cid = READ_ONCE(src_pcpu_cid->cid); in __sched_mm_cid_migrate_from_fetch_cid()
11739 if (!mm_cid_is_valid(src_cid) || last_mm_cid != src_cid) in __sched_mm_cid_migrate_from_fetch_cid()
11745 * there is no need to move src_cid to the destination cpu. in __sched_mm_cid_migrate_from_fetch_cid()
11756 return src_cid; in __sched_mm_cid_migrate_from_fetch_cid()
11763 int src_cid) in __sched_mm_cid_migrate_from_try_steal_cid() argument
11769 if (src_cid == -1) in __sched_mm_cid_migrate_from_try_steal_cid()
11776 lazy_cid = mm_cid_set_lazy_put(src_cid); in __sched_mm_cid_migrate_from_try_steal_cid()
11777 if (!try_cmpxchg(&src_pcpu_cid->cid, &src_cid, lazy_ci in __sched_mm_cid_migrate_from_try_steal_cid()
11828 int src_cid, dst_cid, src_cpu; sched_mm_cid_migrate_to() local
[all...]
/openbmc/linux/drivers/vhost/
H A Dvsock.c523 if (le64_to_cpu(hdr->src_cid) == vsock->guest_cid && in vhost_vsock_handle_tx_kick()