ia64/xen-unstable
changeset 6855:c8f873ae3ede
Add ia64-specific hypervisor.h
author | djm@kirby.fc.hp.com |
---|---|
date | Wed Sep 14 15:45:30 2005 -0600 (2005-09-14) |
parents | 9af349b055e5 |
children | 0833c2337202 |
files | linux-2.6-xen-sparse/include/asm-xen/asm-ia64/hypervisor.h |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/linux-2.6-xen-sparse/include/asm-xen/asm-ia64/hypervisor.h Wed Sep 14 15:45:30 2005 -0600 1.3 @@ -0,0 +1,44 @@ 1.4 +/****************************************************************************** 1.5 + * hypervisor.h 1.6 + * 1.7 + * Linux-specific hypervisor handling. 1.8 + * 1.9 + * Copyright (c) 2002-2004, K A Fraser 1.10 + * 1.11 + * This file may be distributed separately from the Linux kernel, or 1.12 + * incorporated into other software packages, subject to the following license: 1.13 + * 1.14 + * Permission is hereby granted, free of charge, to any person obtaining a copy 1.15 + * of this source file (the "Software"), to deal in the Software without 1.16 + * restriction, including without limitation the rights to use, copy, modify, 1.17 + * merge, publish, distribute, sublicense, and/or sell copies of the Software, 1.18 + * and to permit persons to whom the Software is furnished to do so, subject to 1.19 + * the following conditions: 1.20 + * 1.21 + * The above copyright notice and this permission notice shall be included in 1.22 + * all copies or substantial portions of the Software. 1.23 + * 1.24 + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 1.25 + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 1.26 + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 1.27 + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 1.28 + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 1.29 + * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS 1.30 + * IN THE SOFTWARE. 1.31 + */ 1.32 + 1.33 +#ifndef __HYPERVISOR_H__ 1.34 +#define __HYPERVISOR_H__ 1.35 + 1.36 +#include <linux/config.h> 1.37 +#include <linux/types.h> 1.38 +#include <linux/kernel.h> 1.39 +#include <linux/version.h> 1.40 +#include <asm-xen/xen-public/xen.h> 1.41 +#include <asm-xen/xen-public/dom0_ops.h> 1.42 +#include <asm/ptrace.h> 1.43 +#include <asm/page.h> 1.44 + 1.45 +extern start_info_t *xen_start_info; 1.46 + 1.47 +#endif /* __HYPERVISOR_H__ */