|
@@ -1741,7 +1741,8 @@ int __ipa3_del_rt_rule(u32 rule_hdl)
|
|
|
return -EINVAL;
|
|
|
}
|
|
|
|
|
|
- if (!strcmp(entry->tbl->name, IPA_DFLT_RT_TBL_NAME)) {
|
|
|
+ if (!ipa3_check_idr_if_freed(entry) &&
|
|
|
+ !strcmp(entry->tbl->name, IPA_DFLT_RT_TBL_NAME)) {
|
|
|
IPADBG("Deleting rule from default rt table idx=%u\n",
|
|
|
entry->tbl->idx);
|
|
|
if (entry->tbl->rule_cnt == 1) {
|
|
@@ -1971,7 +1972,8 @@ int ipa3_reset_rt(enum ipa_ip_type ip, bool user_only)
|
|
|
}
|
|
|
}
|
|
|
tbl->rule_cnt--;
|
|
|
- if (rule->hdr)
|
|
|
+ if (rule->hdr &&
|
|
|
+ (!ipa3_check_idr_if_freed(rule->hdr)))
|
|
|
__ipa3_release_hdr(rule->hdr->id);
|
|
|
else if (rule->proc_ctx &&
|
|
|
(!ipa3_check_idr_if_freed(
|
|
@@ -2174,7 +2176,8 @@ static int __ipa_mdfy_rt_rule(struct ipa_rt_rule_mdfy_i *rtrule)
|
|
|
goto error;
|
|
|
}
|
|
|
|
|
|
- if (!strcmp(entry->tbl->name, IPA_DFLT_RT_TBL_NAME)) {
|
|
|
+ if (!ipa3_check_idr_if_freed(entry) &&
|
|
|
+ !strcmp(entry->tbl->name, IPA_DFLT_RT_TBL_NAME)) {
|
|
|
IPAERR_RL("Default tbl rule cannot be modified\n");
|
|
|
return -EINVAL;
|
|
|
}
|