Hello,
I have enabled CAAM in my kernel module now. Now the problem I am encountering is :
Q1)
(Last lines of the output dmesg | grep -i caam )
Device caam-keygen registered
caam_jr 17300000.jr : failed to flush job ring 2.
probe of 17300000.jr failed with error -5.
Q2)
for af-xdp the traffic coming on port eno1 is handled like this
sudo ethtool -L eno1 combined 2
# Add a flow rule to direct TCP traffic destined for port 443 to RX queue 1
sudo ethtool -N eno1 flow-type tcp4 dst-port 443 action 1
./dpdk_app ... --vdev="net_af_xdp0,iface=eno1,start_queue=1,queue_count=1" ...
nb_rx = rte_eth_rx_burst(portid, 0, pkts_burst, MAX_PKT_BURST);
Here I am giving that specific portid on which data is coming.
Please calrify the queries.