From mboxrd@z Thu Jan 1 00:00:00 1970 From: Zoltan Kiss Subject: Re: [PATCH v6] xen/grant-table: Avoid m2p_override during mapping Date: Fri, 24 Jan 2014 17:20:06 +0000 Message-ID: <52E2A0C6.4030801@citrix.com> References: <1390512224-27296-1-git-send-email-zoltan.kiss@citrix.com> <20140124054828.GA18522@u109add4315675089e695.ant.amazon.com> Mime-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1"; format=flowed Content-Transfer-Encoding: 7bit Cc: , , , , , , Anthony Liguori , Matt Wilson To: Matt Wilson Return-path: In-Reply-To: <20140124054828.GA18522@u109add4315675089e695.ant.amazon.com> Sender: linux-kernel-owner@vger.kernel.org List-Id: netdev.vger.kernel.org On 24/01/14 05:48, Matt Wilson wrote: > On Thu, Jan 23, 2014 at 09:23:44PM +0000, Zoltan Kiss wrote: > Apologies for coming in late on this thread. I'm quite behind on > xen-devel mail that isn't CC: to me. > > It seems to have been forgotten that Anthony and I proposed a similar > change last November. > > https://lkml.kernel.org/r/1384307336-5328-1-git-send-email-anthony@codemonkey.ws > > Or am I misunderstanding the change? I didn't know about this patch, but yes, both of them do basically the same. One subtle difference that you store the old mfn in page->private, while my patch keeps the original behaviour, and store it in page->index. page->private is used instead to store the new mfn we got from Xen, however I haven't checked where do we use that. Your approach might be better, we also talked with David that we should stop using page->index, as e.g. with the netback grant mapping patches I spent a lot of time to figure out a packet drop issue, which eventually boiled down to the fact that index is in union with pfmemalloc, and if you don't set mapping, the local IP stack will think it is a pfmemalloc page. (see the comment in my second patch, xenvif_fill_frags) However I think that should be a separate patch, I tried to keep the original behaviour as much as possible, and focus just on avoiding m2p_override when possible. Regards, Zoli