aboutsummaryrefslogtreecommitdiffstats
path: root/unmodified_drivers/linux-2.6/compat-include
diff options
context:
space:
mode:
authorIan Campbell <ian.campbell@xensource.com>2006-10-25 13:58:30 +0100
committerIan Campbell <ian.campbell@xensource.com>2006-10-25 13:58:30 +0100
commite46b787ee33cfbec5438c60ada2014184bf0abf0 (patch)
tree9ca7578f2ffc392434d28d294544f7dfa28f0e2d /unmodified_drivers/linux-2.6/compat-include
parent5a246a63328b8768b0270490281c9945bb124fd5 (diff)
downloadxen-e46b787ee33cfbec5438c60ada2014184bf0abf0.tar.gz
xen-e46b787ee33cfbec5438c60ada2014184bf0abf0.tar.bz2
xen-e46b787ee33cfbec5438c60ada2014184bf0abf0.zip
PV-on-HVM: Implement compatibilty version of wait_for_completion_timeout
for kernels before 2.6.11 Signed-off-by: Ian Campbell <ian.campbell@xensource.com>
Diffstat (limited to 'unmodified_drivers/linux-2.6/compat-include')
-rw-r--r--unmodified_drivers/linux-2.6/compat-include/xen/platform-compat.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/unmodified_drivers/linux-2.6/compat-include/xen/platform-compat.h b/unmodified_drivers/linux-2.6/compat-include/xen/platform-compat.h
index 185a97449c..1026f97653 100644
--- a/unmodified_drivers/linux-2.6/compat-include/xen/platform-compat.h
+++ b/unmodified_drivers/linux-2.6/compat-include/xen/platform-compat.h
@@ -33,4 +33,8 @@
unsigned long vmalloc_to_pfn(void *addr);
#endif
+#if defined(__LINUX_COMPLETION_H) && LINUX_VERSION_CODE < KERNEL_VERSION(2,6,11)
+unsigned long wait_for_completion_timeout(struct completion *x, unsigned long timeout);
+#endif
+
#endif