895ad89214
This can be done via explicit options on the application command line instead. This has the added benefit of removing a usage of whitelist/blacklist which we are working to remove from the SPDK repository. Signed-off-by: Jim Harris <james.r.harris@intel.com> Change-Id: I5739e281f1c29fc8a5d175f5bbc916cd7d926fe4 Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/5274 Community-CI: Broadcom CI Community-CI: Mellanox Build Bot Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Changpeng Liu <changpeng.liu@intel.com> Reviewed-by: Tomasz Zawadzki <tomasz.zawadzki@intel.com> Reviewed-by: Shuhei Matsumoto <shuhei.matsumoto.xt@hitachi.com>
10 lines
252 B
Python
10 lines
252 B
Python
from .helpers import deprecated_alias
|
|
|
|
|
|
@deprecated_alias('ioat_scan_copy_engine')
|
|
@deprecated_alias('scan_ioat_copy_engine')
|
|
def ioat_scan_accel_engine(client):
|
|
"""Enable IOAT accel engine.
|
|
"""
|
|
return client.call('ioat_scan_accel_engine')
|