diff options
| author | Steve French <sfrench@us.ibm.com> | 2008-04-25 16:20:10 -0400 |
|---|---|---|
| committer | Steve French <sfrench@us.ibm.com> | 2008-04-25 16:20:10 -0400 |
| commit | 404e86e1550cc2c84bb57a372af784585c732f9a (patch) | |
| tree | c0e8e2d61c1b1c79705c0dc9f0f16e35267286e4 /drivers/xen/features.c | |
| parent | 0206e61b467fde4d7b50f1a64355182a4fd9576b (diff) | |
| parent | b9fa38f75ea7e1f64bc29653ca9758303ce698e4 (diff) | |
Merge branch 'master' of /pub/scm/linux/kernel/git/torvalds/linux-2.6
Diffstat (limited to 'drivers/xen/features.c')
| -rw-r--r-- | drivers/xen/features.c | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/drivers/xen/features.c b/drivers/xen/features.c new file mode 100644 index 000000000000..0707714e40d6 --- /dev/null +++ b/drivers/xen/features.c | |||
| @@ -0,0 +1,29 @@ | |||
| 1 | /****************************************************************************** | ||
| 2 | * features.c | ||
| 3 | * | ||
| 4 | * Xen feature flags. | ||
| 5 | * | ||
| 6 | * Copyright (c) 2006, Ian Campbell, XenSource Inc. | ||
| 7 | */ | ||
| 8 | #include <linux/types.h> | ||
| 9 | #include <linux/cache.h> | ||
| 10 | #include <linux/module.h> | ||
| 11 | #include <asm/xen/hypervisor.h> | ||
| 12 | #include <xen/features.h> | ||
| 13 | |||
| 14 | u8 xen_features[XENFEAT_NR_SUBMAPS * 32] __read_mostly; | ||
| 15 | EXPORT_SYMBOL_GPL(xen_features); | ||
| 16 | |||
| 17 | void xen_setup_features(void) | ||
| 18 | { | ||
| 19 | struct xen_feature_info fi; | ||
| 20 | int i, j; | ||
| 21 | |||
| 22 | for (i = 0; i < XENFEAT_NR_SUBMAPS; i++) { | ||
| 23 | fi.submap_idx = i; | ||
| 24 | if (HYPERVISOR_xen_version(XENVER_get_features, &fi) < 0) | ||
| 25 | break; | ||
| 26 | for (j = 0; j < 32; j++) | ||
| 27 | xen_features[i * 32 + j] = !!(fi.submap & 1<<j); | ||
| 28 | } | ||
| 29 | } | ||
