OSDN Git Service

nfp: bpf: lift the single-port limitation
authorJakub Kicinski <jakub.kicinski@netronome.com>
Mon, 9 Oct 2017 04:04:04 +0000 (21:04 -0700)
committerDavid S. Miller <davem@davemloft.net>
Mon, 9 Oct 2017 16:51:02 +0000 (09:51 -0700)
Limiting the eBPF offload to a single port was a workaround
required for the PoC application FW which has not been
released externally.  It's not necessary any more.

Signed-off-by: Jakub Kicinski <jakub.kicinski@netronome.com>
Reviewed-by: Simon Horman <simon.horman@netronome.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/netronome/nfp/bpf/main.c

index be2cf10..0747269 100644 (file)
@@ -89,14 +89,6 @@ nfp_bpf_vnic_alloc(struct nfp_app *app, struct nfp_net *nn, unsigned int id)
        struct nfp_net_bpf_priv *priv;
        int ret;
 
-       /* Limit to single port, otherwise it's just a NIC */
-       if (id > 0) {
-               nfp_warn(app->cpp,
-                        "BPF NIC doesn't support more than one port right now\n");
-               nn->port = nfp_port_alloc(app, NFP_PORT_INVALID, nn->dp.netdev);
-               return PTR_ERR_OR_ZERO(nn->port);
-       }
-
        priv = kmalloc(sizeof(*priv), GFP_KERNEL);
        if (!priv)
                return -ENOMEM;