tools: fix json output of pmdinfo
authorOlivier Matz <olivier.matz@6wind.com>
Fri, 26 Aug 2016 13:15:32 +0000 (15:15 +0200)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Tue, 4 Oct 2016 09:52:10 +0000 (11:52 +0200)
commit5e3e5f0b569d3256b7b2bcb7566d13bb2771198a
tree92bcd71c0c8cf026b713929bae055a2fd426d13d
parentc5917f3918a5f61e7489f9884554d7723af1b3cf
tools: fix json output of pmdinfo

Using dpdk-pmdinfo with the '-r' flag does not produce a json output as
documented. Instead, the python representation of the json object is
shown, which is nearly the same, but cannot be properly parsed by a json
parser.

python repr (before):
  {u'pci_ids': [[5549, 1968, 65535, 65535]], u'name': u'vmxnet3'}
json (after):
  {"pci_ids": [[5549, 1968, 65535, 65535]], "name": "vmxnet3"}

Fixes: c67c9a5c646a ("tools: query binaries for HW and other support information")

Signed-off-by: Olivier Matz <olivier.matz@6wind.com>
tools/dpdk-pmdinfo.py