MCPcopy Create free account
hub / github.com/bobranten/Ext4Fsd / Ext2PutGroup

Function Ext2PutGroup

Ext4Fsd/ext3/generic.c:146–163  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

144}
145
146VOID
147Ext2PutGroup(IN PEXT2_VCB Vcb)
148{
149 struct ext4_sb_info *sbi = &Vcb->sbi;
150 unsigned long i;
151
152
153 if (NULL == Vcb->sbi.s_gd) {
154 return;
155 }
156
157 Ext2DropGroupBH(Vcb);
158
159 kfree(Vcb->sbi.s_gd);
160 Vcb->sbi.s_gd = NULL;
161
162 ClearFlag(Vcb->Flags, VCB_GD_LOADED);
163}
164
165
166BOOLEAN

Callers 2

Ext2InitializeVcbFunction · 0.85
Ext2LoadGroupFunction · 0.85

Calls 1

Ext2DropGroupBHFunction · 0.85

Tested by

no test coverage detected