Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756897Ab3ENOzn (ORCPT ); Tue, 14 May 2013 10:55:43 -0400 Received: from cantor2.suse.de ([195.135.220.15]:46523 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751321Ab3ENOzl (ORCPT ); Tue, 14 May 2013 10:55:41 -0400 Date: Tue, 14 May 2013 15:55:37 +0100 From: Mel Gorman To: Dave Hansen Cc: linux-mm@kvack.org, linux-kernel@vger.kernel.org, akpm@linux-foundation.org, tim.c.chen@linux.intel.com Subject: Re: [RFC][PATCH 1/7] defer clearing of page_private() for swap cache pages Message-ID: <20130514145537.GS11497@suse.de> References: <20130507211954.9815F9D1@viggo.jf.intel.com> <20130507211955.7DF88A4F@viggo.jf.intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-15 Content-Disposition: inline In-Reply-To: <20130507211955.7DF88A4F@viggo.jf.intel.com> User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1566 Lines: 40 On Tue, May 07, 2013 at 02:19:55PM -0700, Dave Hansen wrote: > > From: Dave Hansen > > There are only two callers of swapcache_free() which actually > pass in a non-NULL 'struct page'. Both of them > (__remove_mapping and delete_from_swap_cache()) create a > temporary on-stack 'swp_entry_t' and set entry.val to > page_private(). > > They need to do this since __delete_from_swap_cache() does > set_page_private(page, 0) and destroys the information. > > However, I'd like to batch a few of these operations on several > pages together in a new version of __remove_mapping(), and I > would prefer not to have to allocate temporary storage for > each page. The code is pretty ugly, and it's a bit silly > to create these on-stack 'swp_entry_t's when it is so easy to > just keep the information around in 'struct page'. > > There should not be any danger in doing this since we are > absolutely on the path of freeing these page. There is no > turning back, and no other rerferences can be obtained > after it comes out of the radix tree. > > Signed-off-by: Dave Hansen On it's own, this patch looks like it has a lot missing but when combined with patch 2, it starts making sense so Acked-by: Mel Gorman -- Mel Gorman SUSE Labs -- 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/