Remove set_migrateflags()
[deliverable/linux.git] / fs / buffer.c
index 39ff14403d137be85dcd11161584abeabd9d7577..8b9807523efe3acf3dc5a2305a91ce8f7ed586d2 100644 (file)
@@ -3180,8 +3180,7 @@ static void recalc_bh_state(void)
        
 struct buffer_head *alloc_buffer_head(gfp_t gfp_flags)
 {
-       struct buffer_head *ret = kmem_cache_alloc(bh_cachep,
-                               set_migrateflags(gfp_flags, __GFP_RECLAIMABLE));
+       struct buffer_head *ret = kmem_cache_alloc(bh_cachep, gfp_flags);
        if (ret) {
                INIT_LIST_HEAD(&ret->b_assoc_buffers);
                get_cpu_var(bh_accounting).nr++;
This page took 0.029003 seconds and 5 git commands to generate.