|
@@ -710,7 +710,8 @@ static int parse_cls_flower(struct mlx5e_priv *priv,
|
|
|
|
|
|
if (!err && (flow->flags & MLX5E_TC_FLOW_ESWITCH) &&
|
|
|
rep->vport != FDB_UPLINK_VPORT) {
|
|
|
- if (min_inline > esw->offloads.inline_mode) {
|
|
|
+ if (esw->offloads.inline_mode != MLX5_INLINE_MODE_NONE &&
|
|
|
+ esw->offloads.inline_mode < min_inline) {
|
|
|
netdev_warn(priv->netdev,
|
|
|
"Flow is not offloaded due to min inline setting, required %d actual %d\n",
|
|
|
min_inline, esw->offloads.inline_mode);
|
|
@@ -1140,16 +1141,15 @@ static int mlx5e_route_lookup_ipv6(struct mlx5e_priv *priv,
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
|
-static int gen_vxlan_header_ipv4(struct net_device *out_dev,
|
|
|
- char buf[],
|
|
|
- unsigned char h_dest[ETH_ALEN],
|
|
|
- int ttl,
|
|
|
- __be32 daddr,
|
|
|
- __be32 saddr,
|
|
|
- __be16 udp_dst_port,
|
|
|
- __be32 vx_vni)
|
|
|
+static void gen_vxlan_header_ipv4(struct net_device *out_dev,
|
|
|
+ char buf[], int encap_size,
|
|
|
+ unsigned char h_dest[ETH_ALEN],
|
|
|
+ int ttl,
|
|
|
+ __be32 daddr,
|
|
|
+ __be32 saddr,
|
|
|
+ __be16 udp_dst_port,
|
|
|
+ __be32 vx_vni)
|
|
|
{
|
|
|
- int encap_size = VXLAN_HLEN + sizeof(struct iphdr) + ETH_HLEN;
|
|
|
struct ethhdr *eth = (struct ethhdr *)buf;
|
|
|
struct iphdr *ip = (struct iphdr *)((char *)eth + sizeof(struct ethhdr));
|
|
|
struct udphdr *udp = (struct udphdr *)((char *)ip + sizeof(struct iphdr));
|
|
@@ -1172,20 +1172,17 @@ static int gen_vxlan_header_ipv4(struct net_device *out_dev,
|
|
|
udp->dest = udp_dst_port;
|
|
|
vxh->vx_flags = VXLAN_HF_VNI;
|
|
|
vxh->vx_vni = vxlan_vni_field(vx_vni);
|
|
|
-
|
|
|
- return encap_size;
|
|
|
}
|
|
|
|
|
|
-static int gen_vxlan_header_ipv6(struct net_device *out_dev,
|
|
|
- char buf[],
|
|
|
- unsigned char h_dest[ETH_ALEN],
|
|
|
- int ttl,
|
|
|
- struct in6_addr *daddr,
|
|
|
- struct in6_addr *saddr,
|
|
|
- __be16 udp_dst_port,
|
|
|
- __be32 vx_vni)
|
|
|
+static void gen_vxlan_header_ipv6(struct net_device *out_dev,
|
|
|
+ char buf[], int encap_size,
|
|
|
+ unsigned char h_dest[ETH_ALEN],
|
|
|
+ int ttl,
|
|
|
+ struct in6_addr *daddr,
|
|
|
+ struct in6_addr *saddr,
|
|
|
+ __be16 udp_dst_port,
|
|
|
+ __be32 vx_vni)
|
|
|
{
|
|
|
- int encap_size = VXLAN_HLEN + sizeof(struct ipv6hdr) + ETH_HLEN;
|
|
|
struct ethhdr *eth = (struct ethhdr *)buf;
|
|
|
struct ipv6hdr *ip6h = (struct ipv6hdr *)((char *)eth + sizeof(struct ethhdr));
|
|
|
struct udphdr *udp = (struct udphdr *)((char *)ip6h + sizeof(struct ipv6hdr));
|
|
@@ -1207,8 +1204,6 @@ static int gen_vxlan_header_ipv6(struct net_device *out_dev,
|
|
|
udp->dest = udp_dst_port;
|
|
|
vxh->vx_flags = VXLAN_HF_VNI;
|
|
|
vxh->vx_vni = vxlan_vni_field(vx_vni);
|
|
|
-
|
|
|
- return encap_size;
|
|
|
}
|
|
|
|
|
|
static int mlx5e_create_encap_header_ipv4(struct mlx5e_priv *priv,
|
|
@@ -1217,13 +1212,20 @@ static int mlx5e_create_encap_header_ipv4(struct mlx5e_priv *priv,
|
|
|
struct net_device **out_dev)
|
|
|
{
|
|
|
int max_encap_size = MLX5_CAP_ESW(priv->mdev, max_encap_header_size);
|
|
|
+ int ipv4_encap_size = ETH_HLEN + sizeof(struct iphdr) + VXLAN_HLEN;
|
|
|
struct ip_tunnel_key *tun_key = &e->tun_info.key;
|
|
|
- int encap_size, ttl, err;
|
|
|
struct neighbour *n = NULL;
|
|
|
struct flowi4 fl4 = {};
|
|
|
char *encap_header;
|
|
|
+ int ttl, err;
|
|
|
+
|
|
|
+ if (max_encap_size < ipv4_encap_size) {
|
|
|
+ mlx5_core_warn(priv->mdev, "encap size %d too big, max supported is %d\n",
|
|
|
+ ipv4_encap_size, max_encap_size);
|
|
|
+ return -EOPNOTSUPP;
|
|
|
+ }
|
|
|
|
|
|
- encap_header = kzalloc(max_encap_size, GFP_KERNEL);
|
|
|
+ encap_header = kzalloc(ipv4_encap_size, GFP_KERNEL);
|
|
|
if (!encap_header)
|
|
|
return -ENOMEM;
|
|
|
|
|
@@ -1258,11 +1260,11 @@ static int mlx5e_create_encap_header_ipv4(struct mlx5e_priv *priv,
|
|
|
|
|
|
switch (e->tunnel_type) {
|
|
|
case MLX5_HEADER_TYPE_VXLAN:
|
|
|
- encap_size = gen_vxlan_header_ipv4(*out_dev, encap_header,
|
|
|
- e->h_dest, ttl,
|
|
|
- fl4.daddr,
|
|
|
- fl4.saddr, tun_key->tp_dst,
|
|
|
- tunnel_id_to_key32(tun_key->tun_id));
|
|
|
+ gen_vxlan_header_ipv4(*out_dev, encap_header,
|
|
|
+ ipv4_encap_size, e->h_dest, ttl,
|
|
|
+ fl4.daddr,
|
|
|
+ fl4.saddr, tun_key->tp_dst,
|
|
|
+ tunnel_id_to_key32(tun_key->tun_id));
|
|
|
break;
|
|
|
default:
|
|
|
err = -EOPNOTSUPP;
|
|
@@ -1270,7 +1272,7 @@ static int mlx5e_create_encap_header_ipv4(struct mlx5e_priv *priv,
|
|
|
}
|
|
|
|
|
|
err = mlx5_encap_alloc(priv->mdev, e->tunnel_type,
|
|
|
- encap_size, encap_header, &e->encap_id);
|
|
|
+ ipv4_encap_size, encap_header, &e->encap_id);
|
|
|
out:
|
|
|
if (err && n)
|
|
|
neigh_release(n);
|
|
@@ -1285,13 +1287,20 @@ static int mlx5e_create_encap_header_ipv6(struct mlx5e_priv *priv,
|
|
|
|
|
|
{
|
|
|
int max_encap_size = MLX5_CAP_ESW(priv->mdev, max_encap_header_size);
|
|
|
+ int ipv6_encap_size = ETH_HLEN + sizeof(struct ipv6hdr) + VXLAN_HLEN;
|
|
|
struct ip_tunnel_key *tun_key = &e->tun_info.key;
|
|
|
- int encap_size, err, ttl = 0;
|
|
|
struct neighbour *n = NULL;
|
|
|
struct flowi6 fl6 = {};
|
|
|
char *encap_header;
|
|
|
+ int err, ttl = 0;
|
|
|
+
|
|
|
+ if (max_encap_size < ipv6_encap_size) {
|
|
|
+ mlx5_core_warn(priv->mdev, "encap size %d too big, max supported is %d\n",
|
|
|
+ ipv6_encap_size, max_encap_size);
|
|
|
+ return -EOPNOTSUPP;
|
|
|
+ }
|
|
|
|
|
|
- encap_header = kzalloc(max_encap_size, GFP_KERNEL);
|
|
|
+ encap_header = kzalloc(ipv6_encap_size, GFP_KERNEL);
|
|
|
if (!encap_header)
|
|
|
return -ENOMEM;
|
|
|
|
|
@@ -1327,11 +1336,11 @@ static int mlx5e_create_encap_header_ipv6(struct mlx5e_priv *priv,
|
|
|
|
|
|
switch (e->tunnel_type) {
|
|
|
case MLX5_HEADER_TYPE_VXLAN:
|
|
|
- encap_size = gen_vxlan_header_ipv6(*out_dev, encap_header,
|
|
|
- e->h_dest, ttl,
|
|
|
- &fl6.daddr,
|
|
|
- &fl6.saddr, tun_key->tp_dst,
|
|
|
- tunnel_id_to_key32(tun_key->tun_id));
|
|
|
+ gen_vxlan_header_ipv6(*out_dev, encap_header,
|
|
|
+ ipv6_encap_size, e->h_dest, ttl,
|
|
|
+ &fl6.daddr,
|
|
|
+ &fl6.saddr, tun_key->tp_dst,
|
|
|
+ tunnel_id_to_key32(tun_key->tun_id));
|
|
|
break;
|
|
|
default:
|
|
|
err = -EOPNOTSUPP;
|
|
@@ -1339,7 +1348,7 @@ static int mlx5e_create_encap_header_ipv6(struct mlx5e_priv *priv,
|
|
|
}
|
|
|
|
|
|
err = mlx5_encap_alloc(priv->mdev, e->tunnel_type,
|
|
|
- encap_size, encap_header, &e->encap_id);
|
|
|
+ ipv6_encap_size, encap_header, &e->encap_id);
|
|
|
out:
|
|
|
if (err && n)
|
|
|
neigh_release(n);
|