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-changelog

[Xen-changelog] [IA64] fix ia64 cset 8906

# HG changeset patch
# User awilliam@xxxxxxxxxxx
# Node ID 74bb3750f48eb752a5f7ad739b69f000be63ba65
# Parent  17adc9c5984a28e48f91e00e4f43a840742ede30
[IA64] fix ia64 cset 8906

Looks like we accidentially added a compliment op here, adding
one more to nullify.  Fixed dom0 not booting.

Signed-off-by: Alex Williamson <alex.williamson@xxxxxx>

diff -r 17adc9c5984a -r 74bb3750f48e xen/arch/ia64/xen/process.c
--- a/xen/arch/ia64/xen/process.c       Fri Feb 24 15:44:34 2006
+++ b/xen/arch/ia64/xen/process.c       Fri Feb 24 16:41:27 2006
@@ -94,7 +94,7 @@
        extern unsigned long dom0_start, dom0_size;
 
        // FIXME address had better be pre-validated on insert
-       mask = itir_mask(itir);
+       mask = ~itir_mask(itir);
        mpaddr = ((pteval & _PAGE_PPN_MASK) & ~mask) | (address & mask);
        if (d == dom0) {
                if (mpaddr < dom0_start || mpaddr >= dom0_start + dom0_size) {

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

<Prev in Thread] Current Thread [Next in Thread>
  • [Xen-changelog] [IA64] fix ia64 cset 8906, Xen patchbot -unstable <=