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

Re: [PATCH v2 3/3] argo: drop argo prefix from argo_dprintk() calls


  • To: dmukhin@xxxxxxxx
  • From: Mykola Kvach <xakep.amatop@xxxxxxxxx>
  • Date: Fri, 22 May 2026 20:24:38 +0300
  • Arc-authentication-results: i=1; mx.google.com; arc=none
  • Arc-message-signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20240605; h=content-transfer-encoding:cc:to:subject:message-id:date:from :in-reply-to:references:mime-version:dkim-signature; bh=MZ/vpOKlERU5yi57m5f0o/JHTMWDqUTqTqFJmtCRR9I=; fh=074dSOZR2TjZuH9KX7pMcX1QOxphcb/LlKcediamujk=; b=P/lVUeDKPbM/o31XToET/tMhz0HHdRYgDb3k4QTU7pjbpLaTHbQz0FrnhdVNdzeMgP coXyHhS315Ppxk4Fpp8u7bLKvI1RtDdSQuZmDlEs0A5LJ7qjxPKlSc7l1D7ZItTiFmeD Nd6cbRAlYzRWdOdMxJk/IybikppHULV368xfkJi+7VSPlMn/fUIG0uZQgcbzgJJRFqJj 0p/02vHXXC3GD8tP73IB+XXKikouIgNov2bd+uJ/T7M7J7DEFpUWJUV95iM+F/XHSX4T ABfd5ymLUXkyuqfKmnEj6MX4jWyqO47ab2QWAbSeIzl6sHF6rbdZELhsHn8P5CjTcQHy 0XRQ==; darn=lists.xenproject.org
  • Arc-seal: i=1; a=rsa-sha256; t=1779470690; cv=none; d=google.com; s=arc-20240605; b=GhqXVj4o3pcsMM7MQbrVwJtJJ1UylxzoBNt38UuGfacErkcN3Re43D6glbKAhu+iBu iuRqJNxro7cByI8MTVK6ALoDeajsaWOb8wWO4CKzqE9n8uYfczjxdZOViCPAFtiwa2tn f9bbMveFY4DLZn7TX/L+9PyrFQs2btOc0ZpngBBIN+XyvQUzIbHu0EwmNbewDUVvzmZg fXlYokpzhfAOcmP0a7OAw1/Rgequ+jX2s0YkvFxo6kwT7oFE0LAB+BmKjZdOQXhXq5LI c/THZseK6n0KYXv7WklLBtyErTq/W/vhkQNVJ80C2b04QNzOUO2CWcmoGfQ1mshym+sB I74Q==
  • Authentication-results: eu.smtp.expurgate.cloud; dkim=pass header.s=20251104 header.d=gmail.com header.i="@gmail.com" header.h="Content-Transfer-Encoding:Cc:To:Subject:Message-ID:Date:From:In-Reply-To:References:MIME-Version"
  • Cc: xen-devel@xxxxxxxxxxxxxxxxxxxx, andrew.cooper3@xxxxxxxxxx, anthony.perard@xxxxxxxxxx, jbeulich@xxxxxxxx, julien@xxxxxxx, michal.orzel@xxxxxxx, roger.pau@xxxxxxxxxx, sstabellini@xxxxxxxxxx, christopher.w.clark@xxxxxxxxx, dpsmith@xxxxxxxxxxxxxxxxxxxx
  • Delivery-date: Fri, 22 May 2026 17:24:54 +0000
  • List-id: Xen developer discussion <xen-devel.lists.xenproject.org>

On Fri, May 22, 2026 at 7:53 PM <dmukhin@xxxxxxxx> wrote:
>
> From: Denis Mukhin <dmukhin@xxxxxxxx>
>
> argo_dprintk() prefixes all log lines with "argo: " automatically.
>
> Remove duplicate prefixes from log messages in the Argo module where
> applicable.
>
> Signed-off-by: Denis Mukhin <dmukhin@xxxxxxxx>
> ---
> Changes since v1:
> - new patch
> ---
>  xen/common/argo.c | 8 ++++----
>  1 file changed, 4 insertions(+), 4 deletions(-)
>
> diff --git a/xen/common/argo.c b/xen/common/argo.c
> index 5da14c929e14..ffa1f43437ab 100644
> --- a/xen/common/argo.c
> +++ b/xen/common/argo.c
> @@ -1467,7 +1467,7 @@ find_ring_mfns(struct domain *d, struct argo_ring_info 
> *ring_info,
>      if ( ring_info->mfns )
>      {
>          /* Ring already existed: drop the previous mapping. */
> -        argo_dprintk("argo: vm%u re-register existing ring "
> +        argo_dprintk("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);
> @@ -1527,7 +1527,7 @@ find_ring_mfns(struct domain *d, struct argo_ring_info 
> *ring_info,
>      {
>          ASSERT(ring_info->nmfns == NPAGES_RING(len));
>
> -        argo_dprintk("argo: vm%u ring (vm%u:%x vm%u) %p "
> +        argo_dprintk("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,
> @@ -1741,7 +1741,7 @@ register_ring(struct domain *currd,
>          list_add(&ring_info->node,
>                   &currd->argo->ring_hash[hash_index(&ring_info->id)]);
>
> -        argo_dprintk("argo: vm%u registering ring (vm%u:%x vm%u)\n",
> +        argo_dprintk("vm%u registering ring (vm%u:%x vm%u)\n",
>                       currd->domain_id, ring_id.domain_id, ring_id.aport,
>                       ring_id.partner_id);
>      }
> @@ -1781,7 +1781,7 @@ register_ring(struct domain *currd,
>              goto out_unlock2;
>          }
>
> -        argo_dprintk("argo: vm%u re-registering existing ring (vm%u:%x 
> vm%u)\n",
> +        argo_dprintk("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);

Reviewed-by: Mykola Kvach <mykola_kvach@xxxxxxxx>

~Mykola



 


Rackspace

Lists.xenproject.org is hosted with RackSpace, monitoring our
servers 24x7x365 and backed by RackSpace's Fanatical Support®.