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