2022-11-13 02:15:47 +00:00
|
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
# Copyright (C) 2021 Intel Corporation.
|
|
|
|
# All rights reserved.
|
|
|
|
|
2022-08-08 21:43:24 +00:00
|
|
|
from spdk.rpc.helpers import deprecated_alias
|
|
|
|
|
|
|
|
|
|
|
|
@deprecated_alias('ioat_scan_accel_engine')
|
|
|
|
def ioat_scan_accel_module(client):
|
|
|
|
"""Enable IOAT accel module.
|
2018-06-12 23:31:20 +00:00
|
|
|
"""
|
2022-08-08 21:43:24 +00:00
|
|
|
return client.call('ioat_scan_accel_module')
|