From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Vrabel Subject: [PATCH 0/2] xen/gntalloc: fix oopses after running out of grant refs Date: Tue, 2 Sep 2014 15:21:28 +0100 Message-ID: <1409667690-23914-1-git-send-email-david.vrabel@citrix.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Received: from mail6.bemta5.messagelabs.com ([195.245.231.135]) by lists.xen.org with esmtp (Exim 4.72) (envelope-from ) id 1XOoxx-0006t1-FC for xen-devel@lists.xenproject.org; Tue, 02 Sep 2014 14:21:49 +0000 List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xen.org Errors-To: xen-devel-bounces@lists.xen.org To: xen-devel@lists.xenproject.org Cc: Daniel De Graaf , Boris Ostrovsky , Dave Scott , David Vrabel List-Id: xen-devel@lists.xenproject.org These two patches fix oopses that happen if a grant failed because there are no free grant references. This would not happen on a typical system with the default options as the gntalloc device limits the number of pages that may be granted and this check fails first, but could be triggered on VM with many PV devices or if the limit is increase. David