All of lore.kernel.org
 help / color / mirror / Atom feed
From: Nicholas Tsirakis <niko.tsirakis@gmail.com>
To: xen-devel@lists.xenproject.org
Cc: Nicholas Tsirakis <tsirakisn@ainfosec.com>,
	Christopher Clark <christopher.w.clark@gmail.com>
Subject: [Xen-devel] [PATCH] argo: suppress select logging messages
Date: Tue, 18 Jun 2019 16:10:29 -0400	[thread overview]
Message-ID: <4b6949fb8d84a255898ca4b285526f6513513371.1560888454.git.tsirakisn@ainfosec.com> (raw)

Some logging messages made more sense as argo debug
logs rather than standard Xen logs. Use argo_dprintk
to only print this info if argo DEBUG is enabled.

Signed-off-by: Nicholas Tsirakis <tsirakisn@ainfosec.com>
---
 xen/common/argo.c | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/xen/common/argo.c b/xen/common/argo.c
index c8f4302963..59b655f4c8 100644
--- a/xen/common/argo.c
+++ b/xen/common/argo.c
@@ -1456,7 +1456,7 @@ find_ring_mfns(struct domain *d, struct argo_ring_info *ring_info,
     if ( ring_info->mfns )
     {
         /* Ring already existed: drop the previous mapping. */
-        gprintk(XENLOG_INFO, "argo: vm%u re-register existing ring "
+        argo_dprintk("argo: vm%u re-register existing ring "
                 "(vm%u:%x vm%u) clears mapping\n",
                 d->domain_id, ring_info->id.domain_id,
                 ring_info->id.aport, ring_info->id.partner_id);
@@ -1516,7 +1516,7 @@ find_ring_mfns(struct domain *d, struct argo_ring_info *ring_info,
     {
         ASSERT(ring_info->nmfns == NPAGES_RING(len));
 
-        gprintk(XENLOG_DEBUG, "argo: vm%u ring (vm%u:%x vm%u) %p "
+        argo_dprintk("argo: vm%u ring (vm%u:%x vm%u) %p "
                 "mfn_mapping %p len %u nmfns %u\n",
                 d->domain_id, ring_info->id.domain_id,
                 ring_info->id.aport, ring_info->id.partner_id, ring_info,
@@ -1730,7 +1730,7 @@ register_ring(struct domain *currd,
         list_add(&ring_info->node,
                  &currd->argo->ring_hash[hash_index(&ring_info->id)]);
 
-        gprintk(XENLOG_DEBUG, "argo: vm%u registering ring (vm%u:%x vm%u)\n",
+        argo_dprintk("argo: vm%u registering ring (vm%u:%x vm%u)\n",
                 currd->domain_id, ring_id.domain_id, ring_id.aport,
                 ring_id.partner_id);
     }
@@ -1770,8 +1770,7 @@ register_ring(struct domain *currd,
             goto out_unlock2;
         }
 
-        gprintk(XENLOG_DEBUG,
-                "argo: vm%u re-registering existing ring (vm%u:%x vm%u)\n",
+        argo_dprintk("argo: vm%u re-registering existing ring (vm%u:%x vm%u)\n",
                 currd->domain_id, ring_id.domain_id, ring_id.aport,
                 ring_id.partner_id);
     }
-- 
2.17.1


_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

             reply	other threads:[~2019-06-18 20:11 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-06-18 20:10 Nicholas Tsirakis [this message]
2019-06-19 19:49 ` [Xen-devel] [PATCH] argo: suppress select logging messages Christopher Clark

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4b6949fb8d84a255898ca4b285526f6513513371.1560888454.git.tsirakisn@ainfosec.com \
    --to=niko.tsirakis@gmail.com \
    --cc=christopher.w.clark@gmail.com \
    --cc=tsirakisn@ainfosec.com \
    --cc=xen-devel@lists.xenproject.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.