projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1b430be
)
include/linux/pageblock-flags.h: fix set_pageblock_flags() macro definiton
author
zeal
<
[email protected]
>
Tue, 26 Oct 2010 21:21:27 +0000
(14:21 -0700)
committer
Linus Torvalds
<
[email protected]
>
Tue, 26 Oct 2010 23:52:05 +0000
(16:52 -0700)
The presently-unused macro was missing one parameter.
Signed-off-by: zeal <
[email protected]
>
Acked-by: Mel Gorman <
[email protected]
>
Signed-off-by: Andrew Morton <
[email protected]
>
Signed-off-by: Linus Torvalds <
[email protected]
>
include/linux/pageblock-flags.h
patch
|
blob
|
history
diff --git
a/include/linux/pageblock-flags.h
b/include/linux/pageblock-flags.h
index e8c06122be36058f88cb6e291360eb2c0ebe09a0..19ef95d293aecbc9f23e48b0235ef47625e70536 100644
(file)
--- a/
include/linux/pageblock-flags.h
+++ b/
include/linux/pageblock-flags.h
@@
-67,7
+67,8
@@
void set_pageblock_flags_group(struct page *page, unsigned long flags,
#define get_pageblock_flags(page) \
get_pageblock_flags_group(page, 0, NR_PAGEBLOCK_BITS-1)
-#define set_pageblock_flags(page) \
- set_pageblock_flags_group(page, 0, NR_PAGEBLOCK_BITS-1)
+#define set_pageblock_flags(page, flags) \
+ set_pageblock_flags_group(page, flags, \
+ 0, NR_PAGEBLOCK_BITS-1)
#endif /* PAGEBLOCK_FLAGS_H */