Re: [PATCH net-next 1/7] sock: struct proto hash function may error

2016-02-09 Thread Craig Gallek
On Tue, Feb 9, 2016 at 6:58 PM, kbuild test robot wrote: > Hi Craig, > > [auto build test WARNING on net-next/master] v3 will be the charm :\

Re: [PATCH net-next 1/7] sock: struct proto hash function may error

2016-02-09 Thread kbuild test robot
Hi Craig, [auto build test WARNING on net-next/master] url: https://github.com/0day-ci/linux/commits/Craig-Gallek/Faster-SO_REUSEPORT-for-TCP/20160210-074230 config: cris-allyesconfig (attached as .config) reproduce: wget https://git.kernel.org/cgit/linux/kernel/git/wfg/lkp-tests.git

Re: [PATCH net-next 1/7] sock: struct proto hash function may error

2016-02-09 Thread Craig Gallek
On Thu, Feb 4, 2016 at 10:35 AM, Craig Gallek wrote: > From: Craig Gallek > > In order to support fast reuseport lookups in TCP, the hash function > defined in struct proto must be capable of returning an error code. > This patch changes the function signature of all related hash functions > to r

[PATCH net-next 1/7] sock: struct proto hash function may error

2016-02-09 Thread Craig Gallek
From: Craig Gallek In order to support fast reuseport lookups in TCP, the hash function defined in struct proto must be capable of returning an error code. This patch changes the function signature of all related hash functions to return an integer and handles or propagates this return value at a

Re: [PATCH net-next 1/7] sock: struct proto hash function may error

2016-02-04 Thread Eric Dumazet
On Thu, 2016-02-04 at 10:35 -0500, Craig Gallek wrote: > From: Craig Gallek > > In order to support fast reuseport lookups in TCP, the hash function > defined in struct proto must be capable of returning an error code. > This patch changes the function signature of all related hash functions > to

[PATCH net-next 1/7] sock: struct proto hash function may error

2016-02-04 Thread Craig Gallek
From: Craig Gallek In order to support fast reuseport lookups in TCP, the hash function defined in struct proto must be capable of returning an error code. This patch changes the function signature of all related hash functions to return an integer and handles or propagates this return value at a

[PATCH net-next 1/7] sock: struct proto hash function may error

2016-02-04 Thread Craig Gallek
From: Craig Gallek In order to support fast reuseport lookups in TCP, the hash function defined in struct proto must be capable of returning an error code. This patch changes the function signature of all related hash functions to return an integer and handles or propagates this return value at a