[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20180226184956.15709-2-jeffrey.t.kirsher@intel.com>
Date: Mon, 26 Feb 2018 10:49:54 -0800
From: Jeff Kirsher <jeffrey.t.kirsher@...el.com>
To: linville@...hat.com
Cc: Jacob Keller <jacob.e.keller@...el.com>, netdev@...r.kernel.org,
nhorman@...hat.com, sassmann@...hat.com, jogreene@...hat.com,
Jeff Kirsher <jeffrey.t.kirsher@...el.com>
Subject: [ethtool 1/3] ethtool: correct display of VF when showing vf/queue filters
From: Jacob Keller <jacob.e.keller@...el.com>
The original code that implemented this accidentally had an inverted
check, so it would never show the VF number properly.
Fix this code to correctly display the VF number when we have one.
Fixes: 36ee712b0fbc ("ethtool: support queue and VF fields for rxclass filters", 2017-03-23)
Signed-off-by: Jacob Keller <jacob.e.keller@...el.com>
Tested-by: Andrew Bowers <andrewx.bowers@...el.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@...el.com>
---
rxclass.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/rxclass.c b/rxclass.c
index ebc3e1a..144c8e5 100644
--- a/rxclass.c
+++ b/rxclass.c
@@ -252,11 +252,11 @@ static void rxclass_print_nfc_rule(struct ethtool_rx_flow_spec *fsp)
u64 queue = ethtool_get_flow_spec_ring(fsp->ring_cookie);
if (vf)
- fprintf(stdout, "\tAction: Direct to queue %llu\n",
- queue);
- else
fprintf(stdout, "\tAction: Direct to VF %llu queue %llu\n",
vf, queue);
+ else
+ fprintf(stdout, "\tAction: Direct to queue %llu\n",
+ queue);
} else {
fprintf(stdout, "\tAction: Drop\n");
}
--
2.14.3
Powered by blists - more mailing lists