From 9f1b6a33bcc4dada0373c0daa5e4b51cd567eb2e Mon Sep 17 00:00:00 2001 From: Yaroslav Brustinov Date: Fri, 19 Aug 2016 09:58:36 +0300 Subject: update multiplier in stl benchmark, shorten title in NIC's table --- scripts/dpdk_nic_bind.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts/dpdk_nic_bind.py') diff --git a/scripts/dpdk_nic_bind.py b/scripts/dpdk_nic_bind.py index 13806fd1..dcb84823 100755 --- a/scripts/dpdk_nic_bind.py +++ b/scripts/dpdk_nic_bind.py @@ -538,7 +538,7 @@ def show_table(): devices[pci]['MAC'] = mac table = texttable.Texttable(max_width=-1) - table.header(['ID', 'NUMA', 'PCI', 'MAC', 'Name', 'Driver', 'Linux interface', 'Active']) + table.header(['ID', 'NUMA', 'PCI', 'MAC', 'Name', 'Driver', 'Linux IF', 'Active']) for id, pci in enumerate(sorted(devices.keys())): d = devices[pci] table.add_row([id, d['NUMA'], d['Slot_str'], d.get('MAC', ''), d['Device_str'], d.get('Driver_str', ''), d['Interface'], d['Active']]) -- cgit 1.2.3-korg