Hello, I used the ip_pipeline program of 18.11 dpdk and made it flow 1GB/s. I found that the 0-core CPU occupies very high (usleep has been added in the for loop of the ip_pipeline main function, which should not occupy very high CPU).Use perf to view and find that it is occupied in dw_readl. perf situation:     -   61.60%    61.60%  [kernel]             [k] dw_readl                                             + 5.89% ret_from_fork                                                                           1.57% ordered_events__flush                                                                   + 1.25% 0xe1                                                                                    + 1.13% x86_64_start_kernel                                                                          1.02%     hist_entry_iter__add                                                                    + 1.02% 0xd1                                                                                 +   22.14%     0.00%  [kernel]             [k] __irqentry_text_start                            +   22.11%     0.00%  [kernel]             [k] handle_irq                                       +   22.08%     0.01%  [kernel]             [k] handle_irq_event_percpu                          +   19.31%     0.00%  [unknown]            [k] 0xffffffff8168dd6d                               +   19.30%     0.00%  [unknown]            [k] 0xffffffff81698bef                               +   19.28%     0.00%  [unknown]            [k] 0xffffffff8102d26     +   19.28%     0.00%  [unknown]            [k] 0xffffffff811337d     +   19.27%     0.00%  [unknown]            [k] 0xffffffff8113033     +   19.25%     0.00%  [unknown]            [k] 0xffffffff8113015     +   17.14%     0.02%  [kernel]             [k] i2c_dw_isr           +   14.50%     0.00%  [unknown]            [k] 0xffffffffa04f406 This is my hardware information:     CPU model : Intel(R) Core(TM) i7-6700 CPU @ 3.40GHz     Network card model and version : i40e 1.5.10-k, two card     Network card firmware : 6.01 0x8000372b 0.0.0     lscpi view network card information:         03:00.0 Ethernet controller: Intel Corporation Ethernet Controller X710 for 10GbE SFP+ (rev 02)         03:00.1 Ethernet controller: Intel Corporation Ethernet Controller X710 for 10GbE SFP+ (rev 02)     Network card driver use: vfio-pci Modified ip_pipeline main function :         /* Script */         if (app.script_name)             cli_script_process(app.script_name,                 app.conn.msg_in_len_max,                 app.conn.msg_out_len_max);         #include