aboutsummaryrefslogtreecommitdiffstats
path: root/xen/common/compat
diff options
context:
space:
mode:
authorSteven Smith <ssmith@xensource.com>2007-04-27 13:31:09 +0100
committerSteven Smith <ssmith@xensource.com>2007-04-27 13:31:09 +0100
commit04b2c0721ad5584c5bc7f4f022963dad503f3d3b (patch)
tree0af3808d4fe804d45fde22a22964d679c34c75c1 /xen/common/compat
parentebd759d57e1d8e8512c020fe6d9c6b18034a852d (diff)
parent21ac7c5fddfc210136c73a54281700285dbc2ea4 (diff)
downloadxen-04b2c0721ad5584c5bc7f4f022963dad503f3d3b.tar.gz
xen-04b2c0721ad5584c5bc7f4f022963dad503f3d3b.tar.bz2
xen-04b2c0721ad5584c5bc7f4f022963dad503f3d3b.zip
Merge.
Diffstat (limited to 'xen/common/compat')
-rw-r--r--xen/common/compat/acm_ops.c47
1 files changed, 0 insertions, 47 deletions
diff --git a/xen/common/compat/acm_ops.c b/xen/common/compat/acm_ops.c
deleted file mode 100644
index 28af1a8e6c..0000000000
--- a/xen/common/compat/acm_ops.c
+++ /dev/null
@@ -1,47 +0,0 @@
-/******************************************************************************
- * compat/acm_ops.c
- */
-
-#include <compat/acm.h>
-#include <compat/acm_ops.h>
-
-#define COMPAT
-#define ret_t int
-
-#define do_acm_op compat_acm_op
-
-static inline XEN_GUEST_HANDLE(void) acm_xlat_handle(COMPAT_HANDLE(void) cmp)
-{
- XEN_GUEST_HANDLE(void) nat;
-
- guest_from_compat_handle(nat, cmp);
- return nat;
-}
-
-#define acm_setpolicy compat_acm_setpolicy
-#define acm_set_policy(h, sz) acm_set_policy(acm_xlat_handle(h), sz)
-
-#define acm_getpolicy compat_acm_getpolicy
-#define acm_get_policy(h, sz) acm_get_policy(acm_xlat_handle(h), sz)
-
-#define acm_dumpstats compat_acm_dumpstats
-#define acm_dump_statistics(h, sz) acm_dump_statistics(acm_xlat_handle(h), sz)
-
-#define acm_getssid compat_acm_getssid
-#define acm_get_ssid(r, h, sz) acm_get_ssid(r, acm_xlat_handle(h), sz)
-
-#define xen_acm_getdecision acm_getdecision
-CHECK_acm_getdecision;
-#undef xen_acm_getdecision
-
-#include "../acm_ops.c"
-
-/*
- * Local variables:
- * mode: C
- * c-set-style: "BSD"
- * c-basic-offset: 4
- * tab-width: 4
- * indent-tabs-mode: nil
- * End:
- */