From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753719AbdLDI77 (ORCPT ); Mon, 4 Dec 2017 03:59:59 -0500 Received: from mga14.intel.com ([192.55.52.115]:2775 "EHLO mga14.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753414AbdLDI74 (ORCPT ); Mon, 4 Dec 2017 03:59:56 -0500 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.45,358,1508828400"; d="scan'208";a="15089071" Date: Mon, 4 Dec 2017 10:59:50 +0200 From: Jarkko Sakkinen To: Sean Christopherson Cc: platform-driver-x86@vger.kernel.org, x86@kernel.org, linux-kernel@vger.kernel.org, Thomas Gleixner , Ingo Molnar , "H. Peter Anvin" , Darren Hart , Andy Shevchenko Subject: Re: [PATCH v6 06/11] intel_sgx: driver for Intel Software Guard Extensions Message-ID: <20171204085950.dnjsec6xdihhpwbb@linux.intel.com> References: <20171125193132.24321-7-jarkko.sakkinen@linux.intel.com> <20171130173200.GA11190@linux.intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20171130173200.GA11190@linux.intel.com> Organization: Intel Finland Oy - BIC 0357606-4 - Westendinkatu 7, 02160 Espoo User-Agent: NeoMutt/20170609 (1.8.3) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thu, Nov 30, 2017 at 09:32:01AM -0800, Sean Christopherson wrote: > On Sat, Nov 25, 2017 at 09:29:24PM +0200, Jarkko Sakkinen wrote: > > +static void *sgx_try_alloc_page(void) > > +{ > > + struct sgx_epc_bank *bank; > > + void *page = NULL; > > + int i; > > + > > + for (i = 0; i < sgx_nr_epc_banks; i++) { > > + bank = &sgx_epc_banks[i]; > > + > > + down_write(&bank->lock); > > Is a R/W semaphore actually preferable to a spinlock? Concurrent > free calls don't seem that interesting/beneficial because freeing > an enclave's pages isn't multiplexed across multiple CPUs, unlike > the allocation of EPC pages. I get about ~10-15% performance increase on high stress. It is benefical to spinlock. > As a whole, I'm not a fan of packing the EPC page pointers into an > array rather than encapsulating them in a struct+list. The primary > benefit I see for the array approach is that it saves ~8 bytes per > free EPC page, but at a cost of increased memory usage for in-use > pages and severely restricting the ability to enhance/modify how > EPC pages are tracked, reclaimed, etc... This is not true. You can put EPC page descriptor to any structure you want. list_head can be dropped from struct sgx_enc_page too. > The main issue is that the array approach relies on the caller to > handle reclaim. This effectively makes it impossible to reclaim > pages from multiple processes, requires other consumers e.g. KVM > to implement their own reclaim logic and kthread, and prevents > cgroup accounting because the cgroup can't initiate reclaim. Not really following here. /Jarkko