aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/page-flags.h
diff options
context:
space:
mode:
authorNick Piggin <npiggin@suse.de>2006-03-22 03:08:02 -0500
committerLinus Torvalds <torvalds@g5.osdl.org>2006-03-22 10:53:57 -0500
commitf205b2fe62d321403525065a4cb31b6bff1bbe53 (patch)
tree26a2273e7da089e99690097348bf4d35600393f4 /include/linux/page-flags.h
parent5e9dace8d386def04219134d7160e8a778824764 (diff)
[PATCH] mm: slab less atomics
Atomic operation removal from slab Signed-off-by: Nick Piggin <npiggin@suse.de> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include/linux/page-flags.h')
-rw-r--r--include/linux/page-flags.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/include/linux/page-flags.h b/include/linux/page-flags.h
index 76c7ffdd042..8cef69d462f 100644
--- a/include/linux/page-flags.h
+++ b/include/linux/page-flags.h
@@ -250,10 +250,8 @@ extern void __mod_page_state_offset(unsigned long offset, unsigned long delta);
250#define __ClearPageActive(page) __clear_bit(PG_active, &(page)->flags) 250#define __ClearPageActive(page) __clear_bit(PG_active, &(page)->flags)
251 251
252#define PageSlab(page) test_bit(PG_slab, &(page)->flags) 252#define PageSlab(page) test_bit(PG_slab, &(page)->flags)
253#define SetPageSlab(page) set_bit(PG_slab, &(page)->flags) 253#define __SetPageSlab(page) __set_bit(PG_slab, &(page)->flags)
254#define ClearPageSlab(page) clear_bit(PG_slab, &(page)->flags) 254#define __ClearPageSlab(page) __clear_bit(PG_slab, &(page)->flags)
255#define TestClearPageSlab(page) test_and_clear_bit(PG_slab, &(page)->flags)
256#define TestSetPageSlab(page) test_and_set_bit(PG_slab, &(page)->flags)
257 255
258#ifdef CONFIG_HIGHMEM 256#ifdef CONFIG_HIGHMEM
259#define PageHighMem(page) is_highmem(page_zone(page)) 257#define PageHighMem(page) is_highmem(page_zone(page))