Currently, after enclave initialization, EPC pages can only be added one page at a time on page fault. This may be too slow for some use cases in which large number of EPC pages are dynamically allocated. 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 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 refactors out 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 | 81 ++++++++++++ arch/x86/kernel/cpu/sgx/encl.c | 46 ++++--- arch/x86/kernel/cpu/sgx/encl.h | 3 +- tools/testing/selftests/sgx/defines.h | 1 + tools/testing/selftests/sgx/main.c | 167 ++++++++++++++++++++++++ tools/testing/selftests/sgx/test_encl.c | 20 ++- 6 files changed, 295 insertions(+), 23 deletions(-) -- 2.25.1