need to make intr_bind call architecture specific for

global builds (failing sun4v lint build)
This commit is contained in:
Jack F Vogel 2009-06-24 22:16:02 +00:00
parent ac2a008e69
commit 84720033f0
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=194925

View File

@ -2189,7 +2189,7 @@ igb_allocate_msix(struct adapter *adapter)
txr->eims = E1000_EICR_TX_QUEUE0 << i;
else
txr->eims = 1 << vector;
#if __FreeBSD_version >= 800000
#if defined(__i386__) || defined(__amd64__)
/*
** Bind the msix vector, and thus the
** ring to the corresponding cpu.
@ -2226,7 +2226,7 @@ igb_allocate_msix(struct adapter *adapter)
rxr->eims = 1 << vector;
/* Get a mask for local timer */
adapter->rx_mask |= rxr->eims;
#if __FreeBSD_version >= 800000
#if defined(__i386__) || defined(__amd64__)
/*
** Bind the msix vector, and thus the
** ring to the corresponding cpu.