aboutsummaryrefslogtreecommitdiffstats
path: root/fs/nilfs2/seglist.h
diff options
context:
space:
mode:
Diffstat (limited to 'fs/nilfs2/seglist.h')
-rw-r--r--fs/nilfs2/seglist.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/fs/nilfs2/seglist.h b/fs/nilfs2/seglist.h
index d39df9144e9..e448e40c1ec 100644
--- a/fs/nilfs2/seglist.h
+++ b/fs/nilfs2/seglist.h
@@ -32,11 +32,6 @@
32struct nilfs_segment_entry { 32struct nilfs_segment_entry {
33 __u64 segnum; 33 __u64 segnum;
34 34
35#define NILFS_SLH_FREED 0x0001 /* The segment was freed provisonally.
36 It must be cancelled if
37 construction aborted */
38
39 unsigned flags;
40 struct list_head list; 35 struct list_head list;
41 struct buffer_head *bh_su; 36 struct buffer_head *bh_su;
42 struct nilfs_segment_usage *raw_su; 37 struct nilfs_segment_usage *raw_su;
@@ -52,7 +47,6 @@ nilfs_alloc_segment_entry(__u64 segnum)
52 47
53 if (likely(ent)) { 48 if (likely(ent)) {
54 ent->segnum = segnum; 49 ent->segnum = segnum;
55 ent->flags = 0;
56 ent->bh_su = NULL; 50 ent->bh_su = NULL;
57 ent->raw_su = NULL; 51 ent->raw_su = NULL;
58 INIT_LIST_HEAD(&ent->list); 52 INIT_LIST_HEAD(&ent->list);