函数 static void rte_prefetch0(const volatile void *p)作用是 Prefetch a cache line into all cache levels.
在 example 中有很多出地方用到,举个例子,在 l3fwd-power 的 937 行开始:
for (j = 0; j < PREFETCH_OFFSET && j < nb_rx; j++) {
rte_prefetch0(rte_pktmbuf_mtod(
pkts_burst[j], void *));
}
/* Prefetch and forward already prefetched packets */
for (j = 0; j < (nb_rx - PREFETCH_OFFSET); j++) {
rte_prefetch0(rte_pktmbuf_mtod(pkts_burst[
j + PREFETCH_OFFSET], void *));
l3fwd_simple_forward(pkts_burst[j], portid,
qconf);
}
/* Forward remaining prefetched packets */
for (; j < nb_rx; j++) {
l3fwd_simple_forward(pkts_burst[j], portid,
qconf);
}
这里预取之后执行 l3fwd_simple_forward ,里面主要做的是解析数据包格式之类的,需要读取保存数据包的 buf_addr ,但前面预取只是一个 cacheline ( 64 字节),对应 mbuf 结构的前半部分,数据包的 buf_addr 根本没有预取啊,那这个 prefetch 还有什么效果?
1
innoink OP 是我自己眼花了,这个问题终结
|