X-Git-Url: http://git.liburcu.org/?a=blobdiff_plain;f=wrapper%2Fuaccess.h;h=c56427c5173ea7e3736de0a8ea2dc526141a9d91;hb=HEAD;hp=c562e349648599ec60314b1eec8b835ade0973b1;hpb=52cb3b849cde399f68fa47d53010431803b8d93a;p=lttng-modules.git diff --git a/wrapper/uaccess.h b/wrapper/uaccess.h deleted file mode 100644 index c562e349..00000000 --- a/wrapper/uaccess.h +++ /dev/null @@ -1,29 +0,0 @@ -/* SPDX-License-Identifier: (GPL-2.0 or LGPL-2.1) - * - * wrapper/uaccess.h - * - * wrapper around linux/uaccess.h. - * - * Copyright (C) 2019 Michael Jeanson - */ - -#ifndef _LTTNG_WRAPPER_UACCESS_H -#define _LTTNG_WRAPPER_UACCESS_H - -#include -#include - -#if (LINUX_VERSION_CODE >= KERNEL_VERSION(5,0,0) || \ - LTTNG_RHEL_KERNEL_RANGE(4,18,0,147,0,0, 4,19,0,0,0,0)) - -#define VERIFY_READ 0 -#define VERIFY_WRITE 1 -#define lttng_access_ok(type, addr, size) access_ok(addr, size) - -#else /* LINUX_VERSION_CODE >= KERNEL_VERSION(5,0,0) */ - -#define lttng_access_ok(type, addr, size) access_ok(type, addr, size) - -#endif /* LINUX_VERSION_CODE >= KERNEL_VERSION(5,0,0) */ - -#endif /* _LTTNG_WRAPPER_UACCESS_H */