Skip to content

Commit

Permalink
net: microchip: sparx5: reduce stack usage
Browse files Browse the repository at this point in the history
The vcap_admin structures in vcap_api_next_lookup_advanced_test()
take several hundred bytes of stack frame, but when CONFIG_KASAN_STACK
is enabled, each one of them also has extra padding before and after
it, which ends up blowing the warning limit:

In file included from drivers/net/ethernet/microchip/vcap/vcap_api.c:3521:
drivers/net/ethernet/microchip/vcap/vcap_api_kunit.c: In function 'vcap_api_next_lookup_advanced_test':
drivers/net/ethernet/microchip/vcap/vcap_api_kunit.c:1954:1: error: the frame size of 1448 bytes is larger than 1400 bytes [-Werror=frame-larger-than=]
 1954 | }

Reduce the total stack usage by replacing the five structures with
an array that only needs one pair of padding areas.

Fixes: 1f741f0 ("net: microchip: sparx5: Add KUNIT tests for enabling/disabling chains")
Signed-off-by: Arnd Bergmann <[email protected]>
Reviewed-by: Alexander Lobakin <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
  • Loading branch information
arndb authored and davem330 committed Feb 20, 2023
1 parent a59f832 commit 129ff4d
Showing 1 changed file with 12 additions and 14 deletions.
26 changes: 12 additions & 14 deletions drivers/net/ethernet/microchip/vcap/vcap_api_kunit.c
Original file line number Diff line number Diff line change
Expand Up @@ -1876,53 +1876,51 @@ static void vcap_api_next_lookup_basic_test(struct kunit *test)

static void vcap_api_next_lookup_advanced_test(struct kunit *test)
{
struct vcap_admin admin1 = {
struct vcap_admin admin[] = {
{
.vtype = VCAP_TYPE_IS0,
.vinst = 0,
.first_cid = 1000000,
.last_cid = 1199999,
.lookups = 6,
.lookups_per_instance = 2,
};
struct vcap_admin admin2 = {
}, {
.vtype = VCAP_TYPE_IS0,
.vinst = 1,
.first_cid = 1200000,
.last_cid = 1399999,
.lookups = 6,
.lookups_per_instance = 2,
};
struct vcap_admin admin3 = {
}, {
.vtype = VCAP_TYPE_IS0,
.vinst = 2,
.first_cid = 1400000,
.last_cid = 1599999,
.lookups = 6,
.lookups_per_instance = 2,
};
struct vcap_admin admin4 = {
}, {
.vtype = VCAP_TYPE_IS2,
.vinst = 0,
.first_cid = 8000000,
.last_cid = 8199999,
.lookups = 4,
.lookups_per_instance = 2,
};
struct vcap_admin admin5 = {
}, {
.vtype = VCAP_TYPE_IS2,
.vinst = 1,
.first_cid = 8200000,
.last_cid = 8399999,
.lookups = 4,
.lookups_per_instance = 2,
}
};
bool ret;

vcap_test_api_init(&admin1);
list_add_tail(&admin2.list, &test_vctrl.list);
list_add_tail(&admin3.list, &test_vctrl.list);
list_add_tail(&admin4.list, &test_vctrl.list);
list_add_tail(&admin5.list, &test_vctrl.list);
vcap_test_api_init(&admin[0]);
list_add_tail(&admin[1].list, &test_vctrl.list);
list_add_tail(&admin[2].list, &test_vctrl.list);
list_add_tail(&admin[3].list, &test_vctrl.list);
list_add_tail(&admin[4].list, &test_vctrl.list);

ret = vcap_is_next_lookup(&test_vctrl, 1000000, 1001000);
KUNIT_EXPECT_EQ(test, false, ret);
Expand Down

0 comments on commit 129ff4d

Please sign in to comment.