Skip to content

Commit a63ed92

Browse files
vladimirolteandavem330
authored andcommitted
net: dsa: seville: fix buffer size of the queue system
The VSC9953 Seville switch has 2 megabits of buffer split into 4360 words of 60 bytes each. Signed-off-by: Vladimir Oltean <[email protected]> Reviewed-by: Horatiu Vultur <[email protected]> Reviewed-by: Florian Fainelli <[email protected]> Tested-by: Alexandre Belloni <[email protected]> Reviewed-by: Alexandre Belloni <[email protected]> Signed-off-by: David S. Miller <[email protected]>
1 parent 6565243 commit a63ed92

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/net/dsa/ocelot/seville_vsc9953.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1008,7 +1008,7 @@ static const struct felix_info seville_info_vsc9953 = {
10081008
.vcap_is2_keys = vsc9953_vcap_is2_keys,
10091009
.vcap_is2_actions = vsc9953_vcap_is2_actions,
10101010
.vcap = vsc9953_vcap_props,
1011-
.shared_queue_sz = 128 * 1024,
1011+
.shared_queue_sz = 2048 * 1024,
10121012
.num_mact_rows = 2048,
10131013
.num_ports = 10,
10141014
.mdio_bus_alloc = vsc9953_mdio_bus_alloc,

0 commit comments

Comments
 (0)