diff mbox series

[ovs-dev,v2] netdev-offload: Fix incorrect comments.

Message ID 20240923074225.47604-1-sunyang.wu@jaguarmicro.com
State Superseded
Headers show
Series [ovs-dev,v2] netdev-offload: Fix incorrect comments. | expand

Checks

Context Check Description
ovsrobot/apply-robot success apply and check: success
ovsrobot/github-robot-_Build_and_Test success github build: passed

Commit Message

Sunyang Wu Sept. 23, 2024, 7:42 a.m. UTC
This patch fixes incorrect comments.

Signed-off-by: Sunyang Wu <sunyang.wu@jaguarmicro.com>
---
 lib/netdev-offload.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
diff mbox series

Patch

diff --git a/lib/netdev-offload.h b/lib/netdev-offload.h
index 47f8e6f48..63d3ec5d3 100644
--- a/lib/netdev-offload.h
+++ b/lib/netdev-offload.h
@@ -48,8 +48,8 @@  struct ovs_action_push_tnl;
 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 */
+    int offload_count;  /* Offloaded flow count */
+    int pending_count;  /* Pending (non-offloaded) flow count */
     OVSRCU_TYPE(void *) offload_data; /* Offload metadata. */
 };