Lines Matching +full:over +full:- +full:sampling
1 /* SPDX-License-Identifier: GPL-2.0-only */
3 * Copyright (c) 2007-2014 Nicira, Inc.
21 #include "vport-internal_dev.h"
28 * struct dp_stats_percpu - per-cpu packet processing statistics for a given
54 * struct dp_nlsk_pids - array of netlink portids of for a datapath.
69 * struct datapath - datapath for flow-based packet switching
75 * @stats_percpu: Per-CPU datapath statistics.
111 * struct ovs_skb_cb - OVS data in skb CB
118 * @probability: The sampling probability that was applied to this skb; 0 means
119 * no sampling has occurred; U32_MAX means 100% probability.
128 #define OVS_CB(skb) ((struct ovs_skb_cb *)(skb)->cb)
131 * struct dp_upcall - metadata to include with a packet to send to userspace
133 * @userdata: If nonnull, its variable-length value is passed to userspace as
152 * struct ovs_net - Per net-namespace data for ovs.
166 * enum ovs_pkt_hash_types - hash info to include with a packet
169 * @OVS_PACKET_HASH_L4_BIT: indicates hash is a canonical 4-tuple hash
170 * over transport ports.
195 return read_pnet(&dp->net); in ovs_dp_get_net()
200 write_pnet(&dp->net, net); in ovs_dp_set_net()
232 return vport->dp; in get_dp_rcu()