config_converter: Skip the [Ioat] section to avoid conversion error
IOAT copy engine supports JSON RPC but doesn't support JSON config dump yet. Hence config_converter fails conversion if the source .INI config file includes the [Ioat] section. Skip the [Ioat] section for now. Change-Id: I7331db582917bf01e92f6251c75f2f5a36ab9382 Signed-off-by: Shuhei Matsumoto <shuhei.matsumoto.xt@hitachi.com> Reviewed-on: https://review.gerrithub.io/433198 Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Chandler-Test-Pool: SPDK Automated Test System <sys_sgsw@intel.com> Reviewed-by: Changpeng Liu <changpeng.liu@intel.com> Reviewed-by: Ben Walker <benjamin.walker@intel.com> Reviewed-by: Jim Harris <james.r.harris@intel.com> Reviewed-by: Darek Stojaczyk <dariusz.stojaczyk@intel.com>
This commit is contained in:
parent
c3c6922941
commit
603993b274
@ -685,6 +685,9 @@ if __name__ == "__main__":
|
||||
item['method']].append(item)
|
||||
elif section == "Global":
|
||||
pass
|
||||
elif section == "Ioat":
|
||||
# Ioat doesn't support JSON config yet.
|
||||
pass
|
||||
elif section == "VirtioPci":
|
||||
print("Please use spdk target flags.")
|
||||
exit(1)
|
||||
|
Loading…
x
Reference in New Issue
Block a user