Merge branch 'refactor-duplicate-codes-in-the-tc-cls-walk-function'
authorJakub Kicinski <kuba@kernel.org>
Tue, 20 Sep 2022 22:54:46 +0000 (15:54 -0700)
committerJakub Kicinski <kuba@kernel.org>
Tue, 20 Sep 2022 22:54:46 +0000 (15:54 -0700)
commitadae216f4ebc037e20b4868deaa62fb6a5c2299f
tree5b3df0821033d7821beeade25e025b1add5f4b4b
parente93a766da57fff3273bcb618edf5dfca1fb86b89
parent972e886112402b73f062f82d885928387dee4cff
Merge branch 'refactor-duplicate-codes-in-the-tc-cls-walk-function'

Zhengchao Shao says:

====================
refactor duplicate codes in the tc cls walk function

The walk implementation of most tc cls modules is basically the same.
That is, the values of count and skip are checked first. If count is
greater than or equal to skip, the registered fn function is executed.
Otherwise, increase the value of count. So the code can be refactored.
Then use helper function to replace the code of each cls module in
alphabetical order.

The walk function is invoked during dump. Therefore, test cases related
 to the tdc filter need to be added.
====================

Link: https://lore.kernel.org/r/20220916020251.190097-1-shaozhengchao@huawei.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>