Searched refs:newbp (Results 1 – 5 of 5) sorted by relevance
/titanic_50/usr/src/uts/common/fs/ufs/ |
H A D | lufs_log.c | 299 buf_t *newbp; in push_dirty_bp() local 325 if ((newbp = cb->cb_free) != NULL) { in push_dirty_bp() 326 cb->cb_free = newbp->b_forw; in push_dirty_bp() 328 newbp = kmem_zalloc(sizeof (buf_t), KM_SLEEP); in push_dirty_bp() 329 sema_init(&newbp->b_sem, 1, NULL, SEMA_DEFAULT, NULL); in push_dirty_bp() 330 sema_init(&newbp->b_io, 0, NULL, SEMA_DEFAULT, NULL); in push_dirty_bp() 332 newbp->b_flags = 0; in push_dirty_bp() 333 newbp->b_bcount = 0; in push_dirty_bp() 334 newbp->b_file = NULL; in push_dirty_bp() 335 newbp->b_offset = -1; in push_dirty_bp() [all …]
|
/titanic_50/usr/src/cmd/fs.d/ufs/fsck/ |
H A D | utilities.c | 1811 struct bufarea *newbp; in alloc_bufarea() local 1818 newbp = (struct bufarea *)malloc(sizeof (struct bufarea)); in alloc_bufarea() 1819 if (newbp == NULL) { in alloc_bufarea() 1824 initbarea(newbp); in alloc_bufarea() 1825 newbp->b_un.b_buf = bufp; in alloc_bufarea() 1826 newbp->b_prev = &bufhead; in alloc_bufarea() 1827 newbp->b_next = bufhead.b_next; in alloc_bufarea() 1828 bufhead.b_next->b_prev = newbp; in alloc_bufarea() 1829 bufhead.b_next = newbp; in alloc_bufarea() 1831 return (newbp); in alloc_bufarea()
|
/titanic_50/usr/src/uts/common/io/ |
H A D | cryptmod.c | 3640 mblk_t *newbp; in decrypt_rcmd_mblks() local 3649 newbp = do_decrypt(q, bp); in decrypt_rcmd_mblks() 3650 if (newbp != NULL) { in decrypt_rcmd_mblks() 3651 bp = newbp; in decrypt_rcmd_mblks()
|
H A D | ldterm.c | 2923 mblk_t *newbp; in ldterm_outchar() local 2925 if ((newbp = allocb(bsize, BPRI_HI)) == NULL) { in ldterm_outchar() 2930 curbp->b_cont = newbp; in ldterm_outchar() 2931 curbp = newbp; in ldterm_outchar()
|
/titanic_50/usr/src/uts/common/os/ |
H A D | strsubr.c | 2935 mblk_t *newbp; in strmakedata() local 2937 newbp = (stp->sd_wputdatafunc)(stp->sd_vnode, in strmakedata() 2939 if (newbp == NULL) { in strmakedata() 2944 bp = newbp; in strmakedata()
|