diff options
author | Dan Carpenter <[email protected]> | 2023-10-19 10:32:26 -0700 |
---|---|---|
committer | David S. Miller <[email protected]> | 2023-10-20 12:53:06 +0100 |
commit | 4690aea589e76e887a40195b35b6d19a838058eb (patch) | |
tree | 50c97863fbc73fadaaea6957d39bf921fef5e0f0 /tools/perf/scripts/python | |
parent | 640a65f801338940ed86992179558eb070db75de (diff) |
igb: Fix an end of loop test
When we exit a list_for_each_entry() without hitting a break statement,
the list iterator isn't NULL, it just point to an offset off the
list_head. In that situation, it wouldn't be too surprising for
entry->free to be true and we end up corrupting memory.
The way to test for these is to just set a flag.
Fixes: c1fec890458a ("ethernet/intel: Use list_for_each_entry() helper")
Signed-off-by: Dan Carpenter <[email protected]>
Reviewed-by: Simon Horman <[email protected]>
Reviewed-by: Jesse Brandeburg <[email protected]>
Tested-by: Rafal Romanowski <[email protected]>
Signed-off-by: Jacob Keller <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
Diffstat (limited to 'tools/perf/scripts/python')
0 files changed, 0 insertions, 0 deletions