Hi Eric,

>> +            if (unlikely(skb_shinfo(skb)->gso_size + hlen > 
>> MAX_PACKET_SIZE)) {
>> +                    BNX2X_ERR("reported gso segment size plus headers "
>> +                              "(%d + %d) > MAX_PACKET_SIZE; dropping pkt!",
>> +                              skb_shinfo(skb)->gso_size, hlen);
>> +
>> +                    goto free_and_drop;
>> +            }
>> +
>
>
> If you had this test in bnx2x_features_check(), packet could be
> segmented by core networking stack before reaching bnx2x_start_xmit() by
> clearing NETIF_F_GSO_MASK
>
> -> No drop would be involved.
>
> check i40evf_features_check() for similar logic.

So I've been experimenting with this and reading through the core
networking code. If my understanding is correct, disabling GSO will
cause the packet to be segmented, but it will be segemented into
gso_size+header length packets. So in this case (~10kB gso_size) the
resultant packets will still be too big - although at least they don't
cause a crash in that case.

We could continue with this anyway as it at least prevents the crash -
but, and I haven't been able to find a nice definitive answer to this -
are implementations of ndo_start_xmit permitted to assume that the the
skb passed in will fit within the MTU? I notice that most callers will
attempt to ensure this - for example ip_output.c, ip6_output.c and
ip_forward.c all contain calls to skb_gso_validate_mtu(). If
implementations are permitted to assume this, perhaps a fix to
openvswitch would be more appropriate?

Regards,
Daniel

Reply via email to