Merge tag 'LA.UM.9.14.r1-21200-LAHAINA.QSSI13.0' into staging/lineage-20.0_merge-LA.UM.9.14.r1-21200-LAHAINA.QSSI13.0

"LA.UM.9.14.r1-21200-LAHAINA.QSSI13.0"

# By Ashok Vuyyuru
# Via Ashok Vuyyuru (1) and Linux Build Service Account (1)
* tag 'LA.UM.9.14.r1-21200-LAHAINA.QSSI13.0':
  ipacm: Adding changes to MAC based filter/routing rules to use non-hash

Change-Id: I4ad89b5272e6939a9b44b26f05bcd16a8c96012b
diff --git a/ipacm/src/IPACM_Lan.cpp b/ipacm/src/IPACM_Lan.cpp
index 9bcbac4..8be7ef3 100644
--- a/ipacm/src/IPACM_Lan.cpp
+++ b/ipacm/src/IPACM_Lan.cpp
@@ -1,6 +1,8 @@
 /*
 Copyright (c) 2013-2020, The Linux Foundation. All rights reserved.
 
+Copyright (c) 2023 Qualcomm Innovation Center, Inc. All rights reserved
+
 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions are
 met:
@@ -5320,7 +5322,7 @@
 			rt_rule_entry->rule.hdr_hdl = 0;
 			rt_rule_entry->rule.hdr_proc_ctx_hdl = hdr_proc_ctx_hdl;
 			if (IPACM_Iface::ipacmcfg->isIPAv3Supported())
-				rt_rule_entry->rule.hashable = true;
+				rt_rule_entry->rule.hashable = false;
 			memcpy(&rt_rule_entry->rule.attrib, &tx_prop->tx[index].attrib,
 					sizeof(rt_rule_entry->rule.attrib));
 			if(peer_l2_hdr_type == IPA_HDR_L2_ETHERNET_II)
@@ -5401,7 +5403,7 @@
 		flt_rule_entry.rule.action = IPA_PASS_TO_ROUTING;
 		flt_rule_entry.rule.eq_attrib_type = 0;
 		flt_rule_entry.rule.rt_tbl_hdl = rt_tbl_hdl;
-		flt_rule_entry.rule.hashable = true;
+		flt_rule_entry.rule.hashable = false;
 
 		memcpy(&flt_rule_entry.rule.attrib, &rx_prop->rx[0].attrib, sizeof(flt_rule_entry.rule.attrib));
 		if(tx_prop->tx[0].hdr_l2_type == IPA_HDR_L2_ETHERNET_II)