[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH v3 2/6] argo: correct logline in ring_unmap()
- To: dmukhin@xxxxxxxx, xen-devel@xxxxxxxxxxxxxxxxxxxx
- From: "Daniel P. Smith" <dpsmith@xxxxxxxxxxxxxxxxxxxx>
- Date: Mon, 8 Jun 2026 16:01:41 -0400
- Arc-authentication-results: i=1; mx.zohomail.com; dkim=pass header.i=apertussolutions.com; spf=pass smtp.mailfrom=dpsmith@xxxxxxxxxxxxxxxxxxxx; dmarc=pass header.from=<dpsmith@xxxxxxxxxxxxxxxxxxxx>
- Arc-message-signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zohomail.com; s=zohoarc; t=1780948907; h=Content-Type:Content-Transfer-Encoding:Cc:Cc:Date:Date:From:From:In-Reply-To:MIME-Version:Message-ID:References:Subject:Subject:To:To:Message-Id:Reply-To; bh=sVbb64weEsi9fQUfpudjFmtAY89A5xkBgUiio/briYU=; b=bo5WmW/evMc0PRFM05GxnrjjwA9q4lGbZiAPkpjw0lAxlJzU10paAcPLBVyvIioQYVDSHXMJjMthjStW5nYQnctEnCuQj4sk8kCLyzDtMcMgTOoq7SiMV98fdhP4Igk//iiKXaVN/h9TSLokRTBv1ge21Voy+lg5FwSE+rRDrBc=
- Arc-seal: i=1; a=rsa-sha256; t=1780948907; cv=none; d=zohomail.com; s=zohoarc; b=n7GrCsS8aJnY7XVi8l4wHSLvV9RwBF4A0jfTwoNRs4ImTm9l8J3VeB2WH3IYPoILhp/HKiEPOMMMIAUFBhbuFmgf0mzcN3g/fvwaurB53FQUaSelysJR+8z4VlkQXv8ryIccfCvR/EUZ8Ny3ouYiSF/ij4L4d5e+MAjvUw91pEE=
- Authentication-results: eu.smtp.expurgate.cloud; dkim=pass header.s=zoho header.d=apertussolutions.com header.i="dpsmith@xxxxxxxxxxxxxxxxxxxx" header.h="Message-ID:Date:MIME-Version:Subject:To:Cc:References:From:In-Reply-To:Content-Type:Content-Transfer-Encoding"
- Cc: andrew.cooper3@xxxxxxxxxx, anthony.perard@xxxxxxxxxx, jbeulich@xxxxxxxx, julien@xxxxxxx, michal.orzel@xxxxxxx, roger.pau@xxxxxxxxxx, sstabellini@xxxxxxxxxx, christopher.w.clark@xxxxxxxxx, Mykola Kvach <mykola_kvach@xxxxxxxx>
- Delivery-date: Mon, 08 Jun 2026 20:01:57 +0000
- List-id: Xen developer discussion <xen-devel.lists.xenproject.org>
On 5/26/26 5:58 PM, dmukhin@xxxxxxxx wrote:
From: Denis Mukhin <dmukhin@xxxxxxxx>
Drop XENLOG_ERR from the logline since argo_dprintk() already injects
the proper log level indicator.
Also, drop "argo: " prefix, since it is also injected by argo_dprintk()
Signed-off-by: Denis Mukhin <dmukhin@xxxxxxxx>
Reviewed-by: Mykola Kvach <mykola_kvach@xxxxxxxx>
---
Changes since v2:
- n/a
---
xen/common/argo.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/xen/common/argo.c b/xen/common/argo.c
index 98a3db7fd070..5da14c929e14 100644
--- a/xen/common/argo.c
+++ b/xen/common/argo.c
@@ -474,7 +474,7 @@ ring_unmap(const struct domain *d, struct argo_ring_info
*ring_info)
continue;
ASSERT(!mfn_eq(ring_info->mfns[i], INVALID_MFN));
- argo_dprintk(XENLOG_ERR "argo: unmapping page %"PRI_mfn" from %p\n",
+ argo_dprintk("unmapping page %"PRI_mfn" from %p\n",
mfn_x(ring_info->mfns[i]), ring_info->mfn_mapping[i]);
unmap_domain_page_global(ring_info->mfn_mapping[i]);
Reviewed-by: Daniel P. Smith <dpsmith@xxxxxxxxxxxxxxxxxxxx>
|