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-ppc-devel

[XenPPC] [pushed] [ppc] fix panic string

changeset:   27812:0d639e020e3fd1fc33970f82e4c9fe88388fc0c6
tag:         tip
parent:      27810:a66bb96ad56fb6dfb7af2e226f8dd070b802c15a
parent:      27811:11e1dcb7a976f21bc80929aa74bac3216a406a40
user:        jimix@xxxxxxxxxxxxxxxxxxxxx
date:        Fri May 19 10:39:30 2006 -0400
files:       
description:
[ppc] fix panic string


diff -r a66bb96ad56fb6dfb7af2e226f8dd070b802c15a -r 
0d639e020e3fd1fc33970f82e4c9fe88388fc0c6 drivers/xen/core/xencomm.c
--- a/drivers/xen/core/xencomm.c        Fri May 19 10:36:43 2006 -0400
+++ b/drivers/xen/core/xencomm.c        Fri May 19 10:39:30 2006 -0400
@@ -102,7 +102,7 @@ static struct xencomm_desc *xencomm_allo
        /* XXX could we call this from irq context? */
        desc = (struct xencomm_desc *)__get_free_page(gfp_mask);
        if (desc == NULL) {
-               panic("%s: failed\n");
+               panic("%s: page allocation failed\n", __func__);
        }
        desc->nr_addrs = (PAGE_SIZE - sizeof(struct xencomm_desc)) /
                        sizeof(*desc->address);



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

<Prev in Thread] Current Thread [Next in Thread>
  • [XenPPC] [pushed] [ppc] fix panic string, jimix <=