Skip to content

Commit e8266c4

Browse files
Jorgen Hansengregkh
authored andcommitted
VMCI: Stop log spew when qp allocation isn't possible
VMCI queue pair allocation is disabled, if a VM is in FT mode. In these cases, VMware Tools may still once in a while attempt to create a vSocket stream connection, resulting in multiple warnings in the kernel logs. Therefore downgrade the error log to a debug log. Reviewed-by: Vishnu Dasa <vdasa@vmware.com> Signed-off-by: Jorgen Hansen <jhansen@vmware.com> Link: https://lore.kernel.org/r/1611160340-30158-1-git-send-email-jhansen@vmware.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1 parent fc716ff commit e8266c4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/misc/vmw_vmci/vmci_queue_pair.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1207,7 +1207,7 @@ static int qp_alloc_guest_work(struct vmci_handle *handle,
12071207
} else {
12081208
result = qp_alloc_hypercall(queue_pair_entry);
12091209
if (result < VMCI_SUCCESS) {
1210-
pr_warn("qp_alloc_hypercall result = %d\n", result);
1210+
pr_devel("qp_alloc_hypercall result = %d\n", result);
12111211
goto error;
12121212
}
12131213
}

0 commit comments

Comments
 (0)