doc/accel_fw: beautify two paragraph bash style

Change-Id: I1e54fcf0a32fee7ed40f8d337efb72445f9df453
Signed-off-by: wanghailiangx <hailiangx.e.wang@intel.com>
Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/14024
Tested-by: SPDK CI Jenkins <sys_sgci@intel.com>
Reviewed-by: Shuhei Matsumoto <smatsumoto@nvidia.com>
Reviewed-by: Jim Harris <james.r.harris@intel.com>
Reviewed-by: Aleksey Marchuk <alexeymar@nvidia.com>
This commit is contained in:
wanghailiangx 2022-08-15 03:52:41 -04:00 committed by Tomasz Zawadzki
parent 8a810f5fdc
commit a731574438

View File

@ -125,7 +125,9 @@ to the kernel driver and not VFIO. By default when you run `setup.sh` DSA devic
bound to VFIO. To exclude DSA devices, pass a whitespace separated list of DSA devices BDF bound to VFIO. To exclude DSA devices, pass a whitespace separated list of DSA devices BDF
using the PCI_BLOCKED parameter as shown below. using the PCI_BLOCKED parameter as shown below.
`sudo PCI_BLOCKED="0000:04:00.0 0000:05:00.0" ./setup.sh` ```bash
sudo PCI_BLOCKED="0000:04:00.0 0000:05:00.0" ./setup.sh
```
Note: you might need to run `sudo ./setup.sh reset` to unbind all drivers before performing Note: you might need to run `sudo ./setup.sh reset` to unbind all drivers before performing
the step above. the step above.
@ -151,7 +153,8 @@ application and send startup RPC's use the `--wait-for-rpc` parameter and then u
but for some reason the desire is to have the Software Module handle copies instead. but for some reason the desire is to have the Software Module handle copies instead.
The following RPCs would accomplish the copy override: The following RPCs would accomplish the copy override:
`./scripts/rpc.py dsa_scan_accel_module ```bash
./scripts/rpc.py dsa_scan_accel_module
./scripts/rpc.py accel_assign_opc -o copy -e software ./scripts/rpc.py accel_assign_opc -o copy -e software
./scripts/rpc.py framework_start_init ./scripts/rpc.py framework_start_init
./scripts/rpc.py accel_get_opc_assignments ./scripts/rpc.py accel_get_opc_assignments
@ -164,7 +167,8 @@ The following RPCs would accomplish the copy override:
"copy_crc32c": "dsa", "copy_crc32c": "dsa",
"compress": "software", "compress": "software",
"decompress": "software" "decompress": "software"
}` }
```
To detemine the name of available modules and their supported operations use the To detemine the name of available modules and their supported operations use the
RPC `accel_get_module_info`. RPC `accel_get_module_info`.