eal/bsd: fix build
authorBruce Richardson <bruce.richardson@intel.com>
Wed, 4 Nov 2015 17:05:57 +0000 (17:05 +0000)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Wed, 4 Nov 2015 17:24:07 +0000 (18:24 +0100)
commit620b794e38295fcc1a24ae1139334bffd51f79d6
treee72a9d6070ade23b25b7ad18fba5a35ee6dc8460
parent256ff05a9cae7484e2197cde4401dfa1f21d5a6f
eal/bsd: fix build

The i40e driver was using a #define value for the max number of rxtx interrupts
supported. This value was defined only for linux, giving an error when compiling
on FreeBSD.

  CC i40e_ethdev.o
/usr/home/bruce/dpdk.org/drivers/net/i40e/i40e_ethdev.c:3885:9: fatal error: use of undeclared
        identifier 'RTE_MAX_RXTX_INTR_VEC_ID'

Copying the necessary #define into the FreeBSD EAL header fixes the compile
error.

Fixes: d37641029ada ("eal/linux: add interrupt vectors")

Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
lib/librte_eal/bsdapp/eal/include/exec-env/rte_interrupts.h