commit | e6b4f8da3a88457148038bc952043e99a7fdba64 | [log] [tgz] |
---|---|---|
author | Christoph Lameter <clameter@sgi.com> | Wed Dec 06 20:33:14 2006 -0800 |
committer | Linus Torvalds <torvalds@woody.osdl.org> | Thu Dec 07 08:39:23 2006 -0800 |
tree | 858c2a0e04b442395e7ecd0f60c8d2a3304b83e1 | |
parent | 55acbda0965ca0a29b0ca276e7d17a55edc11d1b [diff] [blame] |
[PATCH] slab: remove SLAB_NOFS SLAB_NOFS is an alias of GFP_NOFS. Signed-off-by: Christoph Lameter <clameter@sgi.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
diff --git a/fs/dquot.c b/fs/dquot.c index 9af7895..c6ae6c0 100644 --- a/fs/dquot.c +++ b/fs/dquot.c
@@ -600,7 +600,7 @@ { struct dquot *dquot; - dquot = kmem_cache_alloc(dquot_cachep, SLAB_NOFS); + dquot = kmem_cache_alloc(dquot_cachep, GFP_NOFS); if(!dquot) return NODQUOT;