mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-09 06:43:09 +00:00
019d9329e7
When ocelot_flower.c calls ocelot_vcap_filter_add(), the filter has a
given filter->id.cookie. This filter is added to the block->rules list.
However, when ocelot_flower.c calls ocelot_vcap_block_find_filter_by_id()
which passes the cookie as argument, the filter is never found by
filter->id.cookie when searching through the block->rules list.
This is unsurprising, since the filter->id.cookie is an unsigned long,
but the cookie argument provided to ocelot_vcap_block_find_filter_by_id()
is a signed int, and the comparison fails.
Fixes:
|
||
---|---|---|
.. | ||
ocelot_ana.h | ||
ocelot_dev.h | ||
ocelot_hsio.h | ||
ocelot_ptp.h | ||
ocelot_qsys.h | ||
ocelot_sys.h | ||
ocelot_vcap.h | ||
ocelot.h |