hc
2024-02-20 102a0743326a03cd1a1202ceda21e175b7d3575c
kernel/fs/nilfs2/the_nilfs.h
....@@ -29,6 +29,7 @@
2929 THE_NILFS_DISCONTINUED, /* 'next' pointer chain has broken */
3030 THE_NILFS_GC_RUNNING, /* gc process is running */
3131 THE_NILFS_SB_DIRTY, /* super block is dirty */
32
+ THE_NILFS_PURGING, /* disposing dirty files for cleanup */
3233 };
3334
3435 /**
....@@ -208,6 +209,7 @@
208209 THE_NILFS_FNS(DISCONTINUED, discontinued)
209210 THE_NILFS_FNS(GC_RUNNING, gc_running)
210211 THE_NILFS_FNS(SB_DIRTY, sb_dirty)
212
+THE_NILFS_FNS(PURGING, purging)
211213
212214 /*
213215 * Mount option operations
....@@ -375,7 +377,7 @@
375377 */
376378 smp_wmb();
377379
378
- err = blkdev_issue_flush(nilfs->ns_bdev, GFP_KERNEL, NULL);
380
+ err = blkdev_issue_flush(nilfs->ns_bdev, GFP_KERNEL);
379381 if (err != -EIO)
380382 err = 0;
381383 return err;