| 126 | } |
| 127 | |
| 128 | VOID |
| 129 | Ext2DropGroupBH(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 | |
| 146 | VOID |
| 147 | Ext2PutGroup(IN PEXT2_VCB Vcb) |
no test coverage detected