From mboxrd@z Thu Jan 1 00:00:00 1970 From: Tim Deegan Subject: Re: [PATCH v3 03/10] nested_ept: Implement guest ept's walker Date: Thu, 10 Jan 2013 11:19:37 +0000 Message-ID: <20130110111937.GA99373@ocelot.phlegethon.org> References: <1356018231-26440-1-git-send-email-xiantao.zhang@intel.com> <1356018231-26440-4-git-send-email-xiantao.zhang@intel.com> <20121220125137.GJ80837@ocelot.phlegethon.org> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Content-Disposition: inline In-Reply-To: List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xen.org Errors-To: xen-devel-bounces@lists.xen.org To: "Zhang, Xiantao" Cc: "Dong, Eddie" , "keir@xen.org" , "JBeulich@suse.com" , "Nakajima, Jun" , "xen-devel@lists.xen.org" List-Id: xen-devel@lists.xenproject.org At 09:01 +0000 on 24 Dec (1356339693), Zhang, Xiantao wrote: > > > +typedef enum { > > > + ept_access_n = 0, /* No access permissions allowed */ > > > + ept_access_r = 1, > > > + ept_access_w = 2, > > > + ept_access_rw = 3, > > > + ept_access_x = 4, > > > + ept_access_rx = 5, > > > + ept_access_wx = 6, > > > + ept_access_all = 7, > > > +} ept_access_t; > > > > This enum isn't used anywhere. > > Actually, it is used in the function nept_rwx_bits_check. :) Oops - so it is. :) Tim.