ChangeLog, pf.c:

pf.c: Add code to print out the journalled data flag.
bitmap-optimize
Theodore Ts'o 2000-12-31 13:35:38 +00:00
parent 16ad33346d
commit bda15095fc
2 changed files with 9 additions and 4 deletions

View File

@ -1,3 +1,7 @@
2000-12-31 <tytso@snap.thunk.org>
* pf.c: Add code to print out the journalled data flag.
2000-12-02 <tytso@snap.thunk.org>
* fgetflags.c (fgetflags):

View File

@ -32,11 +32,12 @@ static struct flags_name flags_array[] = {
{ EXT2_APPEND_FL, "a", "Append_Only" },
{ EXT2_NODUMP_FL, "d", "No_Dump" },
{ EXT2_NOATIME_FL, "A", "No_Atime" },
{ EXT2_COMPR_FL, "c", "Compression_requested" },
{ EXT2_COMPRBLK_FL, "B", "Compressed_file" },
{ EXT2_DIRTY_FL, "D", "Compressed dirty file" },
{ EXT2_NOCOMPR_FL, "X", "Raw_access" },
{ EXT2_COMPR_FL, "c", "Compression_Requested" },
{ EXT2_COMPRBLK_FL, "B", "Compressed_File" },
{ EXT2_DIRTY_FL, "D", "Compressed_Dirty_File" },
{ EXT2_NOCOMPR_FL, "X", "Raw_Access" },
{ EXT2_ECOMPR_FL, "E", "Compression_Error" },
{ EXT3_JOURNAL_DATA_FL, "j", "Journaled_data" },
{ 0, NULL, NULL }
};