|
@@ -10178,7 +10178,7 @@ void ipa3_counter_remove_hdl(int hdl)
|
|
|
offset = counter->hw_counter.start_id - 1;
|
|
|
if (offset >= 0 && (offset + counter->hw_counter.num_counters)
|
|
|
< IPA_FLT_RT_HW_COUNTER) {
|
|
|
- memset(&ipa3_ctx->flt_rt_counters.used_hw + offset,
|
|
|
+ memset(&ipa3_ctx->flt_rt_counters.used_hw[offset],
|
|
|
0, counter->hw_counter.num_counters * sizeof(bool));
|
|
|
} else {
|
|
|
IPAERR_RL("unexpected hdl %d\n", hdl);
|
|
@@ -10187,7 +10187,7 @@ void ipa3_counter_remove_hdl(int hdl)
|
|
|
offset = counter->sw_counter.start_id - 1 - IPA_FLT_RT_HW_COUNTER;
|
|
|
if (offset >= 0 && (offset + counter->sw_counter.num_counters)
|
|
|
< IPA_FLT_RT_SW_COUNTER) {
|
|
|
- memset(&ipa3_ctx->flt_rt_counters.used_sw + offset,
|
|
|
+ memset(&ipa3_ctx->flt_rt_counters.used_sw[offset],
|
|
|
0, counter->sw_counter.num_counters * sizeof(bool));
|
|
|
} else {
|
|
|
IPAERR_RL("unexpected hdl %d\n", hdl);
|