Hello ntop-developers,

When I tried to compile the latest trunk version of PF_RING for kernel
3.7, I got the error that "VM_RESERVED" is not defined. It seems like
this flag was removed in kernel 3.7 and should be replaced by
"(VM_DONTEXPAND | VM_DONTDUMP)". (taken from
https://www.virtualbox.org/pipermail/vbox-dev/2012-October/005392.html)

Inserting the following lines into "PF_RING/kernel/pf_ring.c" worked for me:

#ifndef VM_RESERVED
# define VM_RESERVED (VM_DONTEXPAND | VM_DONTDUMP)
#endif


Furthermore, the DNA driver ixgbe-3.10.16-DNA (which is included in the
PF_RING sources) did not compile against kernel 3.7. The latest Intel
driver (ixgbe-3.14.5) compiles, so the best solution would be to apply
the DNA patches to the latest Intel driver. Are there any plans to
provide a newer version of the patched ixgbe driver?

Florian

-- 
Florian Wohlfart, M.Sc.
Technische Universität München
Department of Computer Science
Network Architectures and Services
_______________________________________________
Ntop-dev mailing list
[email protected]
http://listgateway.unipi.it/mailman/listinfo/ntop-dev

Reply via email to