Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Aufs5 Standalone
Commits
084326ad
Commit
084326ad
authored
Aug 03, 2019
by
J. R. Okajima
Browse files
Merge branch 'aufs5.2/00base' into aufs5.x-rcN/00base
parents
bc391a61
6dfe3345
Changes
1
Show whitespace changes
Inline
Side-by-side
include/uapi/linux/aufs_type.h
View file @
084326ad
...
...
@@ -241,7 +241,11 @@ enum {
/* borrowed from linux/include/linux/kernel.h */
#ifndef ALIGN
#ifdef _GNU_SOURCE
#define ALIGN(x, a) __ALIGN_MASK(x, (typeof(x))(a)-1)
#else
#define ALIGN(x, a) (((x) + (a) - 1) & ~((a) - 1))
#endif
#define __ALIGN_MASK(x, mask) (((x)+(mask))&~(mask))
#endif
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment