net/sfc/base: get actions MARK and FLAG support
Filter actions MARK and FLAG are supported on Medford2 by DPDK firmware variant. Signed-off-by: Roman Zhukov <roman.zhukov@oktetlabs.ru> Signed-off-by: Andrew Rybchenko <arybchenko@solarflare.com>
This commit is contained in:
parent
26c4f60823
commit
618869b815
@ -1294,6 +1294,16 @@ ef10_get_datapath_caps(
|
||||
*/
|
||||
encp->enc_rx_scale_l4_hash_supported = B_TRUE;
|
||||
}
|
||||
/* Check if the firmware supports "FLAG" and "MARK" filter actions */
|
||||
if (CAP_FLAGS2(req, FILTER_ACTION_FLAG))
|
||||
encp->enc_filter_action_flag_supported = B_TRUE;
|
||||
else
|
||||
encp->enc_filter_action_flag_supported = B_FALSE;
|
||||
|
||||
if (CAP_FLAGS2(req, FILTER_ACTION_MARK))
|
||||
encp->enc_filter_action_mark_supported = B_TRUE;
|
||||
else
|
||||
encp->enc_filter_action_mark_supported = B_FALSE;
|
||||
|
||||
#undef CAP_FLAGS1
|
||||
#undef CAP_FLAGS2
|
||||
|
@ -1293,6 +1293,9 @@ typedef struct efx_nic_cfg_s {
|
||||
/* Firmware support for extended MAC_STATS buffer */
|
||||
uint32_t enc_mac_stats_nstats;
|
||||
boolean_t enc_fec_counters;
|
||||
/* Firmware support for "FLAG" and "MARK" filter actions */
|
||||
boolean_t enc_filter_action_flag_supported;
|
||||
boolean_t enc_filter_action_mark_supported;
|
||||
} efx_nic_cfg_t;
|
||||
|
||||
#define EFX_PCI_FUNCTION_IS_PF(_encp) ((_encp)->enc_vf == 0xffff)
|
||||
|
@ -172,6 +172,9 @@ siena_board_cfg(
|
||||
|
||||
encp->enc_mac_stats_nstats = MC_CMD_MAC_NSTATS;
|
||||
|
||||
encp->enc_filter_action_flag_supported = B_FALSE;
|
||||
encp->enc_filter_action_mark_supported = B_FALSE;
|
||||
|
||||
return (0);
|
||||
|
||||
fail2:
|
||||
|
Loading…
Reference in New Issue
Block a user