Re: [kbuild-all] [PATCH net-next 2/2] sctp: add sctp_make_op_error_limited and reuse inner functions

2018-05-23 Thread Marcelo Ricardo Leitner
On Tue, May 15, 2018 at 09:23:08AM +0800, Ye Xiaolong wrote: > On 05/14, Marcelo Ricardo Leitner wrote: > >On Mon, May 14, 2018 at 07:47:20PM +0800, Ye Xiaolong wrote: > >> On 05/14, Marcelo Ricardo Leitner wrote: > >> >On Mon, May 14, 2018 at 03:40:53PM +0800, Ye Xiaolong wrote: > >> >> >> config:

Re: [kbuild-all] [PATCH net-next 2/2] sctp: add sctp_make_op_error_limited and reuse inner functions

2018-05-14 Thread Ye Xiaolong
On 05/14, Marcelo Ricardo Leitner wrote: >On Mon, May 14, 2018 at 07:47:20PM +0800, Ye Xiaolong wrote: >> On 05/14, Marcelo Ricardo Leitner wrote: >> >On Mon, May 14, 2018 at 03:40:53PM +0800, Ye Xiaolong wrote: >> >> >> config: x86_64-randconfig-x006-201817 (attached as .config) >> >> >> compiler:

Re: [kbuild-all] [PATCH net-next 2/2] sctp: add sctp_make_op_error_limited and reuse inner functions

2018-05-14 Thread Marcelo Ricardo Leitner
On Mon, May 14, 2018 at 07:47:20PM +0800, Ye Xiaolong wrote: > On 05/14, Marcelo Ricardo Leitner wrote: > >On Mon, May 14, 2018 at 03:40:53PM +0800, Ye Xiaolong wrote: > >> >> config: x86_64-randconfig-x006-201817 (attached as .config) > >> >> compiler: gcc-7 (Debian 7.3.0-16) 7.3.0 > >> >> reprodu

Re: [kbuild-all] [PATCH net-next 2/2] sctp: add sctp_make_op_error_limited and reuse inner functions

2018-05-14 Thread Ye Xiaolong
On 05/14, Marcelo Ricardo Leitner wrote: >On Mon, May 14, 2018 at 03:40:53PM +0800, Ye Xiaolong wrote: >> >> config: x86_64-randconfig-x006-201817 (attached as .config) >> >> compiler: gcc-7 (Debian 7.3.0-16) 7.3.0 >> >> reproduce: >> >> # save the attached .config to linux build tree >> >>

Re: [kbuild-all] [PATCH net-next 2/2] sctp: add sctp_make_op_error_limited and reuse inner functions

2018-05-14 Thread Marcelo Ricardo Leitner
On Mon, May 14, 2018 at 03:40:53PM +0800, Ye Xiaolong wrote: > >> config: x86_64-randconfig-x006-201817 (attached as .config) > >> compiler: gcc-7 (Debian 7.3.0-16) 7.3.0 > >> reproduce: > >> # save the attached .config to linux build tree > >> make ARCH=x86_64 > >> > >> All errors

Re: [kbuild-all] [PATCH net-next 2/2] sctp: add sctp_make_op_error_limited and reuse inner functions

2018-05-14 Thread Ye Xiaolong
Sorry for the late response. On 04/29, Marcelo Ricardo Leitner wrote: >On Mon, Apr 30, 2018 at 10:14:06AM +0800, kbuild test robot wrote: >> Hi Marcelo, >> >> Thank you for the patch! Yet something to improve: >> >> [auto build test ERROR on net-next/master] >> >> url: >> https://github.com/0

Re: [PATCH net-next 2/2] sctp: add sctp_make_op_error_limited and reuse inner functions

2018-04-29 Thread Marcelo Ricardo Leitner
On Mon, Apr 30, 2018 at 10:14:06AM +0800, kbuild test robot wrote: > Hi Marcelo, > > Thank you for the patch! Yet something to improve: > > [auto build test ERROR on net-next/master] > > url: > https://github.com/0day-ci/linux/commits/Marcelo-Ricardo-Leitner/sctp-allow-sctp_init_cause-to-return

Re: [PATCH net-next 2/2] sctp: add sctp_make_op_error_limited and reuse inner functions

2018-04-29 Thread kbuild test robot
Hi Marcelo, Thank you for the patch! Yet something to improve: [auto build test ERROR on net-next/master] url: https://github.com/0day-ci/linux/commits/Marcelo-Ricardo-Leitner/sctp-allow-sctp_init_cause-to-return-errors/20180430-073613 config: x86_64-randconfig-x006-201817 (attached as .conf

Re: [PATCH net-next 2/2] sctp: add sctp_make_op_error_limited and reuse inner functions

2018-04-29 Thread kbuild test robot
Hi Marcelo, Thank you for the patch! Yet something to improve: [auto build test ERROR on net-next/master] url: https://github.com/0day-ci/linux/commits/Marcelo-Ricardo-Leitner/sctp-allow-sctp_init_cause-to-return-errors/20180430-073613 config: i386-randconfig-s1-201817 (attached as .config)

[PATCH net-next 2/2] sctp: add sctp_make_op_error_limited and reuse inner functions

2018-04-29 Thread Marcelo Ricardo Leitner
The idea is quite similar to the old functions, but note that the _fixed function wasn't "fixed" as in that it would generate a packet with a fixed size, but rather limited/bounded to PMTU. Also, now with sctp_mtu_payload(), we have a more accurate limit. Signed-off-by: Marcelo Ricardo Leitner -