SPDK has settled on what the optimal DSA configuration is, so let's always use it. Change-Id: I24b9b717709d553789285198b1aa391f4d7f0445 Signed-off-by: Ben Walker <benjamin.walker@intel.com> Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/11532 Community-CI: Broadcom CI <spdk-ci.pdl@broadcom.com> Community-CI: Mellanox Build Bot Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Jim Harris <james.r.harris@intel.com> Reviewed-by: Changpeng Liu <changpeng.liu@intel.com> Reviewed-by: Paul Luse <paul.e.luse@intel.com>
12 lines
356 B
Python
12 lines
356 B
Python
def idxd_scan_accel_engine(client, config_kernel_mode=None):
|
|
"""Scan and enable IDXD accel engine.
|
|
|
|
Args:
|
|
config_kernel_mode: Use kernel IDXD driver. (optional)
|
|
"""
|
|
params = {}
|
|
|
|
if config_kernel_mode is not None:
|
|
params['config_kernel_mode'] = config_kernel_mode
|
|
return client.call('idxd_scan_accel_engine', params)
|