]> git.baikalelectronics.ru Git - kernel.git/commit
net: ipa: initialize all filter table slots
authorAlex Elder <elder@linaro.org>
Tue, 7 Sep 2021 17:05:54 +0000 (12:05 -0500)
committerDavid S. Miller <davem@davemloft.net>
Wed, 8 Sep 2021 11:10:33 +0000 (12:10 +0100)
commitdb0f1ab5d4f9e4d090f0bfb0b95d81403301363f
tree8dab0114736bc8ef94e8d499c80e0e8d4faa36d0
parenta36168247dee36c15aab972ccd90536d219e262d
net: ipa: initialize all filter table slots

There is an off-by-one problem in ipa_table_init_add(), when
initializing filter tables.

In that function, the number of filter table entries is determined
based on the number of set bits in the filter map.  However that
count does *not* include the extra "slot" in the filter table that
holds the filter map itself.  Meanwhile, ipa_table_addr() *does*
include the filter map in the memory it returns, but because the
count it's provided doesn't include it, it includes one too few
table entries.

Fix this by including the extra slot for the filter map in the count
computed in ipa_table_init_add().

Note: ipa_filter_reset_table() does not have this problem; it resets
filter table entries one by one, but does not overwrite the filter
bitmap.

Fixes: 8ad6bc32edb4 ("soc: qcom: ipa: filter and routing tables")
Signed-off-by: Alex Elder <elder@linaro.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ipa/ipa_table.c