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
728a1734
Commit
728a1734
authored
Aug 03, 2019
by
J. R. Okajima
Browse files
Merge branch 'aufs5.2/30stdalone' into aufs5.x-rcN/30stdalone
parents
74a1e7d6
355dbb19
Changes
1
Hide whitespace changes
Inline
Side-by-side
include/uapi/linux/aufs_type.h
View file @
728a1734
...
...
@@ -254,7 +254,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