Lines Matching refs:p
168 struct ethtool_regs *regs, void *p) in igc_ethtool_get_regs() argument
172 u32 *regs_buff = p; in igc_ethtool_get_regs()
175 memset(p, 0, IGC_REGS_LEN * sizeof(u32)); in igc_ethtool_get_regs()
766 u8 *p = data; in igc_ethtool_get_strings() local
776 ethtool_sprintf(&p, igc_gstrings_stats[i].stat_string); in igc_ethtool_get_strings()
778 ethtool_sprintf(&p, in igc_ethtool_get_strings()
781 ethtool_sprintf(&p, "tx_queue_%u_packets", i); in igc_ethtool_get_strings()
782 ethtool_sprintf(&p, "tx_queue_%u_bytes", i); in igc_ethtool_get_strings()
783 ethtool_sprintf(&p, "tx_queue_%u_restart", i); in igc_ethtool_get_strings()
786 ethtool_sprintf(&p, "rx_queue_%u_packets", i); in igc_ethtool_get_strings()
787 ethtool_sprintf(&p, "rx_queue_%u_bytes", i); in igc_ethtool_get_strings()
788 ethtool_sprintf(&p, "rx_queue_%u_drops", i); in igc_ethtool_get_strings()
789 ethtool_sprintf(&p, "rx_queue_%u_csum_err", i); in igc_ethtool_get_strings()
790 ethtool_sprintf(&p, "rx_queue_%u_alloc_failed", i); in igc_ethtool_get_strings()
823 char *p; in igc_ethtool_get_stats() local
829 p = (char *)adapter + igc_gstrings_stats[i].stat_offset; in igc_ethtool_get_stats()
831 sizeof(u64)) ? *(u64 *)p : *(u32 *)p; in igc_ethtool_get_stats()
834 p = (char *)net_stats + igc_gstrings_net_stats[j].stat_offset; in igc_ethtool_get_stats()
836 sizeof(u64)) ? *(u64 *)p : *(u32 *)p; in igc_ethtool_get_stats()