commit | 7cfd5fd5a9813f1430290d20c0fead9b4582a307 | [log] [tgz] |
---|---|---|
author | Eric Dumazet <edumazet@google.com> | Tue Jan 10 19:52:43 2017 -0800 |
committer | David S. Miller <davem@davemloft.net> | Wed Jan 11 08:15:40 2017 -0500 |
tree | 8637effcdc8ce0086eef34afc7ed72e6ca5e7501 | |
parent | 6c711c8691bf91d0e830ff4215b08e51c0626769 [diff] |
gro: use min_t() in skb_gro_reset_offset() On 32bit arches, (skb->end - skb->data) is not 'unsigned int', so we shall use min_t() instead of min() to avoid a compiler error. Fixes: 1272ce87fa01 ("gro: Enter slow-path if there is no tailroom") Reported-by: kernel test robot <fengguang.wu@intel.com> Signed-off-by: Eric Dumazet <edumazet@google.com> Signed-off-by: David S. Miller <davem@davemloft.net>