net: stmmac: tc: Do not return a fragment entry
[ Upstream commit 4a6a1385a4 ]
Do not try to return a fragment entry from TC list. Otherwise we may not
clean properly allocated entries.
Signed-off-by: Jose Abreu <joabreu@synopsys.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
b6cd6d1842
commit
b8d03c79e4
1 changed files with 1 additions and 1 deletions
|
|
@ -37,7 +37,7 @@ static struct stmmac_tc_entry *tc_find_entry(struct stmmac_priv *priv,
|
|||
entry = &priv->tc_entries[i];
|
||||
if (!entry->in_use && !first && free)
|
||||
first = entry;
|
||||
if (entry->handle == loc && !free)
|
||||
if ((entry->handle == loc) && !free && !entry->is_frag)
|
||||
dup = entry;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue