Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753118Ab1DSXje (ORCPT ); Tue, 19 Apr 2011 19:39:34 -0400 Received: from zene.cmpxchg.org ([85.214.230.12]:44549 "EHLO zene.cmpxchg.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752911Ab1DSXjd (ORCPT ); Tue, 19 Apr 2011 19:39:33 -0400 Date: Wed, 20 Apr 2011 01:39:05 +0200 From: Johannes Weiner To: Mel Gorman Cc: Andrew Morton , Nick Piggin , Hugh Dickins , linux-mm@kvack.org, linux-kernel@vger.kernel.org Subject: Re: [patch] mm/vmalloc: remove block allocation bitmap Message-ID: <20110419233905.GA2333@cmpxchg.org> References: <20110414211656.GB1700@cmpxchg.org> <20110419093118.GB23041@csn.ul.ie> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20110419093118.GB23041@csn.ul.ie> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 3127 Lines: 71 On Tue, Apr 19, 2011 at 10:31:18AM +0100, Mel Gorman wrote: > On Thu, Apr 14, 2011 at 05:16:56PM -0400, Johannes Weiner wrote: > > Space in a vmap block that was once allocated is considered dirty and > > not made available for allocation again before the whole block is > > recycled. > > > > The result is that free space within a vmap block is always contiguous > > and the allocation bitmap can be replaced by remembering the offset of > > free space in the block. > > > > The fragmented block purging was never invoked from vb_alloc() either, > > as it skips blocks that do not have enough free space for the > > allocation in the first place. According to the above, it is > > impossible for a block to have enough free space and still fail the > > allocation. Thus, this dead code is removed. Partially consumed > > blocks will be reclaimed anyway when an attempt is made to allocate a > > new vmap block altogether and no free space is found. > > > > Signed-off-by: Johannes Weiner > > Cc: Nick Piggin > > Cc: Mel Gorman > > Cc: Hugh Dickins > > I didn't see a problem with the patch per-se but I wonder if your patch > is the intended behaviour. It looks like the intention was that dirty > blocks could be flushed from the TLB and made available for allocations > leading to the possibility of fragmented vmap blocks. > > It's this check that is skipping over blocks without taking dirty into > account. > > spin_lock(&vb->lock); > if (vb->free < 1UL << order) > goto next; > > It was introduced by [02b709d: mm: purge fragmented percpu vmap blocks] > but is there any possibility that this is what should be fixed instead? I would like to emphasize that the quoted check only made it clear that the allocation bitmap is superfluous. There is no partial recycling of a block with live allocations, not even before this commit. > Do we know what the consequences of blocks only getting flushed when > they have been fully allocated are? Note that it can get recycled earlier if there is no outstanding allocation on it, even if only a small amount of it is dirty (the purge_fragmented_blocks code does this). A single outstanding allocation prevents the block from being recycled, blocking the reuse of the dirty area. Theoretically, we could end up with all possible vmap blocks being pinned by single allocations with most of their area being dirty and not reusable. But I believe this is unlikely to happen. Would you be okay with printing out block usage statistics on allocation errors for the time being, so we can identify this case if problems show up? And consider this patch an optimization/simplification of a status quo that does not appear problematic? We can still revert it and implement live block recycling when it turns out to be necessary. Hannes -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/