msm: ipa: Add additional cleanup in finish rt rule addition

In case of rt rules overflow, clean up the rt entry in rt tables
list and free the rt entry memory.

Change-Id: I3e532d310acc5115e5c31c911544ac5db46106ed
Signed-off-by: Avinash Kumar <quic_avku@quicinc.com>
Šī revīzija ir iekļauta:
Avinash Kumar
2024-05-27 12:39:41 +05:30
revīziju iesūtīja Pavan Kumar M
vecāks 6bbe15d334
revīzija 5fdbbca94f

Parādīt failu

@@ -1,7 +1,7 @@
// SPDX-License-Identifier: GPL-2.0-only
/*
* Copyright (c) 2012-2021, The Linux Foundation. All rights reserved.
* Copyright (c) 2022 Qualcomm Innovation Center, Inc. All rights reserved.
* Copyright (c) 2022-2024 Qualcomm Innovation Center, Inc. All rights reserved.
*/
#include <linux/bitops.h>
@@ -1105,12 +1105,14 @@ error:
static int __ipa_finish_rt_rule_add(struct ipa3_rt_entry *entry, u32 *rule_hdl,
struct ipa3_rt_tbl *tbl)
{
int id;
int id, res = 0;
if (tbl->rule_cnt < IPA_RULE_CNT_MAX)
tbl->rule_cnt++;
else
return -EINVAL;
else {
res = -EINVAL;
goto failed;
}
if (entry->hdr)
entry->hdr->ref_cnt++;
else if (entry->proc_ctx)
@@ -1119,6 +1121,7 @@ static int __ipa_finish_rt_rule_add(struct ipa3_rt_entry *entry, u32 *rule_hdl,
if (id < 0) {
IPAERR_RL("failed to add to tree\n");
WARN_ON_RATELIMIT_IPA(1);
res = -EPERM;
goto ipa_insert_failed;
}
IPADBG("add rt rule tbl_idx=%d rule_cnt=%d rule_id=%d\n",
@@ -1133,10 +1136,11 @@ ipa_insert_failed:
entry->hdr->ref_cnt--;
else if (entry->proc_ctx)
entry->proc_ctx->ref_cnt--;
failed:
idr_remove(tbl->rule_ids, entry->rule_id);
list_del(&entry->link);
kmem_cache_free(ipa3_ctx->rt_rule_cache, entry);
return -EPERM;
return res;
}
static int __ipa_add_rt_rule(enum ipa_ip_type ip, const char *name,