GFS2: Use GFP_NOFS for alloc structure
authorSteven Whitehouse <swhiteho@redhat.com>
Fri, 29 Jan 2010 15:48:57 +0000 (15:48 +0000)
committerSteven Whitehouse <swhiteho@redhat.com>
Mon, 1 Feb 2010 10:01:34 +0000 (10:01 +0000)
This is called under a glock, so its a good plan to use GFP_NOFS

Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
fs/gfs2/rgrp.c

index 46534a5..503b842 100644 (file)
@@ -911,7 +911,7 @@ void gfs2_rgrp_repolish_clones(struct gfs2_rgrpd *rgd)
 struct gfs2_alloc *gfs2_alloc_get(struct gfs2_inode *ip)
 {
        BUG_ON(ip->i_alloc != NULL);
-       ip->i_alloc = kzalloc(sizeof(struct gfs2_alloc), GFP_KERNEL);
+       ip->i_alloc = kzalloc(sizeof(struct gfs2_alloc), GFP_NOFS);
        return ip->i_alloc;
 }