Invoke the new MDB bulk deletion device operation when the 'NLM_F_BULK'
flag is set in the netlink message header.
Signed-off-by: Ido Schimmel <idosch@nvidia.com>
Reviewed-by: Petr Machata <petrm@nvidia.com>
Acked-by: Nikolay Aleksandrov <razor@blackwall.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
                return -EINVAL;
        }
 
+       if (del_bulk) {
+               if (!dev->netdev_ops->ndo_mdb_del_bulk) {
+                       NL_SET_ERR_MSG(extack, "Device does not support MDB bulk deletion");
+                       return -EOPNOTSUPP;
+               }
+               return dev->netdev_ops->ndo_mdb_del_bulk(dev, tb, extack);
+       }
+
        if (!dev->netdev_ops->ndo_mdb_del) {
                NL_SET_ERR_MSG(extack, "Device does not support MDB operations");
                return -EOPNOTSUPP;