mirror of
https://github.com/torvalds/linux.git
synced 2026-05-26 08:02:27 +02:00
net: microchip: sparx5: Ensure VCAP last_used_addr is set back to default
This ensures that the last_used_addr in a VCAP instance is returned to the default value when all rules have been deleted. Signed-off-by: Steen Hegelund <steen.hegelund@microchip.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
bcddc196d4
commit
277e9179ef
|
|
@ -1249,9 +1249,9 @@ int vcap_del_rule(struct vcap_control *vctrl, struct net_device *ndev, u32 id)
|
|||
vctrl->ops->init(ndev, admin, admin->last_used_addr, ri->size + gap);
|
||||
kfree(ri);
|
||||
|
||||
/* Update the last used address */
|
||||
/* Update the last used address, set to default when no rules */
|
||||
if (list_empty(&admin->rules)) {
|
||||
admin->last_used_addr = admin->last_valid_addr;
|
||||
admin->last_used_addr = admin->last_valid_addr + 1;
|
||||
} else {
|
||||
elem = list_last_entry(&admin->rules, struct vcap_rule_internal,
|
||||
list);
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user