Lines Matching refs:reply_buf
5043 rib_lrc_entry_t *reply_buf;
5095 reply_buf = rcas->r.forw;
5096 remque(reply_buf);
5122 /* Allocate a reply_buf entry */
5123 reply_buf = (rib_lrc_entry_t *)
5125 bzero(reply_buf, sizeof (rib_lrc_entry_t));
5126 reply_buf->lrc_buf = kmem_alloc(len, KM_SLEEP);
5127 reply_buf->lrc_len = len;
5128 reply_buf->registered = FALSE;
5129 reply_buf->avl_node = (void *)rcas;
5132 return (reply_buf);
5135 reply_buf = (rib_lrc_entry_t *)
5137 bzero(reply_buf, sizeof (rib_lrc_entry_t));
5138 reply_buf->lrc_buf = kmem_alloc(len, KM_SLEEP);
5139 reply_buf->lrc_len = len;
5140 reply_buf->registered = FALSE;
5141 reply_buf->avl_node = NULL;
5143 return (reply_buf);