Commit c9c7c281 authored by Josh Soref's avatar Josh Soref Committed by Tomasz Zawadzki
Browse files

spelling: test



Part of #2256

* achieve
* additionally
* against
* aliases
* already
* another
* arguments
* between
* capabilities
* comparison
* compatibility
* configuration
* continuing
* controlq
* cpumask
* default
* depends
* dereferenced
* discussed
* dissect
* driver
* environment
* everything
* excluded
* existing
* expectation
* failed
* fails
* following
* functions
* hugepages
* identifiers
* implicitly
* in_capsule
* increment
* initialization
* initiator
* integrity
* iteration
* latencies
* libraries
* management
* namespace
* negotiated
* negotiation
* nonexistent
* number
* occur
* occurred
* occurring
* offsetting
* operations
* outstanding
* overwhelmed
* parameter
* parameters
* partition
* preempts
* provisioned
* responded
* segment
* skipped
* struct
* subsystem
* success
* successfully
* sufficiently
* this
* threshold
* transfer
* transferred
* unchanged
* unexpected
* unregistered
* useless
* utility
* value
* variable
* workload

Change-Id: I21ca7dab4ef575b5767e50aaeabc34314ab13396
Signed-off-by: default avatarJosh Soref <jsoref@gmail.com>
Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/10409


Community-CI: Broadcom CI <spdk-ci.pdl@broadcom.com>
Reviewed-by: default avatarTomasz Zawadzki <tomasz.zawadzki@intel.com>
Reviewed-by: default avatarJim Harris <james.r.harris@intel.com>
Tested-by: default avatarSPDK CI Jenkins <sys_sgci@intel.com>
parent 1ff3715d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -10,7 +10,7 @@ randomized PDU commands through a simulated iSCSI initiator.
3. iSCSI initiator send a logout request PDU to iSCSI Target in the end.

Especially, iSCSI initiator need to build different bhs according to different bhs opcode.
Then iSCSI initiator will receive all kinds of responsed opcodes from iSCSI Target.
Then iSCSI initiator will receive all kinds of response opcodes from iSCSI Target.
The application will terminate when run time expires (see the -t flag).

## Output
+1 −1
Original line number Diff line number Diff line
@@ -771,7 +771,7 @@ craft_virtio_scsi_tmf_req(struct fuzz_vhost_dev_ctx *dev_ctx, struct fuzz_vhost_
		io_ctx->req.scsi_tmf_req.lun[1] = 0;
	}

	/* Valid controlqueue commands have to be of type 0, 1, or 2. Any others just return immediately from the target. */
	/* Valid controlq commands have to be of type 0, 1, or 2. Any others just return immediately from the target. */
	/* Try to only test the opcodes that will exercise extra paths in the target side. But allow for at least one invalid value. */
	io_ctx->req.scsi_tmf_req.type = rand() % 4;
}
+1 −1
Original line number Diff line number Diff line
@@ -238,7 +238,7 @@ function run_qos_test() {
	lower_limit=$((qos_limit * 9 / 10))
	upper_limit=$((qos_limit * 11 / 10))

	# QoS realization is related with bytes transfered. It currently has some variation.
	# QoS realization is related with bytes transferred. It currently has some variation.
	if [ $qos_result -lt $lower_limit ] || [ $qos_result -gt $upper_limit ]; then
		echo "Failed to limit the io read rate of NULL bdev by qos"
		$rpc_py bdev_malloc_delete $QOS_DEV_1
+1 −1
Original line number Diff line number Diff line
@@ -1344,7 +1344,7 @@ function nvme_namespace_revert() {
			# This assumes every NVMe controller contains single namespace,
			# encompassing Total NVM Capacity and formatted as 512 block size.
			# 512 block size is needed for test/vhost/vhost_boot.sh to
			# succesfully run.
			# successfully run.

			unvmcap=$(nvme id-ctrl ${nvme_ctrlr} | grep unvmcap | cut -d: -f2)
			if [[ "$unvmcap" -eq 0 ]]; then
+2 −2
Original line number Diff line number Diff line
@@ -8,7 +8,7 @@ for spinning up a VM capable of running the SPDK test suite.
There is no need for external hardware to run these tests. The linux kernel comes with the drivers necessary
to emulate an RDMA enabled NIC. NVMe controllers can also be virtualized in emulators such as QEMU.

## VM Envronment Requirements (Host)
## VM Environment Requirements (Host)

- 8 GiB of RAM (for DPDK)
- Enable intel_kvm on the host machine from the bios.
@@ -53,7 +53,7 @@ To create the VM image manually use following steps:
  - Make sure that only root has read access to the private key.
3. Install the OS in the VM image (performed on guest):
  - Use the latest Fedora Cloud (Currently Fedora 32).
  - When partitioning the disk, make one partion that consumes the whole disk mounted at /. Do not encrypt the disk or enable LVM.
  - When partitioning the disk, make one partition that consumes the whole disk mounted at /. Do not encrypt the disk or enable LVM.
  - Choose the OpenSSH server packages during install.
4. Post installation configuration (performed on guest):
  - Run the following commands to enable all necessary dependencies:
Loading