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

Function Ext2DropGroupBH

Ext4Fsd/ext3/generic.c:128–144  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

126}
127
128VOID
129Ext2DropGroupBH(IN PEXT2_VCB Vcb)
130{
131 struct ext4_sb_info *sbi = &Vcb->sbi;
132 unsigned long i;
133
134 if (NULL == Vcb->sbi.s_gd) {
135 return;
136 }
137
138 for (i = 0; i < Vcb->sbi.s_gdb_count; i++) {
139 if (Vcb->sbi.s_gd[i].bh) {
140 fini_bh(&sbi->s_gd[i].bh);
141 Vcb->sbi.s_gd[i].bh = NULL;
142 }
143 }
144}
145
146VOID
147Ext2PutGroup(IN PEXT2_VCB Vcb)

Callers 2

Ext2PutGroupFunction · 0.85
Ext2DropBHFunction · 0.85

Calls 1

fini_bhFunction · 0.85

Tested by

no test coverage detected