Module Name:    src
Committed By:   bouyer
Date:           Thu Sep  1 12:31:26 UTC 2022

Modified Files:
        src/sys/arch/xen/xen: privcmd.c

Log Message:
Remove a noisy printf; HVM guests triggers it (a lot) and it seems to be
expected.


To generate a diff of this commit:
cvs rdiff -u -r1.64 -r1.65 src/sys/arch/xen/xen/privcmd.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/arch/xen/xen/privcmd.c
diff -u src/sys/arch/xen/xen/privcmd.c:1.64 src/sys/arch/xen/xen/privcmd.c:1.65
--- src/sys/arch/xen/xen/privcmd.c:1.64	Thu Sep  1 12:26:00 2022
+++ src/sys/arch/xen/xen/privcmd.c	Thu Sep  1 12:31:26 2022
@@ -1,4 +1,4 @@
-/* $NetBSD: privcmd.c,v 1.64 2022/09/01 12:26:00 bouyer Exp $ */
+/* $NetBSD: privcmd.c,v 1.65 2022/09/01 12:31:26 bouyer Exp $ */
 
 /*-
  * Copyright (c) 2004 Christian Limpach.
@@ -27,7 +27,7 @@
 
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: privcmd.c,v 1.64 2022/09/01 12:26:00 bouyer Exp $");
+__KERNEL_RCSID(0, "$NetBSD: privcmd.c,v 1.65 2022/09/01 12:31:26 bouyer Exp $");
 
 #include "opt_xen.h"
 
@@ -554,7 +554,6 @@ privcmd_mmapbatch_v2(struct vop_ioctl_ar
 		set_xen_guest_handle(add.errs, &err2);
 		err = HYPERVISOR_memory_op(XENMEM_add_to_physmap_batch, &add);
 		if (err < 0) {
-			printf("privcmd_mmapbatch_v2: XENMEM_add_to_physmap_batch failed %d\n", err);
 			privpgop_detach(&obj->uobj);
 			return privcmd_xen2bsd_errno(err);
 		}

Reply via email to