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