|
@@ -239,6 +239,7 @@ nfp_flower_cmsg_portreify_rx(struct nfp_app *app, struct sk_buff *skb)
|
|
|
static void
|
|
|
nfp_flower_cmsg_process_one_rx(struct nfp_app *app, struct sk_buff *skb)
|
|
|
{
|
|
|
+ struct nfp_flower_priv *app_priv = app->priv;
|
|
|
struct nfp_flower_cmsg_hdr *cmsg_hdr;
|
|
|
enum nfp_flower_cmsg_type_port type;
|
|
|
|
|
@@ -258,6 +259,10 @@ nfp_flower_cmsg_process_one_rx(struct nfp_app *app, struct sk_buff *skb)
|
|
|
case NFP_FLOWER_CMSG_TYPE_ACTIVE_TUNS:
|
|
|
nfp_tunnel_keep_alive(app, skb);
|
|
|
break;
|
|
|
+ case NFP_FLOWER_CMSG_TYPE_LAG_CONFIG:
|
|
|
+ if (app_priv->flower_ext_feats & NFP_FL_FEATS_LAG)
|
|
|
+ break;
|
|
|
+ /* fall through */
|
|
|
default:
|
|
|
nfp_flower_cmsg_warn(app, "Cannot handle invalid repr control type %u\n",
|
|
|
type);
|