13 lines
424 B
Python
13 lines
424 B
Python
|
def scan_ioat_copy_engine(client, pci_whitelist):
|
||
|
"""Scan and enable IOAT copy engine.
|
||
|
|
||
|
Args:
|
||
|
pci_whitelist: Python list of PCI addresses in
|
||
|
domain:bus:device.function format or
|
||
|
domain.bus.device.function format
|
||
|
"""
|
||
|
params = {}
|
||
|
if pci_whitelist:
|
||
|
params['pci_whitelist'] = pci_whitelist
|
||
|
return client.call('scan_ioat_copy_engine', params)
|