Lines Matching defs:run
128 static void check_mmio_access(struct vm_data *data, struct kvm_run *run)
131 TEST_ASSERT(run->mmio.is_write, "Unexpected mmio read");
132 TEST_ASSERT(run->mmio.len == 8,
133 "Unexpected exit mmio size = %u", run->mmio.len);
134 TEST_ASSERT(run->mmio.phys_addr >= data->mmio_gpa_min &&
135 run->mmio.phys_addr <= data->mmio_gpa_max,
137 run->mmio.phys_addr);
144 struct kvm_run *run = vcpu->run;
158 if (run->exit_reason == KVM_EXIT_MMIO)
159 check_mmio_access(data, run);
911 pr_info(" -f: specify the first test to run (currently: %i; max %zu)\n",
913 pr_info(" -e: specify the last test to run (currently: %i; max %zu)\n",
999 pr_info("Last test to run has to be non-negative and less than %zu\n",
1019 pr_info("First test to run cannot be greater than the last test to run\n");