Skip to content
Snippets Groups Projects
Commit 66aaadbd authored by Alexander Lobakin's avatar Alexander Lobakin Committed by Frieder Schrempf
Browse files

tools: move alignment-related macros to new <linux/align.h>


commit 10a04ff0 upstream.

Currently, tools have *ALIGN*() macros scattered across the unrelated
headers, as there are only 3 of them and they were added separately
each time on an as-needed basis.
Anyway, let's make it more consistent with the kernel headers and allow
using those macros outside of the mentioned headers. Create
<linux/align.h> inside the tools/ folder and include it where needed.

Signed-off-by: default avatarYury Norov <yury.norov@gmail.com>
Signed-off-by: default avatarAlexander Lobakin <aleksander.lobakin@intel.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 5aa608b1
No related branches found
No related tags found
1 merge request!167🤖 Sync Bot: Update v5.4-ktn to Latest Stable Kernel (v5.4.283)
/* SPDX-License-Identifier: GPL-2.0-only */
#ifndef _TOOLS_LINUX_ALIGN_H
#define _TOOLS_LINUX_ALIGN_H
#include <uapi/linux/const.h>
#define ALIGN(x, a) __ALIGN_KERNEL((x), (a))
#define ALIGN_DOWN(x, a) __ALIGN_KERNEL((x) - ((a) - 1), (a))
#define IS_ALIGNED(x, a) (((x) & ((typeof(x))(a) - 1)) == 0)
#endif /* _TOOLS_LINUX_ALIGN_H */
...@@ -3,6 +3,7 @@ ...@@ -3,6 +3,7 @@
#define _PERF_BITOPS_H #define _PERF_BITOPS_H
#include <string.h> #include <string.h>
#include <linux/align.h>
#include <linux/bitops.h> #include <linux/bitops.h>
#include <stdlib.h> #include <stdlib.h>
#include <linux/kernel.h> #include <linux/kernel.h>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment