|
|
|
|
|
|
|
|
|
|
xen-devel
[Xen-devel] Re: [PATCH 2/3] xen/granttable: Grant tables V2 implementati
To: |
ANNIE LI <annie.li@xxxxxxxxxx> |
Subject: |
[Xen-devel] Re: [PATCH 2/3] xen/granttable: Grant tables V2 implementation |
From: |
Ian Campbell <Ian.Campbell@xxxxxxxxxx> |
Date: |
Fri, 18 Nov 2011 11:02:45 +0000 |
Cc: |
"jeremy@xxxxxxxx" <jeremy@xxxxxxxx>, "xen-devel@xxxxxxxxxxxxxxxxxxx" <xen-devel@xxxxxxxxxxxxxxxxxxx>, "konrad.wilk@xxxxxxxxxx" <konrad.wilk@xxxxxxxxxx>, "kurt.hackel@xxxxxxxxxx" <kurt.hackel@xxxxxxxxxx>, "linux-kernel@xxxxxxxxxxxxxxx" <linux-kernel@xxxxxxxxxxxxxxx>, Paul Durrant <Paul.Durrant@xxxxxxxxxx> |
Delivery-date: |
Fri, 18 Nov 2011 03:06:09 -0800 |
Envelope-to: |
www-data@xxxxxxxxxxxxxxxxxxx |
In-reply-to: |
<4EC62FE5.2080608@xxxxxxxxxx> |
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> |
Organization: |
Citrix Systems, Inc. |
References: |
<4EC3B62F.6080702@xxxxxxxxxx> <1321451372-13596-1-git-send-email-annie.li@xxxxxxxxxx> <4EC62FE5.2080608@xxxxxxxxxx> |
Sender: |
xen-devel-bounces@xxxxxxxxxxxxxxxxxxx |
On Fri, 2011-11-18 at 10:13 +0000, ANNIE LI wrote:
> static void gnttab_request_version(void)
> {
> - grant_table_version = 1;
> - gnttab_interface = &gnttab_v1_ops;
> + int rc;
> + struct gnttab_set_version gsv;
> + const char *str = "we need grant tables version 2, but only version 1
> is available\n";
> +
> + gsv.version = 2;
> + rc = HYPERVISOR_grant_table_op(GNTTABOP_set_version, &gsv, 1);
> + if (rc == 0) {
> + grant_table_version = 2;
> + gnttab_interface = &gnttab_v2_ops;
> + } else {
> + if (grant_table_version == 2) {
} else if (...) {
panic
} else {
setup v1
}
> + /*
> + * If we've already used version 2 features,
> + * but then suddenly discover that they're not
> + * available (e.g. migrating to an older
> + * version of Xen), almost unbounded badness
> + * can happen.
> + */
> + xen_raw_printk(str);
> + panic(str);
I expect you've just copied this style from elsewhere but I really
dislike this duplication of prints. If panic is not useful here we
really ought to address that at the root instead of going around
patching things to print every panic message twice. I thought
earlyprintk was supposed to solve this problem. Perhaps a generic
early_panic_print could be added to the panic code?
If we stick with this (which is fair enough since it is outside the
scope of this series) you should move the const char *str into this code
block so it is near to the use.
> + }
> + grant_table_version = 1;
> + gnttab_interface = &gnttab_v1_ops;
> + }
> printk(KERN_INFO "Grant tables using version %d layout.\n",
> grant_table_version);
> }
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel
|
|
|
|
|