aboutsummaryrefslogtreecommitdiffstats
path: root/linux-2.6.9-xen-sparse/include/asm-xen/gnttab.h
blob: fa166ec6b17d5f04e72dea394df37c59a114fea9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/******************************************************************************
 * gnttab.h
 * 
 * Two sets of functionality:
 * 1. Granting foreign access to our memory reservation.
 * 2. Accessing others' memory reservations via grant references.
 * (i.e., mechanisms for both sender and recipient of grant references)
 * 
 * Copyright (c) 2004, K A Fraser
 */

#ifndef __ASM_GNTTAB_H__
#define __ASM_GNTTAB_H__

#include <linux/config.h>
#include <asm-xen/hypervisor.h>
#include <asm-xen/xen-public/grant_table.h>

int
gnttab_grant_foreign_access(
    domid_t domid, unsigned long frame, int readonly);

void
gnttab_end_foreign_access(
    grant_ref_t ref, int readonly);

int
gnttab_grant_foreign_transfer(
    domid_t domid);

unsigned long
gnttab_end_foreign_transfer(
    grant_ref_t ref);

#endif /* __ASM_GNTTAB_H__ */