33df76dc93
Also, remove bdev_svc memory limit to prevent it from hanging while handling discover_bdevs calls. Change-Id: I2868839f40931b964d49a90a86dfb391e2247e30 Signed-off-by: Seth Howell <seth.howell@intel.com> Reviewed-on: https://review.gerrithub.io/429535 Reviewed-by: Jim Harris <james.r.harris@intel.com> Reviewed-by: Ben Walker <benjamin.walker@intel.com> Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Chandler-Test-Pool: SPDK Automated Test System <sys_sgsw@intel.com>
19 lines
426 B
Bash
Executable File
19 lines
426 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
rootdir=$(readlink -f $(dirname $0))/..
|
|
source "$rootdir/scripts/common.sh"
|
|
|
|
base_bdev=$1
|
|
|
|
if [ -n $base_bdev ]; then
|
|
echo
|
|
echo "[crypto]"
|
|
if [ $(lspci -d:37c8 | wc -l) -eq 0 ]; then
|
|
echo " CRY $base_bdev crypto_ram 0123456789123456 crypto_aesni_mb"
|
|
else
|
|
echo " CRY $base_bdev crypto_ram 0123456789123456 crypto_qat"
|
|
fi
|
|
fi
|