V3: https://lore.kernel.org/linux-sgx/20221107220212.257422-1-haitao.huang@xxxxxxxxxxxxxxx/#t Changes since V3: - improve comments for return values of sgx_encl_eaug_page (Jarkko) - update selftests to set value for the len field of all EACCEPT ops (Jarkko) - remove unneeded check for 'encl' and reordered input checks and initialization of local vars in sgx_fadvise (Jarkko) V2: https://lore.kernel.org/linux-sgx/20221027194532.180053-1-haitao.huang@xxxxxxxxxxxxxxx/T/#t Changes since V2: - format changes and remove unneeded comments. (Jarkko) - use PFN_DOWN instead of ">> PAGE_SHIFT". (Jarkko) V1: https://lore.kernel.org/linux-sgx/20221019191413.48752-1-haitao.huang@xxxxxxxxxxxxxxx/T/#t Changes since V1: - Separate patch for exporting sgx_encl_eaug_page - Move return code changes for sgx_encl_eaug_page to the same patch implementing sgx_fadvise - Small improvement in commit messages and the cover letter Hi Everybody, The current SGX2 (EDMM) implementation in the kernel only adds an EPC page when a page fault is triggered on an address without EPC allocated. Although this is adquate for allocations of smaller address ranges or ranges with sparse accessing patterns, it is inefficient for other cases in which large number of EPC pages need be added and accessed immediately afterwards. Previously we have attempted [1] to address this issue by implementing support for the semantics of MAP_POPULATE flag passed into mmap(). However, some mm maintainers have concerns on adding a new callback in fops [2]. This series is to adopt the MADV_WILLNEED alternative suggested by Dave in previous discussions [3]. The sgx driver implements the fops->fadvise() so that user space will be able to use madvise(..., MADV_WILLNEED) to instruct kernel to EAUG pages as soon as possible for a given range. Compared to the MAP_POPULATE approach, this alternative requires an additional call to madvise() after mmap() from user space. But it would not need any changes in kernel outside the SGX driver. The separate madvise() call also offers flexibility for user space to specify a subrange to EAUG in an enclosing VMA. The core implementation is in the second patch while the first patch only exports a function handling EAUG on PF to be reused. The last two patches are to add a microbenchmark in the sgx selftest to measure the performance difference. Following speedup on various allocation sizes were observed when I ran it on a platform with 4G EPC. It indicates that the change would roughly half the run time until EPC swapping is activated, at which point EAUG for madvise is stopped. ------------------------- Alloc. size: Speedup ------------------------- 1 page : 75% 2 pages: 48% 4 pages: 55% 8 pages: 58% 16 pages: 62% 32 pages: 62% 64 pages: 62% 128 pages: 62% 256 pages: 73% 512 pages: 62% 1024 pages: 62% 2048 pages: 62% 4096 pages: 61% 8192 pages: 61% 16384 pages: 61% 32768 pages: 71% 65536 pages: 61% 131072 pages: 62% 262144 pages: 62% 524288 pages: 62% 1048576 pages: 55% 2097152 pages: 19% ------------------------- Thank you very much for your attention and any comments/feedback. Haitao [1]https://lore.kernel.org/all/20220308112833.262805-1-jarkko@xxxxxxxxxx/ [2]https://lore.kernel.org/linux-sgx/20220306021534.83553-1-jarkko@xxxxxxxxxx/ [3]https://lore.kernel.org/linux-sgx/c3083144-bfc1-3260-164c-e59b2d110df8@xxxxxxxxx/ Haitao Huang (4): x86/sgx: Export sgx_encl_eaug_page x86/sgx: Implement support for MADV_WILLNEED selftests/sgx: add len field for EACCEPT op selftests/sgx: Add test for madvise(..., WILLNEED) arch/x86/kernel/cpu/sgx/driver.c | 74 ++++++++++ arch/x86/kernel/cpu/sgx/encl.c | 59 ++++---- arch/x86/kernel/cpu/sgx/encl.h | 2 + tools/testing/selftests/sgx/defines.h | 1 + tools/testing/selftests/sgx/main.c | 182 ++++++++++++++++++++++++ tools/testing/selftests/sgx/test_encl.c | 18 ++- 6 files changed, 306 insertions(+), 30 deletions(-) -- 2.25.1