Lines Matching refs:rule

821 	struct mlxsw_sp_acl_rule *rule;  in mlxsw_sp_acl_rule_create()  local
825 rule = kzalloc(sizeof(*rule) + ops->rule_priv_size, in mlxsw_sp_acl_rule_create()
827 if (!rule) { in mlxsw_sp_acl_rule_create()
831 rule->cookie = cookie; in mlxsw_sp_acl_rule_create()
832 rule->ruleset = ruleset; in mlxsw_sp_acl_rule_create()
834 rule->rulei = mlxsw_sp_acl_rulei_create(mlxsw_sp->acl, afa_block); in mlxsw_sp_acl_rule_create()
835 if (IS_ERR(rule->rulei)) { in mlxsw_sp_acl_rule_create()
836 err = PTR_ERR(rule->rulei); in mlxsw_sp_acl_rule_create()
840 return rule; in mlxsw_sp_acl_rule_create()
843 kfree(rule); in mlxsw_sp_acl_rule_create()
850 struct mlxsw_sp_acl_rule *rule) in mlxsw_sp_acl_rule_destroy() argument
852 struct mlxsw_sp_acl_ruleset *ruleset = rule->ruleset; in mlxsw_sp_acl_rule_destroy()
854 mlxsw_sp_acl_rulei_destroy(mlxsw_sp, rule->rulei); in mlxsw_sp_acl_rule_destroy()
855 kfree(rule); in mlxsw_sp_acl_rule_destroy()
860 struct mlxsw_sp_acl_rule *rule) in mlxsw_sp_acl_rule_add() argument
862 struct mlxsw_sp_acl_ruleset *ruleset = rule->ruleset; in mlxsw_sp_acl_rule_add()
867 err = ops->rule_add(mlxsw_sp, ruleset->priv, rule->priv, rule->rulei); in mlxsw_sp_acl_rule_add()
871 err = rhashtable_insert_fast(&ruleset->rule_ht, &rule->ht_node, in mlxsw_sp_acl_rule_add()
888 list_add_tail(&rule->list, &mlxsw_sp->acl->rules); in mlxsw_sp_acl_rule_add()
891 block->ingress_blocker_rule_count += rule->rulei->ingress_bind_blocker; in mlxsw_sp_acl_rule_add()
892 block->egress_blocker_rule_count += rule->rulei->egress_bind_blocker; in mlxsw_sp_acl_rule_add()
896 rhashtable_remove_fast(&ruleset->rule_ht, &rule->ht_node, in mlxsw_sp_acl_rule_add()
899 ops->rule_del(mlxsw_sp, rule->priv); in mlxsw_sp_acl_rule_add()
904 struct mlxsw_sp_acl_rule *rule) in mlxsw_sp_acl_rule_del() argument
906 struct mlxsw_sp_acl_ruleset *ruleset = rule->ruleset; in mlxsw_sp_acl_rule_del()
910 block->egress_blocker_rule_count -= rule->rulei->egress_bind_blocker; in mlxsw_sp_acl_rule_del()
911 block->ingress_blocker_rule_count -= rule->rulei->ingress_bind_blocker; in mlxsw_sp_acl_rule_del()
914 list_del(&rule->list); in mlxsw_sp_acl_rule_del()
919 rhashtable_remove_fast(&ruleset->rule_ht, &rule->ht_node, in mlxsw_sp_acl_rule_del()
921 ops->rule_del(mlxsw_sp, rule->priv); in mlxsw_sp_acl_rule_del()
925 struct mlxsw_sp_acl_rule *rule, in mlxsw_sp_acl_rule_action_replace() argument
928 struct mlxsw_sp_acl_ruleset *ruleset = rule->ruleset; in mlxsw_sp_acl_rule_action_replace()
932 rulei = mlxsw_sp_acl_rule_rulei(rule); in mlxsw_sp_acl_rule_action_replace()
935 return ops->rule_action_replace(mlxsw_sp, rule->priv, rule->rulei); in mlxsw_sp_acl_rule_action_replace()
948 mlxsw_sp_acl_rule_rulei(struct mlxsw_sp_acl_rule *rule) in mlxsw_sp_acl_rule_rulei() argument
950 return rule->rulei; in mlxsw_sp_acl_rule_rulei()
954 struct mlxsw_sp_acl_rule *rule) in mlxsw_sp_acl_rule_activity_update() argument
956 struct mlxsw_sp_acl_ruleset *ruleset = rule->ruleset; in mlxsw_sp_acl_rule_activity_update()
961 err = ops->rule_activity_get(mlxsw_sp, rule->priv, &active); in mlxsw_sp_acl_rule_activity_update()
965 rule->last_used = jiffies; in mlxsw_sp_acl_rule_activity_update()
971 struct mlxsw_sp_acl_rule *rule; in mlxsw_sp_acl_rules_activity_update() local
975 list_for_each_entry(rule, &acl->rules, list) { in mlxsw_sp_acl_rules_activity_update()
977 rule); in mlxsw_sp_acl_rules_activity_update()
1011 struct mlxsw_sp_acl_rule *rule, in mlxsw_sp_acl_rule_get_stats() argument
1024 rulei = mlxsw_sp_acl_rule_rulei(rule); in mlxsw_sp_acl_rule_get_stats()
1040 *packets = current_packets - rule->last_packets; in mlxsw_sp_acl_rule_get_stats()
1041 *bytes = current_bytes - rule->last_bytes; in mlxsw_sp_acl_rule_get_stats()
1042 *drops = current_drops - rule->last_drops; in mlxsw_sp_acl_rule_get_stats()
1043 *last_use = rule->last_used; in mlxsw_sp_acl_rule_get_stats()
1045 rule->last_bytes = current_bytes; in mlxsw_sp_acl_rule_get_stats()
1046 rule->last_packets = current_packets; in mlxsw_sp_acl_rule_get_stats()
1047 rule->last_drops = current_drops; in mlxsw_sp_acl_rule_get_stats()