search for: ext3_immutable_fl

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

Did you mean: ext2_immutable_fl
2005 Jul 20
0
ext3 nodump attribute inheritance
...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 change is, I rate is so useful for others, that I'm going out with it. Changing the f...