Lines Matching refs:proto_param
670 struct ifnet_attach_proto_param proto_param; in ndrv_setspec() local
731 bzero(&proto_param, sizeof(proto_param)); in ndrv_setspec()
732 proto_param.demux_count = ndrvSpec.demux_count; in ndrv_setspec()
735 ndrvDemuxSize = proto_param.demux_count * sizeof(struct ndrv_demux_desc); in ndrv_setspec()
742 MALLOC(proto_param.demux_array, struct ifnet_demux_desc*, in ndrv_setspec()
743 sizeof(*proto_param.demux_array) * ndrvSpec.demux_count, in ndrv_setspec()
745 if (proto_param.demux_array == NULL) { in ndrv_setspec()
760 proto_param.demux_count = ndrvSpec.demux_count; in ndrv_setspec()
761 proto_param.input = ndrv_input; in ndrv_setspec()
762 proto_param.event = ndrv_event; in ndrv_setspec()
767 &proto_param.demux_array[demuxOn]); in ndrv_setspec()
778 &proto_param); in ndrv_setspec()
786 if (proto_param.demux_array) { in ndrv_setspec()
787 FREE(proto_param.demux_array, M_TEMP); in ndrv_setspec()