]> git.baikalelectronics.ru Git - kernel.git/commit
xen/granttable: Grant tables V2 implementation
authorAnnie Li <annie.li@oracle.com>
Tue, 22 Nov 2011 01:59:21 +0000 (09:59 +0800)
committerKonrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Tue, 22 Nov 2011 14:24:51 +0000 (09:24 -0500)
commit44d7d0c28772c92b92a9585a283382b69e5b03b7
tree30c3f1622c525036e1cefc8ade5853c0be700cb4
parenta7ed5056a8fe381401ed59c40cbc18dbe174e548
xen/granttable: Grant tables V2 implementation

Receiver-side copying of packets is based on this implementation, it gives
better performance and better CPU accounting. It totally supports three types:
full-page, sub-page and transitive grants.

However this patch does not cover sub-page and transitive grants, it mainly
focus on Full-page part and implements grant table V2 interfaces corresponding
to what already exists in grant table V1, such as: grant table V2
initialization, mapping, releasing and exported interfaces.

Each guest can only supports one type of grant table type, every entry in grant
table should be the same version. It is necessary to set V1 or V2 version before
initializing the grant table.

Grant table exported interfaces of V2 are same with those of V1, Xen is
responsible to judge what grant table version guests are using in every grant
operation.

V2 fulfills the same role of V1, and it is totally backwards compitable with V1.
If dom0 support grant table V2, the guests runing on it can run with either V1
or V2.

Acked-by: Ian Campbell <ian.campbell@citrix.com>
Signed-off-by: Annie Li <annie.li@oracle.com>
[v1: Modified alloc_vm_area call (new parameters), indentation, and cleanpatch
     warnings]
Signed-off-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
arch/x86/xen/grant-table.c
drivers/xen/grant-table.c
include/xen/grant_table.h