Merge branch 'nfp-flower-fix-bugs-in-merge-tunnel-encap-code'
Jakub Kicinski says: ==================== nfp: flower: fix bugs in merge tunnel encap code John says: There are few bugs in the merge encap code that have come to light with recent driver changes. Effectively, flow bind callbacks were being registered twice when using internal ports (new 'busy' code triggers this). There was also an issue with neighbour notifier messages being ignored for internal ports. ==================== Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
commit
807e329995
|
@ -1409,9 +1409,10 @@ nfp_flower_setup_indr_tc_block(struct net_device *netdev, struct nfp_app *app,
|
|||
struct nfp_flower_priv *priv = app->priv;
|
||||
struct flow_block_cb *block_cb;
|
||||
|
||||
if (f->binder_type != FLOW_BLOCK_BINDER_TYPE_CLSACT_INGRESS &&
|
||||
!(f->binder_type == FLOW_BLOCK_BINDER_TYPE_CLSACT_EGRESS &&
|
||||
nfp_flower_internal_port_can_offload(app, netdev)))
|
||||
if ((f->binder_type != FLOW_BLOCK_BINDER_TYPE_CLSACT_INGRESS &&
|
||||
!nfp_flower_internal_port_can_offload(app, netdev)) ||
|
||||
(f->binder_type != FLOW_BLOCK_BINDER_TYPE_CLSACT_EGRESS &&
|
||||
nfp_flower_internal_port_can_offload(app, netdev)))
|
||||
return -EOPNOTSUPP;
|
||||
|
||||
switch (f->command) {
|
||||
|
|
|
@ -328,13 +328,13 @@ nfp_tun_neigh_event_handler(struct notifier_block *nb, unsigned long event,
|
|||
|
||||
flow.daddr = *(__be32 *)n->primary_key;
|
||||
|
||||
/* Only concerned with route changes for representors. */
|
||||
if (!nfp_netdev_is_nfp_repr(n->dev))
|
||||
return NOTIFY_DONE;
|
||||
|
||||
app_priv = container_of(nb, struct nfp_flower_priv, tun.neigh_nb);
|
||||
app = app_priv->app;
|
||||
|
||||
if (!nfp_netdev_is_nfp_repr(n->dev) &&
|
||||
!nfp_flower_internal_port_can_offload(app, n->dev))
|
||||
return NOTIFY_DONE;
|
||||
|
||||
/* Only concerned with changes to routes already added to NFP. */
|
||||
if (!nfp_tun_has_route(app, flow.daddr))
|
||||
return NOTIFY_DONE;
|
||||
|
|
Loading…
Reference in New Issue