From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1433677AbdDZOQX (ORCPT ); Wed, 26 Apr 2017 10:16:23 -0400 Received: from mail-yw0-f176.google.com ([209.85.161.176]:33814 "EHLO mail-yw0-f176.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1433591AbdDZOQP (ORCPT ); Wed, 26 Apr 2017 10:16:15 -0400 MIME-Version: 1.0 In-Reply-To: References: From: Eric Dumazet Date: Wed, 26 Apr 2017 07:16:13 -0700 Message-ID: Subject: Re: net/tcp: warning in tcp_try_coalesce/skb_try_coalesce To: Andrey Konovalov Cc: "David S. Miller" , Alexey Kuznetsov , Hideaki YOSHIFUJI , Patrick McHardy , netdev , LKML , Dmitry Vyukov , Kostya Serebryany , syzkaller Content-Type: text/plain; charset=UTF-8 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, Apr 26, 2017 at 5:08 AM, Andrey Konovalov wrote: > On Tue, Jan 31, 2017 at 2:17 PM, Andrey Konovalov wrote: >> Hi, >> >> I've got the following error report while running the syzkaller fuzzer. >> >> On commit 566cf877a1fcb6d6dc0126b076aad062054c2637 (4.10-rc6). >> >> The fuzzer hits this issue quite often, but I don't have a working reproducer. > > I still see this on 5a7ad1146caa895ad718a534399e38bd2ba721b7 (4.11-rc8). > > I also have a reproducer now, attached. > > It takes around 10 seconds for the warning to trigger. > It does not trigger for me, but seeing that you use SO_ATTACH_FILTER, I have a pretty good idea how to remove this splat. A call to skb_condense() from ___pskb_trim() will likely help, I will post a patch after my commute. Thanks.