Home > OS >  [centos&dpdk] centos7 Jane RH_KABI_RENAME influenced DPDK compiled version of the source code
[centos&dpdk] centos7 Jane RH_KABI_RENAME influenced DPDK compiled version of the source code

Time:11-20

Have changed the many variables of the net_device_ops are RH_KABI_RENAME name

For example,
Ndo_change_mtu RH_KABI_RENAME (int (*),
Int (* ndo_change_mtu_rh74)) (struct net_device * dev,
Int new_mtu);

Cause DPDK cheap, can't find the symbols

See RH_KABI_RENAME macro definition, it is differentiated by another macro __GENKSYMS__

The __GENKSYMS__ not found in the system definition of unknown,

Under the Linux native 3.1, didn't see RH_KABI_RENAME,

At present are manually modify the code DPDK changed,

What role __GENKSYMS__ and RH_KABI_RENAME?

CodePudding user response:

Need to play on the patch
  • Related