View | Details | Raw Unified | Return to bug 235730
Collapse All | Expand All

(-)b/sys/dev/ixl/if_ixl.c (-1 / +1 lines)
Lines 932-938 ixl_if_msix_intr_assign(if_ctx_t ctx, int msix) Link Here
932
		return (err);
932
		return (err);
933
	}
933
	}
934
	/* Create soft IRQ for handling VFLRs */
934
	/* Create soft IRQ for handling VFLRs */
935
	iflib_softirq_alloc_generic(ctx, &pf->iov_irq, IFLIB_INTR_IOV, pf, 0, "iov");
935
	iflib_softirq_alloc_generic(ctx, NULL, IFLIB_INTR_IOV, pf, 0, "iov");
936
936
937
	/* Now set up the stations */
937
	/* Now set up the stations */
938
	for (i = 0, vector = 1; i < vsi->shared->isc_nrxqsets; i++, vector++, rx_que++) {
938
	for (i = 0, vector = 1; i < vsi->shared->isc_nrxqsets; i++, vector++, rx_que++) {
(-)b/sys/dev/ixl/ixl_pf.h (-1 lines)
Lines 138-144 struct ixl_pf { Link Here
138
	struct ixl_vf		*vfs;
138
	struct ixl_vf		*vfs;
139
	int			num_vfs;
139
	int			num_vfs;
140
	uint16_t		veb_seid;
140
	uint16_t		veb_seid;
141
	struct if_irq		iov_irq;
142
};
141
};
143
142
144
/*
143
/*

Return to bug 235730