From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756725AbdLVS2Q (ORCPT ); Fri, 22 Dec 2017 13:28:16 -0500 Received: from mx1.redhat.com ([209.132.183.28]:44366 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755458AbdLVS2N (ORCPT ); Fri, 22 Dec 2017 13:28:13 -0500 Date: Fri, 22 Dec 2017 16:28:07 -0200 From: Marcelo Ricardo Leitner To: Dmitry Vyukov Cc: David Ahern , syzbot , LKML , Ingo Molnar , Peter Zijlstra , syzkaller-bugs@googlegroups.com, David Miller , Florian Westphal , Daniel Borkmann , Xin Long , jakub.kicinski@netronome.com, mschiffer@universe-factory.net, Vladislav Yasevich , Jiri Benc , netdev , Neil Horman , linux-sctp@vger.kernel.org Subject: Re: INFO: task hung in bpf_exit_net Message-ID: <20171222182807.GC32765@localhost.localdomain> References: <001a1143fd00a8cc790560b0b552@google.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.9.1 (2017-09-22) X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.32]); Fri, 22 Dec 2017 18:28:13 +0000 (UTC) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, Dec 22, 2017 at 11:58:08AM +0100, Dmitry Vyukov wrote: ... > > Same with this one, perhaps related to / fixed by: > > http://patchwork.ozlabs.org/patch/850957/ > > > > > > Looking at the log, this one seems to be an infinite loop in SCTP code > with console output in it. Kernel is busy printing gazilion of: > > [ 176.491099] sctp: sctp_transport_update_pmtu: Reported pmtu 508 too > low, using default minimum of 512 > ** 110 printk messages dropped ** > [ 176.503409] sctp: sctp_transport_update_pmtu: Reported pmtu 508 too > low, using default minimum of 512 > ** 103 printk messages dropped ** > ... > [ 246.742374] sctp: sctp_transport_update_pmtu: Reported pmtu 508 too > low, using default minimum of 512 > [ 246.742484] sctp: sctp_transport_update_pmtu: Reported pmtu 508 too > low, using default minimum of 512 > [ 246.742590] sctp: sctp_transport_update_pmtu: Reported pmtu 508 too > low, using default minimum of 512 > > Looks like a different issue. > Oh. I guess this is caused by the interface having a MTU smaller than SCTP_DEFAULT_MINSEGMENT (512), as the icmp frag needed handler (sctp_icmp_frag_needed) will trigger an instant retransmission. But as the MTU is smaller, SCTP won't update it, but will issue the retransmission anyway. I will test this soon. Should be fairly easy to trigger it. Marcelo