Home
last modified time | relevance | path

Searched refs:l2_node (Results 1 – 3 of 3) sorted by relevance

/Linux-v5.10/arch/arm/mach-qcom/
Dplatsmp.c160 struct device_node *cpu_node, *l2_node, *acc_node, *saw_node; in kpssv2_release_secondary() local
175 l2_node = of_parse_phandle(cpu_node, "next-level-cache", 0); in kpssv2_release_secondary()
176 if (!l2_node) { in kpssv2_release_secondary()
181 saw_node = of_parse_phandle(l2_node, "qcom,saw", 0); in kpssv2_release_secondary()
248 of_node_put(l2_node); in kpssv2_release_secondary()
/Linux-v5.10/drivers/net/ethernet/broadcom/bnxt/
Dbnxt_tc.c940 struct bnxt_tc_l2_node *l2_node = flow_node->l2_node; in bnxt_tc_put_l2_node() local
946 if (--l2_node->refcount == 0) { in bnxt_tc_put_l2_node()
947 rc = rhashtable_remove_fast(&tc_info->l2_table, &l2_node->node, in bnxt_tc_put_l2_node()
953 kfree_rcu(l2_node, rcu); in bnxt_tc_put_l2_node()
963 struct bnxt_tc_l2_node *l2_node; in bnxt_tc_get_l2_node() local
966 l2_node = rhashtable_lookup_fast(l2_table, l2_key, ht_params); in bnxt_tc_get_l2_node()
967 if (!l2_node) { in bnxt_tc_get_l2_node()
968 l2_node = kzalloc(sizeof(*l2_node), GFP_KERNEL); in bnxt_tc_get_l2_node()
969 if (!l2_node) { in bnxt_tc_get_l2_node()
974 l2_node->key = *l2_key; in bnxt_tc_get_l2_node()
[all …]
Dbnxt_tc.h201 struct bnxt_tc_l2_node *l2_node; member