Changeset a04b62d in mainline


Ignore:
Timestamp:
2011-03-27T10:26:22Z (13 years ago)
Author:
Maurizio Lombardi <m.lombardi85@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
7a96476
Parents:
ac28650
Message:

assertion failed, sbi→dirsize was not initialized at mount.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/fs/minixfs/mfs_ops.c

    rac28650 ra04b62d  
    184184                sbi->nzones = conv32(native, sb3->s_nzones);
    185185                sbi->block_size = conv16(native, sb3->s_block_size);
     186                sbi->dirsize = MFS3_DIRSIZE;
    186187        } else {
    187188                sbi->ninodes = conv16(native, sb->s_ninodes);
     
    195196                if (version == MFS_VERSION_V2)
    196197                        sbi->nzones = conv32(native, sb->s_nzones2);
     198                sbi->dirsize = longnames ? MFSL_DIRSIZE : MFS_DIRSIZE;
    197199        }
    198200 
Note: See TracChangeset for help on using the changeset viewer.