From: Eric Dumazet <hidden> Date: 2012-02-10 14:09:53
Le vendredi 10 février 2012 à 14:51 +0100, Eric Dumazet a écrit :
2) As is, we can leak kernel memory content to wire since we dont
initialize the padding data.
False alarm, this is properly handled by de620_write_block( ... , pad);
Other drivers do :
if (skb->len < ETH_ZLEN) {
if (skb_padto(skb, ETH_ZLEN))
goto out;
}