Return-Path: Received: from nbfkord-smmo04.seg.att.com ([209.65.160.86]:44983 "EHLO nbfkord-smmo04.seg.att.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S933098AbcIVP3w (ORCPT ); Thu, 22 Sep 2016 11:29:52 -0400 Subject: Re: [PATCH net-next 2/3] udp: implement memory accounting helpers To: Paolo Abeni , Eric Dumazet References: <93ccb49b7f037461ef436a50b907185744b093d8.1474477902.git.pabeni@redhat.com> <1474500682.23058.88.camel@edumazet-glaptop3.roam.corp.google.com> <1474540415.4845.69.camel@redhat.com> CC: , "David S. Miller" , "James Morris" , Trond Myklebust , Alexander Duyck , Daniel Borkmann , Eric Dumazet , Tom Herbert , Hannes Frederic Sowa , From: Edward Cree Message-ID: <589839b3-5930-2527-b0a3-315be254a175@solarflare.com> Date: Thu, 22 Sep 2016 16:21:00 +0100 MIME-Version: 1.0 In-Reply-To: <1474540415.4845.69.camel@redhat.com> Content-Type: text/plain; charset="utf-8" Sender: linux-nfs-owner@vger.kernel.org List-ID: On 22/09/16 11:33, Paolo Abeni wrote: > Hi Eric, > > On Wed, 2016-09-21 at 16:31 -0700, Eric Dumazet wrote: >> Also does inet_diag properly give the forward_alloc to user ? >> >> $ ss -mua >> State Recv-Q Send-Q Local Address:Port Peer Addres >> s:Port >> UNCONN 51584 0 *:52460 *:* >> skmem:(r51584,rb327680,t0,tb327680,f1664,w0,o0,bl0,d575) > Thank you very much for reviewing this! > > My bad, there is still a race which leads to temporary negative values > of fwd. I feel the fix is trivial but it needs some investigation. > >> Couldn't we instead use an union of an atomic_t and int for >> sk->sk_forward_alloc ? > That was our first attempt, but we had some issue on mem scheduling; if > we use: > > if (atomic_sub_return(size, &sk->sk_forward_alloc_atomic) < 0) { > // fwd alloc > } > > that leads to inescapable, temporary, negative value for > sk->sk_forward_alloc. > > Another option would be: > > again: > fwd = atomic_read(&sk->sk_forward_alloc_atomic); > if (fwd > size) { > if (atomic_cmpxchg(&sk->sk_forward_alloc_atomic, fwd, fwd - size) != fwd) > goto again; > } else > // fwd alloc > > which would be bad under high contention. Apologies if I'm misunderstanding the problem, but couldn't you have two atomic_t fields, 'internal' and 'external' forward_alloc. Then if (atomic_sub_return(size, &sk->sk_forward_alloc_internal) < 0) { atomic_sub(size, &sk->sk_forward_alloc); // fwd alloc } else { atomic_add(size, &sk->sk_forward_alloc_internal); } or something like that. Then sk->sk_forward_alloc never sees a negative value, and is always >= sk->sk_forward_alloc_internal. Of course places that go the other way would have to add to sk->sk_forward_alloc first, before adding to sk->sk_forward_alloc_internal, to maintain that invariant. Would that help matters at all? -Ed