Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753445AbdLHVQa (ORCPT ); Fri, 8 Dec 2017 16:16:30 -0500 Received: from mail-io0-f173.google.com ([209.85.223.173]:34805 "EHLO mail-io0-f173.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753336AbdLHVQY (ORCPT ); Fri, 8 Dec 2017 16:16:24 -0500 X-Google-Smtp-Source: AGs4zMayuEoXL7AIbjW5c4mz8kt3n+tLwF2W8T8QJhN6uom5HfCin+Cstdh4bXKOXpKSDyKpezh7nw== Message-ID: <1512767781.25033.30.camel@gmail.com> Subject: Re: NFS corruption, fixed by echo 1 > /proc/sys/vm/drop_caches -- next debugging steps? From: Eric Dumazet To: Matt Turner Cc: Eric Dumazet , "linux-mips@linux-mips.org" , linux-nfs@vger.kernel.org, Paolo Abeni , Hannes Frederic Sowa , "Peter Zijlstra (Intel)" , Thomas Gleixner , Ingo Molnar , Manuel Lauss , LKML , netdev Date: Fri, 08 Dec 2017 13:16:21 -0800 In-Reply-To: References: <1512741164.25033.28.camel@gmail.com> Content-Type: text/plain; charset="UTF-8" X-Mailer: Evolution 3.22.6-1+deb9u1 Mime-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 378 Lines: 17 On Fri, 2017-12-08 at 12:26 -0800, Matt Turner wrote: > > Thanks for the quick reply! > > I tried the patch on top of master, but unfortunately the corruption > still occurs. You might try replacing in sbdma_add_rcvbuffer() sb_new = netdev_alloc_skb(dev, size); by  sb_new = alloc_skb(size, GFP_ATOMIC); Maybe the device does not like having a frame spanning 2 pages.