WARNING - OLD ARCHIVES

This is an archived copy of the Xen.org mailing list, which we have preserved to ensure that existing links to archives are not broken. The live archive, which contains the latest emails, can be found at http://lists.xen.org/
   
 
 
Xen 
 
Home Products Support Community News
 
   
 

xen-devel

[Xen-devel] [PATCH] fix typo in audit_p2m

To: xen-devel@xxxxxxxxxxxxxxxxxxx
Subject: [Xen-devel] [PATCH] fix typo in audit_p2m
From: Olaf Hering <olaf@xxxxxxxxx>
Date: Tue, 24 Aug 2010 11:23:22 +0200
Delivery-date: Tue, 24 Aug 2010 02:24:31 -0700
Dkim-signature: v=1; a=rsa-sha1; c=relaxed/relaxed; t=1282641805; l=505; s=domk; d=aepfle.de; h=Content-Type:MIME-Version:Subject:To:From:Date:X-RZG-CLASS-ID: X-RZG-AUTH; bh=W6tFCQoC5vQmb+qrAVuuEr8IrKI=; b=lHulcou7L32lmeIeNp1W5k4cS1tR8BU/ps/6386Y7rzpVdBP8ZPnt5Rh22AnTK8DHUa u4pGyNTy2XqaF0amVTb+BjjvZ5lqIo+RQf5yaRBa4wZtbN6p2ur2ivOoI+egs4NprGUUy HAMRduH7JaHRJq1uII0L62ViaTCNpZyrh54=
Envelope-to: www-data@xxxxxxxxxxxxxxxxxxx
List-help: <mailto:xen-devel-request@lists.xensource.com?subject=help>
List-id: Xen developer discussion <xen-devel.lists.xensource.com>
List-post: <mailto:xen-devel@lists.xensource.com>
List-subscribe: <http://lists.xensource.com/mailman/listinfo/xen-devel>, <mailto:xen-devel-request@lists.xensource.com?subject=subscribe>
List-unsubscribe: <http://lists.xensource.com/mailman/listinfo/xen-devel>, <mailto:xen-devel-request@lists.xensource.com?subject=unsubscribe>
Sender: xen-devel-bounces@xxxxxxxxxxxxxxxxxxx
User-agent: Mutt/1.5.20 (2009-06-14)
Fix typo in audit_p2m(), SHARED_P2M_ENTRY does not exist.
Without this change, p2m.c fails to compile if P2M_AUDIT is enabled.

Signed-off-by: Olaf Hering <olaf@xxxxxxxxx>

--- xen-unstable.hg-4.1.21976.orig/xen/arch/x86/mm/p2m.c
+++ xen-unstable.hg-4.1.21976/xen/arch/x86/mm/p2m.c
@@ -1965,7 +1965,7 @@ static void audit_p2m(struct p2m_domain
             continue;
         }
 
-        if ( gfn == SHARED_P2M_ENTRY)
+        if ( gfn == SHARED_M2P_ENTRY )
         {
             P2M_PRINTK("shared mfn (%lx) on domain page list!\n",
                     mfn);

_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel

<Prev in Thread] Current Thread [Next in Thread>
  • [Xen-devel] [PATCH] fix typo in audit_p2m, Olaf Hering <=