mirror of
https://github.com/torvalds/linux.git
synced 2024-11-22 12:11:40 +00:00
10a04ff09b
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: Yury Norov <yury.norov@gmail.com> Signed-off-by: Alexander Lobakin <aleksander.lobakin@intel.com> Signed-off-by: David S. Miller <davem@davemloft.net>
13 lines
339 B
C
13 lines
339 B
C
/* 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 */
|