From 23c648144f8d7cbdfde139bb5e2d77cd6d040cb5 Mon Sep 17 00:00:00 2001
From: Vlad Badoiu <vlad_andrei.badoiu@upb.ro>
Date: Fri, 28 Mar 2025 13:31:28 +0200
Subject: [PATCH] Fix offloading

Patch sent by Luca Mazilescu.
---
 checker/topo.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/checker/topo.py b/checker/topo.py
index 6ef15c8..581c250 100644
--- a/checker/topo.py
+++ b/checker/topo.py
@@ -127,6 +127,7 @@ class FullNM(object):
 
         def disable_nic_checksum(host, iface):
             host.cmd('ethtool iface {} --offload rx off tx off'.format(iface))
+            host.cmd('ethtool -K {} rx off tx off'.format(iface))
             host.cmd('ethtool -K {} tx-checksum-ip-generic off'.format(iface))
 
         def disable_arp(host, iface):
-- 
GitLab