Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1033033AbbKEIRh (ORCPT ); Thu, 5 Nov 2015 03:17:37 -0500 Received: from mx2.suse.de ([195.135.220.15]:33055 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1030866AbbKEIRf (ORCPT ); Thu, 5 Nov 2015 03:17:35 -0500 Subject: Re: [PATCH 3/5] mm, page_owner: copy page owner info during migration To: Joonsoo Kim References: <1446649261-27122-1-git-send-email-vbabka@suse.cz> <1446649261-27122-4-git-send-email-vbabka@suse.cz> <20151105081005.GB25938@js1304-P5Q-DELUXE> Cc: linux-mm@kvack.org, linux-kernel@vger.kernel.org, Minchan Kim , Sasha Levin , "Kirill A. Shutemov" , Mel Gorman From: Vlastimil Babka Message-ID: <563B109D.6030001@suse.cz> Date: Thu, 5 Nov 2015 09:17:33 +0100 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.3.0 MIME-Version: 1.0 In-Reply-To: <20151105081005.GB25938@js1304-P5Q-DELUXE> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1567 Lines: 47 On 11/05/2015 09:10 AM, Joonsoo Kim wrote: > On Wed, Nov 04, 2015 at 04:00:59PM +0100, Vlastimil Babka wrote: >> +void __copy_page_owner(struct page *oldpage, struct page *newpage) >> +{ >> + struct page_ext *old_ext = lookup_page_ext(oldpage); >> + struct page_ext *new_ext = lookup_page_ext(newpage); >> + int i; >> + >> + new_ext->order = old_ext->order; >> + new_ext->gfp_mask = old_ext->gfp_mask; >> + new_ext->nr_entries = old_ext->nr_entries; >> + >> + for (i = 0; i < ARRAY_SIZE(new_ext->trace_entries); i++) >> + new_ext->trace_entries[i] = old_ext->trace_entries[i]; >> + >> + __set_bit(PAGE_EXT_OWNER, &new_ext->flags); >> +} >> + > > Need to clear PAGE_EXT_OWNER bit in oldppage. Hm, I thought that the freeing of the oldpage, which follows the migration, would take care of that. And if it hit some bug and dump_page before being freed, we would still have some info to print? Thanks > Thanks. > >> static ssize_t >> print_page_owner(char __user *buf, size_t count, unsigned long pfn, >> struct page *page, struct page_ext *page_ext) >> -- >> 2.6.2 >> >> -- >> To unsubscribe, send a message with 'unsubscribe linux-mm' in >> the body to majordomo@kvack.org. For more info on Linux MM, >> see: http://www.linux-mm.org/ . >> Don't email: email@kvack.org > -- 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/