You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, folks!
I trying to use netmap but can't build it on my system.
Build netmap on Debian 7 Wheezy with ixgbe 10GE NIC (82599):
Get kernel sources:
cd /usr/src
apt-get source linux-image-3.2.0-4-amd64
cd /usr/src/linux-3.2.65
cd /usr/src
git clone https://code.google.com/p/netmap/
cd netmap/LINUX/
./configure --kernel-sources=/usr/src/linux-3.2.65 --drivers=ixgbe
make
make install
Load modules:
insmod ./netmap.ko
insmod ixgbe/ixgbe.ko
And we got error in dmesg:
[ 903.973212] ixgbe: Unknown symbol mdio_mii_ioctl (err 0)
[ 903.973564] ixgbe: Unknown symbol mdio45_probe (err 0)
Could you help me?
Original issue reported on code.google.com by pavel.odintsov on 2 Mar 2015 at 3:37
The text was updated successfully, but these errors were encountered:
It is not a build problem: the ixgbe module depends on other modules, which you
can find with 'modinfo ixgbe/ixgbe.ko | grep ^depends:'. Since we are using
insmod, we need to load the dependencies by ourselves:
modprobe mdio
modprobe ptp
modprobe dca
insmod ./netmap.ko
insmod ./ixgbe/ixgbe.ko
Original comment by giuseppe.lettieri73 on 2 Mar 2015 at 4:58
Original issue reported on code.google.com by
pavel.odintsov
on 2 Mar 2015 at 3:37The text was updated successfully, but these errors were encountered: