search for: ext3_nodump_fl

Displaying 1 result from an estimated 1 matches for "ext3_nodump_fl".

Did you mean: ext2_nodump_fl
2005 Jul 20
0
ext3 nodump attribute inheritance
...11:20:36.000000000 +0200 @@ -566,9 +566,9 @@ ei->i_next_alloc_goal = 0; ei->i_dir_start_lookup = 0; ei->i_disksize = 0; - ei->i_flags = EXT3_I(dir)->i_flags & ~EXT3_INDEX_FL; + ei->i_flags = EXT3_I(dir)->i_flags & ~(EXT3_INDEX_FL | EXT3_NODUMP_FL); if (S_ISLNK(mode)) ei->i_flags &= ~(EXT3_IMMUTABLE_FL|EXT3_APPEND_FL); /* dirsync only applies to directories */ if (!S_ISDIR(mode)) Now my new files and dirs do not inherit nodump flag from their parent dir anymore. Of course, however tiny this cha...