Lines Matching refs:cpu_stats
676 struct nh_grp_entry_stats *cpu_stats; in nh_grp_entry_stats_inc() local
678 cpu_stats = get_cpu_ptr(nhge->stats); in nh_grp_entry_stats_inc()
679 u64_stats_update_begin(&cpu_stats->syncp); in nh_grp_entry_stats_inc()
680 u64_stats_inc(&cpu_stats->packets); in nh_grp_entry_stats_inc()
681 u64_stats_update_end(&cpu_stats->syncp); in nh_grp_entry_stats_inc()
682 put_cpu_ptr(cpu_stats); in nh_grp_entry_stats_inc()
693 struct nh_grp_entry_stats *cpu_stats; in nh_grp_entry_stats_read() local
697 cpu_stats = per_cpu_ptr(nhge->stats, i); in nh_grp_entry_stats_read()
699 start = u64_stats_fetch_begin(&cpu_stats->syncp); in nh_grp_entry_stats_read()
700 packets = u64_stats_read(&cpu_stats->packets); in nh_grp_entry_stats_read()
701 } while (u64_stats_fetch_retry(&cpu_stats->syncp, start)); in nh_grp_entry_stats_read()