diff options
author | Dan Carpenter <dan.carpenter@linaro.org> | 2023-10-19 10:32:26 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2023-10-20 12:53:06 +0100 |
commit | 4690aea589e76e887a40195b35b6d19a838058eb (patch) | |
tree | 50c97863fbc73fadaaea6957d39bf921fef5e0f0 /tools/perf/scripts/python/export-to-sqlite.py | |
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 <dan.carpenter@linaro.org>
Reviewed-by: Simon Horman <horms@kernel.org>
Reviewed-by: Jesse Brandeburg <jesse.brandeburg@intel.com>
Tested-by: Rafal Romanowski <rafal.romanowski@intel.com>
Signed-off-by: Jacob Keller <jacob.e.keller@intel.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'tools/perf/scripts/python/export-to-sqlite.py')
0 files changed, 0 insertions, 0 deletions