diff options
author | 2021-05-19 13:03:30 -0700 | |
---|---|---|
committer | 2021-05-27 07:45:55 -0400 | |
commit | c887d6a126dfc50b27872527615dd46cb3d96bc1 (patch) | |
tree | ca2d560b92d7129cbb62d1a80f03d1c9ab2a20e1 /tools/testing/selftests/kvm/demand_paging_test.c | |
parent | KVM: selftests: Fix hang in hardware_disable_test (diff) | |
download | wireguard-linux-c887d6a126dfc50b27872527615dd46cb3d96bc1.tar.xz wireguard-linux-c887d6a126dfc50b27872527615dd46cb3d96bc1.zip |
KVM: selftests: trivial comment/logging fixes
Some trivial fixes I found while touching related code in this series,
factored out into a separate commit for easier reviewing:
- s/gor/got/ and add a newline in demand_paging_test.c
- s/backing_src/src_type/ in a comment to be consistent with the real
function signature in kvm_util.c
Signed-off-by: Axel Rasmussen <axelrasmussen@google.com>
Message-Id: <20210519200339.829146-2-axelrasmussen@google.com>
Reviewed-by: Ben Gardon <bgardon@google.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'tools/testing/selftests/kvm/demand_paging_test.c')
-rw-r--r-- | tools/testing/selftests/kvm/demand_paging_test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/testing/selftests/kvm/demand_paging_test.c b/tools/testing/selftests/kvm/demand_paging_test.c index 5f7a229c3af1..9398ba6ef023 100644 --- a/tools/testing/selftests/kvm/demand_paging_test.c +++ b/tools/testing/selftests/kvm/demand_paging_test.c @@ -169,7 +169,7 @@ static void *uffd_handler_thread_fn(void *arg) if (r == -1) { if (errno == EAGAIN) continue; - pr_info("Read of uffd gor errno %d", errno); + pr_info("Read of uffd got errno %d\n", errno); return NULL; } |