Lorenzo Bianconi <lorenzo@xxxxxxxxxx> writes: > Introduce GRO support to cpumap codebase moving the cpu_map_entry > kthread to a NAPI-kthread pinned on the selected cpu. > > Signed-off-by: Lorenzo Bianconi <lorenzo@xxxxxxxxxx> Pretty neat with such a straight-forward conversion. Just one nit: [...] > + rcu_read_lock(); [...] > + rcu_read_unlock(); napi_threaded_poll_loop() already does local_bh_disable/enable() around the polling function, so these are redundant :) -Toke