From 3e7125aca0284ffd09666fbe18cc4aa451fd4c94 Mon Sep 17 00:00:00 2001 From: Ariadne Conill Date: Mon, 21 Sep 2020 09:32:37 -0600 Subject: [PATCH] ethtool: add support for the ethtool-dma namespace --- executor-scripts/linux/ethtool | 3 +++ 1 file changed, 3 insertions(+) diff --git a/executor-scripts/linux/ethtool b/executor-scripts/linux/ethtool index f3dad2d..3f8d284 100755 --- a/executor-scripts/linux/ethtool +++ b/executor-scripts/linux/ethtool @@ -50,5 +50,8 @@ up) offload_settings=$(gather_params ETHTOOL_OFFLOAD) [ -z "$offload_settings" ] || $MOCK ethtool --offload "$IFACE" $offload_settings + + dma_settings=$(gather_params ETHTOOL_DMA_RING) + [ -z "$dma_settings" ] || $MOCK ethtool --set-ring "$IFACE" $dma_settings ;; esac