2
0
mirror of https://github.com/openvswitch/ovs synced 2025-08-22 09:58:01 +00:00

netdev-offload: Fix incorrect comments.

This patch fixes incorrect comments.

Acked-by: Simon Horman <horms@ovn.org>
Signed-off-by: Sunyang Wu <sunyang.wu@jaguarmicro.com>
Signed-off-by: Eelco Chaudron <echaudro@redhat.com>
This commit is contained in:
Sunyang Wu 2024-09-23 20:59:06 +08:00 committed by Eelco Chaudron
parent 68517f43a8
commit 38a9482bc9

View File

@ -46,10 +46,10 @@ struct ovs_action_push_tnl;
/* Offload-capable (HW) netdev information */
struct netdev_hw_info {
bool oor; /* Out of Offload Resources ? */
atomic_bool miss_api_supported; /* hw_miss_packet_recover() supported.*/
int offload_count; /* Pending (non-offloaded) flow count */
int pending_count; /* Offloaded flow count */
bool oor; /* Out of Offload Resources ? */
atomic_bool miss_api_supported; /* hw_miss_packet_recover() supported.*/
int offload_count; /* Offloaded flow count */
int pending_count; /* Pending (non-offloaded) flow count */
OVSRCU_TYPE(void *) offload_data; /* Offload metadata. */
};