Home | History | Annotate | Download | only in ic

Lines Matching defs:bw

176 		struct aac_blockwrite *bw;
182 bw = (struct aac_blockwrite *)&fib->data[0];
183 bw->Command = htole32(VM_CtBlockWrite);
184 bw->ContainerId = htole32(sc->sc_hwunit);
185 bw->BlockNumber = htole32(blkno);
186 bw->ByteCount = htole32(datasize);
187 bw->Stable = htole32(CUNSTABLE);
191 sgt = &bw->SgMap;
221 struct aac_blockwrite64 *bw;
227 bw = (struct aac_blockwrite64 *)&fib->data[0];
228 bw->Command = htole32(VM_CtHostWrite64);
229 bw->BlockNumber = htole32(blkno);
230 bw->ContainerId = htole16(sc->sc_hwunit);
231 bw->SectorCount = htole16(datasize / AAC_BLOCK_SIZE);
232 bw->Pad = 0;
233 bw->Flags = 0;
236 sgt = &bw->SgMap64;