|
@@ -585,7 +585,13 @@ static void build_inline_wqe(struct mlx4_en_tx_desc *tx_desc, struct sk_buff *sk
|
|
|
int spc = MLX4_INLINE_ALIGN - CTRL_SIZE - sizeof *inl;
|
|
|
|
|
|
if (skb->len <= spc) {
|
|
|
- inl->byte_count = cpu_to_be32(1 << 31 | skb->len);
|
|
|
+ if (likely(skb->len >= MIN_PKT_LEN)) {
|
|
|
+ inl->byte_count = cpu_to_be32(1 << 31 | skb->len);
|
|
|
+ } else {
|
|
|
+ inl->byte_count = cpu_to_be32(1 << 31 | MIN_PKT_LEN);
|
|
|
+ memset(((void *)(inl + 1)) + skb->len, 0,
|
|
|
+ MIN_PKT_LEN - skb->len);
|
|
|
+ }
|
|
|
skb_copy_from_linear_data(skb, inl + 1, skb_headlen(skb));
|
|
|
if (skb_shinfo(skb)->nr_frags)
|
|
|
memcpy(((void *)(inl + 1)) + skb_headlen(skb), fragptr,
|