diff options
author | David Vrabel <david.vrabel@citrix.com> | 2014-07-02 11:25:29 +0100 |
---|---|---|
committer | Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | 2014-07-14 15:28:30 -0400 |
commit | 438b33c7145ca8a5131a30c36d8f59bce119a19a (patch) | |
tree | 3f7550d8598a3cb764982543ba34efd35f787d0a /arch/arm/xen | |
parent | 162e371712768248a38646eefa71af38b6e0f8ce (diff) | |
download | blackbird-op-linux-438b33c7145ca8a5131a30c36d8f59bce119a19a.tar.gz blackbird-op-linux-438b33c7145ca8a5131a30c36d8f59bce119a19a.zip |
xen/grant-table: remove support for V2 tables
Since 11c7ff17c9b6dbf3a4e4f36be30ad531a6cf0ec9 (xen/grant-table: Force
to use v1 of grants.) the code for V2 grant tables is not used.
Signed-off-by: David Vrabel <david.vrabel@citrix.com>
Signed-off-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Diffstat (limited to 'arch/arm/xen')
-rw-r--r-- | arch/arm/xen/grant-table.c | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/arch/arm/xen/grant-table.c b/arch/arm/xen/grant-table.c index 91cf08ba1e95..e43791829ace 100644 --- a/arch/arm/xen/grant-table.c +++ b/arch/arm/xen/grant-table.c @@ -45,14 +45,7 @@ void arch_gnttab_unmap(void *shared, unsigned long nr_gframes) return; } -int arch_gnttab_map_status(uint64_t *frames, unsigned long nr_gframes, - unsigned long max_nr_gframes, - grant_status_t **__shared) -{ - return -ENOSYS; -} - -int arch_gnttab_init(unsigned long nr_shared, unsigned long nr_status) +int arch_gnttab_init(unsigned long nr_shared) { return 0; } |