Add compiler.h file to support using kernel error check funciotns(e.g ERR_PTR, PTR_ERR and so on). Signed-off-by: Lan Tianyu <tianyu.lan@xxxxxxxxx> --- tools/kvm/include/linux/compiler.h | 16 ++++++++++++++++ 1 files changed, 16 insertions(+), 0 deletions(-) create mode 100644 tools/kvm/include/linux/compiler.h diff --git a/tools/kvm/include/linux/compiler.h b/tools/kvm/include/linux/compiler.h new file mode 100644 index 0000000..bd360c2 --- /dev/null +++ b/tools/kvm/include/linux/compiler.h @@ -0,0 +1,16 @@ +#ifndef _PERF_LINUX_COMPILER_H_ +#define _PERF_LINUX_COMPILER_H_ + +#ifndef __always_inline +#define __always_inline inline +#endif +#define __user +#define __attribute_const__ + +#define __used __attribute__((__unused__)) +#define __iomem +#define __force +#define __must_check +#define unlikely + +#endif -- 1.7.6.rc2.8.g28eb -- To unsubscribe from this list: send the line "unsubscribe kvm" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html