[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <50815A9A.7050009@onera.fr>
Date: Fri, 19 Oct 2012 15:50:18 +0200
From: Paul Chavent <Paul.Chavent@...ra.fr>
To: Daniel Borkmann <danborkmann@...earbox.net>
CC: davem@...emloft.net, netdev@...r.kernel.org
Subject: Re: [PATCH net-next] packet mmap : allow the user to choose tx data
offset.
There is a point where I'm wrong in my last reply :
On 10/19/2012 01:36 PM, Daniel Borkmann wrote:
>> + int off;
>
> For offsets, better use off_t, or here u32. Also, add a newline after
> variable declaration.
i use int because of arithmetics :
off_max = po->tx_ring.frame_size - tp_len;
If the user give a bad tp_len (> po->tx_ring.frame_size), with unsigned
we will probably miss the check that follow :
if (unlikely((off < off_min) || (off_max < off)))
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists