HomeSort by: relevance | last modified time | path
    Searched defs:ibp (Results 1 - 11 of 11) sorted by relevancy

  /src/sys/ufs/lfs/
lfs_itimes.c 77 struct buf *ibp; local in function:lfs_itimes
80 LFS_IENTRY(ifp, fs, ip->i_number, ibp);
83 LFS_BWRITE_LOG(ibp);
lfs_balloc.c 125 struct buf *ibp, *bp; local in function:lfs_balloc
338 ibp = getblk(vp, indirs[i].in_lbn,
347 clrbuf(ibp);
348 ibp->b_blkno = UNWRITTEN;
349 } else if (!(ibp->b_oflags & (BO_DELWRI | BO_DONE))) {
353 ibp->b_blkno = LFS_FSBTODB(fs, idaddr);
354 ibp->b_flags |= B_READ;
355 VOP_STRATEGY(vp, ibp);
356 biowait(ibp);
365 if (lfs_iblock_get(fs, ibp->b_data, indirs[i].in_off) == 0
    [all...]
lfs_rfw.c 396 struct buf *dbp, *ibp; local in function:update_inoblk
427 LFS_IENTRY(ifp, fs, lfs_dino_getinumber(fs, dip), ibp);
429 brelse(ibp, 0);
474 LFS_IENTRY(ifp, fs, lfs_dino_getinumber(fs, dip), ibp);
477 error = LFS_BWRITE_LOG(ibp); /* Ifile */
483 lfs_dtosn(fs, daddr), ibp);
487 ibp);
491 ibp);
496 ibp);
514 struct buf *dbp, *ibp; local in function:update_inogen
    [all...]
lfs.h 1175 struct buf *ibp; /* buffer pointer to inode page */ member in struct:segment
  /src/sys/ufs/ext2fs/
ext2fs_alloc.c 443 char *ibp; local in function:ext2fs_nodealloccg
461 ibp = (char *)bp->b_data;
469 memset(ibp, 0, fs->e2fs_bsize);
475 if (isclr(ibp, ipref))
480 loc = skpc(0xff, len, &ibp[start]);
484 loc = skpc(0xff, len, &ibp[0]);
493 map = ibp[i] ^ 0xff;
500 setbit(ibp, ipref);
566 char *ibp; local in function:ext2fs_vfree
591 ibp = (char *)bp->b_data
    [all...]
  /src/sbin/fsck_lfs/
pass6.c 551 struct ubuf *bp, *ibp, *sbp, *cbp; local in function:pass6
658 lfs_sb_getibsize(fs), 0, &ibp);
659 memcpy(ibbuf, ibp->b_data, lfs_sb_getibsize(fs));
660 brelse(ibp, 0);
lfs.c 1009 struct ubuf *ibp, *bp; local in function:lfs_balloc
1130 ibp = getblk(vp, indirs[i].in_lbn,
1133 memset(ibp->b_data, 0, ibp->b_bufsize);
1134 ibp->b_blkno = UNWRITTEN;
1135 } else if (!(ibp->b_flags & (B_DELWRI | B_DONE))) {
1136 ibp->b_blkno = LFS_FSBTODB(fs, idaddr);
1137 ibp->b_flags |= B_READ;
1138 VOP_STRATEGY(ibp);
1145 if (lfs_iblock_get(fs, ibp->b_data
    [all...]
segwrite.c 244 struct ubuf *bp, *ibp; local in function:lfs_writeinode
259 sp->ibp == NULL) {
268 sp->ibp = *sp->cbpp++ =
271 sp->ibp->b_flags |= B_GATHERED;
278 tmpdip = DINO_IN_BLOCK(fs, sp->ibp->b_data, i);
312 bp = sp->ibp;
332 sp->ibp = NULL;
344 LFS_IENTRY(ifp, fs, ino, ibp);
347 (void)LFS_BWRITE_LOG(ibp); /* Ifile */
685 sp->ibp = NULL
    [all...]
  /src/sys/ufs/ffs/
ffs_snapshot.c 428 struct buf *ibp, *nbp;
498 fs->fs_bsize, l->l_cred, B_METAONLY, &ibp);
501 brelse(ibp, 0);
963 struct buf *bp, *ibp;
1010 fs->fs_bsize, l->l_cred, B_METAONLY, &ibp)) != 0)
1015 bawrite(ibp);
1018 fs->fs_bsize, l->l_cred, B_METAONLY, &ibp)) != 0)
1023 idb_assign(ip, ibp->b_data, indiroff, BLK_NOCOPY);
1024 else if (idb_get(ip, ibp->b_data, indiroff) == BLK_NOCOPY) {
1026 idb_assign(ip, ibp->b_data, indiroff, 0)
1437 struct buf *ibp; local in function:ffs_snapremove
1553 struct buf *ibp; local in function:ffs_snapblkfree
    [all...]
ffs_alloc.c 1268 struct buf *bp, *ibp; local in function:ffs_nodealloccg
1282 ibp = NULL;
1299 if (ibp != NULL &&
1302 brelse(ibp, 0);
1303 ibp = NULL;
1308 if (fs->fs_magic == FS_UFS2_MAGIC && ibp == NULL) {
1323 FFS_NOBLK, fs->fs_bsize, false, &ibp);
1387 if (ibp != NULL) {
1389 memset(ibp->b_data, 0, fs->fs_bsize);
1390 dp2 = (struct ufs2_dinode *)(ibp->b_data)
    [all...]
  /src/sbin/fsck_ffs/
inode.c 884 struct bufarea *ibp; local in function:readblk
919 ibp = getdatablk(iblkno, sblock->fs_bsize);
924 iblkno = iswap64(ibp->b_un.b_indir2[blkno / nblks]);
926 iblkno = iswap32(ibp->b_un.b_indir1[blkno / nblks]);
930 ibp->b_flags &= ~B_INUSE;
931 ibp = getdatablk(iblkno, sblock->fs_bsize);
933 *bp = ibp;
960 struct bufarea *ibp, *bp = NULL; local in function:expandfile
997 if ((ibp = getnewblk(&newblk)) == NULL)
1005 ibp = getdatablk(is_ufs2 ? iswap64(dp->dp2.di_ib[ilevel - 1])
    [all...]

Completed in 112 milliseconds