Hello Eric, Thanks for the quick fix. > > v2: use latest and shiny raw_cpu_ptr(), as it seems the latest > > incantation of ever changing percpu interface. > > > > net/ipv4/ip_tunnel.c | 4 ++-- > > 1 file changed, 2 insertions(+), 2 deletions(-) > > The below grep shows 3 uses of this_cpu_ptr, whereas the patch only replaces 2 instances. Just want to check if that is ok. grep --ignore-case --exclude-dir=".git" --recursive this_cpu_ptr ip_tunnel.c __tunnel_dst_set(this_cpu_ptr(t->dst_cache), dst, saddr); idst = this_cpu_ptr(t->dst_cache); tstats = this_cpu_ptr(tunnel->dev->tstats); Thanks Joe