diff options
author | Ben Hutchings <bhutchings@solarflare.com> | 2010-12-07 22:02:27 +0300 |
---|---|---|
committer | Ben Hutchings <bhutchings@solarflare.com> | 2010-12-07 22:02:50 +0300 |
commit | 8891681af928f1da795cd4bd59043e5e0fadd6c8 (patch) | |
tree | 11a1d55774d82ffd2694ce68cea103b8416323ba /drivers/net/sfc/efx.h | |
parent | ac33ac610dc613b2b1c938f8b61eef651ab72563 (diff) | |
download | linux-8891681af928f1da795cd4bd59043e5e0fadd6c8.tar.xz |
sfc: Remove filter table IDs from filter functions
The separation between filter tables is largely an internal detail
and it may be removed in future hardware. To prepare for that:
- Merge table ID with filter index to make an opaque filter ID
- Wrap efx_filter_table_clear() with a function that clears filters
from both RX tables, which is all that the current caller requires
Signed-off-by: Ben Hutchings <bhutchings@solarflare.com>
Diffstat (limited to 'drivers/net/sfc/efx.h')
-rw-r--r-- | drivers/net/sfc/efx.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/net/sfc/efx.h b/drivers/net/sfc/efx.h index 10a1bf40da96..003fdb35b4bb 100644 --- a/drivers/net/sfc/efx.h +++ b/drivers/net/sfc/efx.h @@ -74,9 +74,8 @@ extern int efx_filter_insert_filter(struct efx_nic *efx, bool replace); extern int efx_filter_remove_filter(struct efx_nic *efx, struct efx_filter_spec *spec); -extern void efx_filter_table_clear(struct efx_nic *efx, - enum efx_filter_table_id table_id, - enum efx_filter_priority priority); +extern void efx_filter_clear_rx(struct efx_nic *efx, + enum efx_filter_priority priority); /* Channels */ extern void efx_process_channel_now(struct efx_channel *channel); |