From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752583AbdJROEO (ORCPT ); Wed, 18 Oct 2017 10:04:14 -0400 Received: from www62.your-server.de ([213.133.104.62]:60026 "EHLO www62.your-server.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752059AbdJROEL (ORCPT ); Wed, 18 Oct 2017 10:04:11 -0400 Message-ID: <59E75F4F.7070706@iogearbox.net> Date: Wed, 18 Oct 2017 16:03:59 +0200 From: Daniel Borkmann User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.7.0 MIME-Version: 1.0 To: Tejun Heo CC: davem@davemloft.net, ast@kernel.org, john.fastabend@gmail.com, mark.rutland@arm.com, richard@nod.at, sp3485@columbia.edu, netdev@vger.kernel.org, linux-kernel@vger.kernel.org, Dennis Zhou Subject: Re: [PATCH net 0/3] Fix for BPF devmap percpu allocation splat References: <20171018132526.GC1302522@devbig577.frc2.facebook.com> In-Reply-To: <20171018132526.GC1302522@devbig577.frc2.facebook.com> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit X-Authenticated-Sender: daniel@iogearbox.net Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 10/18/2017 03:25 PM, Tejun Heo wrote: > Hello, Daniel. > > (cc'ing Dennis) > > On Tue, Oct 17, 2017 at 04:55:51PM +0200, Daniel Borkmann wrote: >> The set fixes a splat in devmap percpu allocation when we alloc >> the flush bitmap. Patch 1 is a prerequisite for the fix in patch 2, >> patch 1 is rather small, so if this could be routed via -net, for >> example, with Tejun's Ack that would be good. Patch 3 gets rid of >> remaining PCPU_MIN_UNIT_SIZE checks, which are percpu allocator >> internals and should not be used. >> >> Thanks! >> >> Daniel Borkmann (3): >> mm, percpu: add support for __GFP_NOWARN flag > > This looks fine. Great, thanks! >> bpf: fix splat for illegal devmap percpu allocation >> bpf: do not test for PCPU_MIN_UNIT_SIZE before percpu allocations > > These look okay too but if it helps percpu allocator can expose the > maximum size / alignment supported to take out the guessing game too. At least from BPF side there's right now no infra for exposing max possible alloc sizes for maps to e.g. user space as indication. There are few users left in the tree, where it would make sense for having some helpers though: arch/tile/kernel/setup.c:729: if (size < PCPU_MIN_UNIT_SIZE) arch/tile/kernel/setup.c:730: size = PCPU_MIN_UNIT_SIZE; drivers/net/ethernet/chelsio/libcxgb/libcxgb_ppm.c:346: unsigned int max = (PCPU_MIN_UNIT_SIZE - sizeof(*pools)) << 3; drivers/net/ethernet/chelsio/libcxgb/libcxgb_ppm.c:352: /* make sure per cpu pool fits into PCPU_MIN_UNIT_SIZE */ drivers/scsi/libfc/fc_exch.c:2488: /* reduce range so per cpu pool fits into PCPU_MIN_UNIT_SIZE pool */ drivers/scsi/libfc/fc_exch.c:2489: pool_exch_range = (PCPU_MIN_UNIT_SIZE - sizeof(*pool)) / > Also, the reason why PCPU_MIN_UNIT_SIZE is what it is is because > nobody needed anything bigger. Increasing the size doesn't really > cost much at least on 64bit archs. Is that something we want to be > considering? For devmap (and cpumap) itself it wouldn't make sense. For per-cpu hashtable we could indeed consider it in the future. Thanks, Daniel