Home
last modified time | relevance | path

Searched refs:InodesPerGroup (Results 1 – 5 of 5) sorted by relevance

/haiku/src/add-ons/kernel/file_systems/ext2/
H A DInodeAllocator.cpp52 / parent->GetVolume()->InodesPerGroup() : 0; in New()
64 uint32 numInodes = fVolume->InodesPerGroup(); in Free()
110 isDirectory, id, fVolume->InodesPerGroup()) == B_OK) in _Allocate()
116 * fVolume->InodesPerGroup()) == B_OK) in _Allocate()
146 _InitGroup(transaction, group, block, fVolume->InodesPerGroup()); in _AllocateInGroup()
162 fVolume->InodesPerGroup(), pos, checksum); in _AllocateInGroup()
167 && pos > (fVolume->InodesPerGroup() in _AllocateInGroup()
169 group->SetUnusedInodes(fVolume->InodesPerGroup() - pos - 1, in _AllocateInGroup()
177 id = pos + blockGroup * fVolume->InodesPerGroup() + 1; in _AllocateInGroup()
212 checksum = inodeBitmap.Checksum(fVolume->InodesPerGroup()); in _MarkInBitmap()
[all …]
H A DVolume.h67 uint32 InodesPerGroup() const in InodesPerGroup() function
68 { return fSuperBlock.InodesPerGroup(); } in InodesPerGroup()
H A DVolume.cpp366 status_t status = GetBlockGroup((id - 1) / fSuperBlock.InodesPerGroup(), in GetInodeBlock()
372 + ((id - 1) % fSuperBlock.InodesPerGroup()) / fInodesPerBlock; in GetInodeBlock()
382 return ((id - 1) % fSuperBlock.InodesPerGroup()) % fInodesPerBlock; in InodeBlockIndex()
H A Dext2.h130 uint32 InodesPerGroup() const in InodesPerGroup() function
H A DBlockAllocator.cpp739 uint32 group = inode->ID() / fVolume->InodesPerGroup(); in Allocate()