Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/xen/xen Remove a noisy printf; HVM guests triggers ...



details:   https://anonhg.NetBSD.org/src/rev/8a8bd6444e94
branches:  trunk
changeset: 369797:8a8bd6444e94
user:      bouyer <bouyer%NetBSD.org@localhost>
date:      Thu Sep 01 12:31:26 2022 +0000

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

diffstat:

 sys/arch/xen/xen/privcmd.c |  5 ++---
 1 files changed, 2 insertions(+), 3 deletions(-)

diffs (26 lines):

diff -r 9c94db20e4ba -r 8a8bd6444e94 sys/arch/xen/xen/privcmd.c
--- a/sys/arch/xen/xen/privcmd.c        Thu Sep 01 12:29:00 2022 +0000
+++ b/sys/arch/xen/xen/privcmd.c        Thu Sep 01 12:31:26 2022 +0000
@@ -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 @@
                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);
                }



Home | Main Index | Thread Index | Old Index