From: Keir Fraser Date: Thu, 12 Mar 2009 11:25:40 +0000 (+0000) Subject: PV-on-HVM: Add a compatibility linux/scatterlist.h for kernels before 2.6.12 X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~13992^2~89 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=b41dfb227d713da2850e660cf2ff3aae43e9c99f;p=xen.git PV-on-HVM: Add a compatibility linux/scatterlist.h for kernels before 2.6.12 Signed-off-by: KUWAMURA Shin'ya --- diff --git a/unmodified_drivers/linux-2.6/compat-include/linux/scatterlist.h b/unmodified_drivers/linux-2.6/compat-include/linux/scatterlist.h new file mode 100644 index 0000000000..e26a6acb51 --- /dev/null +++ b/unmodified_drivers/linux-2.6/compat-include/linux/scatterlist.h @@ -0,0 +1,10 @@ +#ifndef _LINUX_SCATTERLIST_H +#define _LINUX_SCATTERLIST_H + +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,12) +#error "This version of Linux should not need compat linux/scatterlist.h" +#endif + +#include + +#endif /* _LINUX_SCATTERLIST_H */