This is consistent with the use of terms in other parts of SPDK and fits with the code living under module/ Change-Id: If182f7cf2d160d57443a1b5f24e0065f191b59b2 Signed-off-by: Ben Walker <benjamin.walker@intel.com> Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/13919 Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Community-CI: Mellanox Build Bot Reviewed-by: Aleksey Marchuk <alexeymar@nvidia.com> Reviewed-by: Jim Harris <james.r.harris@intel.com>
9 lines
218 B
Python
9 lines
218 B
Python
from spdk.rpc.helpers import deprecated_alias
|
|
|
|
|
|
@deprecated_alias('ioat_scan_accel_engine')
|
|
def ioat_scan_accel_module(client):
|
|
"""Enable IOAT accel module.
|
|
"""
|
|
return client.call('ioat_scan_accel_module')
|