diff options
author | Christoph Lameter <clameter@sgi.com> | 2007-05-06 17:50:17 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-05-07 15:12:57 -0400 |
commit | cfce66047f1893cb7d3abb0d53e65cbbd8d605f0 (patch) | |
tree | b6e533a6b3deee686c42abf6c9117154548c0aaf /mm/slub.c | |
parent | 4f104934591ed98534b3a4c3d17d972b790e9c42 (diff) |
Slab allocators: remove useless __GFP_NO_GROW flag
There is no user remaining and I have never seen any use of that flag.
Signed-off-by: Christoph Lameter <clameter@sgi.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'mm/slub.c')
-rw-r--r-- | mm/slub.c | 3 |
1 files changed, 0 insertions, 3 deletions
@@ -815,9 +815,6 @@ static struct page *new_slab(struct kmem_cache *s, gfp_t flags, int node) | |||
815 | void *last; | 815 | void *last; |
816 | void *p; | 816 | void *p; |
817 | 817 | ||
818 | if (flags & __GFP_NO_GROW) | ||
819 | return NULL; | ||
820 | |||
821 | BUG_ON(flags & ~(GFP_DMA | GFP_LEVEL_MASK)); | 818 | BUG_ON(flags & ~(GFP_DMA | GFP_LEVEL_MASK)); |
822 | 819 | ||
823 | if (flags & __GFP_WAIT) | 820 | if (flags & __GFP_WAIT) |