]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
xen/grant-table: Force to use v1 of grants.
authorKonrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Tue, 31 Dec 2013 14:44:06 +0000 (09:44 -0500)
committerKonrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Fri, 3 Jan 2014 19:55:16 +0000 (14:55 -0500)
We have the framework to use v2, but there are no backends that
actually use it. The end result is that on PV we use v2 grants
and on PVHVM v1. The v1 has a capacity of 512 grants per page while
the v2 has 256 grants per page. This means we lose about 50%
capacity - and if we want more than 16 VIFs (each VIF takes
512 grants), then we are hitting the max per guest of 32.

Oracle-bug: 16039922
CC: annie.li@oracle.com
CC: msw@amazon.com
Signed-off-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Reviewed-by: David Vrabel <david.vrabel@citrix.com>
drivers/xen/grant-table.c

index aa846a48f4009eaac8271a8a653716c27aa1dc01..3005c17bd170a00df3f36dd2a3362867e1b3f5b5 100644 (file)
@@ -1135,10 +1135,8 @@ static void gnttab_request_version(void)
        int rc;
        struct gnttab_set_version gsv;
 
-       if (xen_hvm_domain())
-               gsv.version = 1;
-       else
-               gsv.version = 2;
+       gsv.version = 1;
+
        rc = HYPERVISOR_grant_table_op(GNTTABOP_set_version, &gsv, 1);
        if (rc == 0 && gsv.version == 2) {
                grant_table_version = 2;