Lines Matching refs:acct
526 struct mtk_foe_accounting *acct; in __mtk_foe_entry_clear() local
528 acct = ppe->acct_table + entry->hash * sizeof(*acct); in __mtk_foe_entry_clear()
529 acct->packets = 0; in __mtk_foe_entry_clear()
530 acct->bytes = 0; in __mtk_foe_entry_clear()
854 struct mtk_foe_accounting *acct; in mtk_foe_entry_get_mib() local
864 acct = ppe->acct_table + index * size; in mtk_foe_entry_get_mib()
866 acct->bytes += bytes; in mtk_foe_entry_get_mib()
867 acct->packets += packets; in mtk_foe_entry_get_mib()
874 return acct; in mtk_foe_entry_get_mib()
881 struct mtk_foe_accounting *acct; in mtk_ppe_init() local
925 acct = devm_kzalloc(dev, MTK_PPE_ENTRIES * sizeof(*acct), in mtk_ppe_init()
928 if (!acct) in mtk_ppe_init()
931 ppe->acct_table = acct; in mtk_ppe_init()