mirror of
https://github.com/openvswitch/ovs
synced 2025-08-31 06:15:47 +00:00
dpif-netlink: Generate ufids for installing TC flowers
To support installing the TC flowers to HW, via "ovs-appctl dpctl/add-flow" command, there should be an ufid. This patch will check whether ufid exists, if not, generate an ufid. Should to know that when processing upcall packets, ufid is generated in parse_odp_packet for kernel datapath. Configuring the max-idle/max-revalidator, may help testing this patch. Signed-off-by: Tonghao Zhang <xiangxia.m.yue@gmail.com> Acked-by: Roi Dayan <roid@mellanox.com> Signed-off-by: Simon Horman <simon.horman@netronome.com>
This commit is contained in:
committed by
Simon Horman
parent
ace0310f3f
commit
e61984e781
@@ -2231,12 +2231,55 @@ dpif_netlink_operate_chunks(struct dpif_netlink *dpif, struct dpif_op **ops,
|
||||
}
|
||||
}
|
||||
|
||||
static void
|
||||
dpif_netlink_try_update_ufid__(struct dpif_op *op, ovs_u128 *ufid)
|
||||
{
|
||||
switch (op->type) {
|
||||
case DPIF_OP_FLOW_PUT:
|
||||
if (!op->flow_put.ufid) {
|
||||
odp_flow_key_hash(op->flow_put.key, op->flow_put.key_len,
|
||||
ufid);
|
||||
op->flow_put.ufid = ufid;
|
||||
}
|
||||
break;
|
||||
case DPIF_OP_FLOW_DEL:
|
||||
if (!op->flow_del.ufid) {
|
||||
odp_flow_key_hash(op->flow_del.key, op->flow_del.key_len,
|
||||
ufid);
|
||||
op->flow_del.ufid = ufid;
|
||||
}
|
||||
break;
|
||||
case DPIF_OP_FLOW_GET:
|
||||
if (!op->flow_get.ufid) {
|
||||
odp_flow_key_hash(op->flow_get.key, op->flow_get.key_len,
|
||||
ufid);
|
||||
op->flow_get.ufid = ufid;
|
||||
}
|
||||
break;
|
||||
case DPIF_OP_EXECUTE:
|
||||
default:
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
static void
|
||||
dpif_netlink_try_update_ufid(struct dpif_op **ops, ovs_u128 *ufid,
|
||||
size_t n_ops)
|
||||
{
|
||||
int i;
|
||||
|
||||
for (i = 0; i < n_ops; i++) {
|
||||
dpif_netlink_try_update_ufid__(ops[i], &ufid[i]);
|
||||
}
|
||||
}
|
||||
|
||||
static void
|
||||
dpif_netlink_operate(struct dpif *dpif_, struct dpif_op **ops, size_t n_ops,
|
||||
enum dpif_offload_type offload_type)
|
||||
{
|
||||
struct dpif_netlink *dpif = dpif_netlink_cast(dpif_);
|
||||
struct dpif_op *new_ops[OPERATE_MAX_OPS];
|
||||
ovs_u128 ufids[OPERATE_MAX_OPS];
|
||||
int count = 0;
|
||||
int i = 0;
|
||||
int err = 0;
|
||||
@@ -2246,6 +2289,8 @@ dpif_netlink_operate(struct dpif *dpif_, struct dpif_op **ops, size_t n_ops,
|
||||
return;
|
||||
}
|
||||
|
||||
dpif_netlink_try_update_ufid(ops, ufids, n_ops);
|
||||
|
||||
if (offload_type != DPIF_OFFLOAD_NEVER && netdev_is_flow_api_enabled()) {
|
||||
while (n_ops > 0) {
|
||||
count = 0;
|
||||
|
Reference in New Issue
Block a user