From 370a3d4677661ab0b8cafb1e4a9a0b3640330f99 Mon Sep 17 00:00:00 2001 From: Jarkko Sakkinen Date: Sat, 21 Oct 2023 18:57:59 +0300 Subject: [PATCH] driver: Remove orphaned fields "user_vaddr" and "runtime_vaddr" in struct keystone_ioctl_enclave have no use. They are neither used by the SDK nor the driver. Remove them. Signed-off-by: Jarkko Sakkinen --- linux-keystone-driver/keystone_user.h | 3 --- sdk/include/host/keystone_user.h | 3 --- 2 files changed, 6 deletions(-) diff --git a/linux-keystone-driver/keystone_user.h b/linux-keystone-driver/keystone_user.h index 7f0da7c11..3890fa71e 100644 --- a/linux-keystone-driver/keystone_user.h +++ b/linux-keystone-driver/keystone_user.h @@ -44,9 +44,6 @@ struct keystone_ioctl_create_enclave { uintptr_t min_pages; // virtual addresses - uintptr_t runtime_vaddr; - uintptr_t user_vaddr; - uintptr_t pt_ptr; uintptr_t utm_free_ptr; diff --git a/sdk/include/host/keystone_user.h b/sdk/include/host/keystone_user.h index 0680e6875..498899764 100644 --- a/sdk/include/host/keystone_user.h +++ b/sdk/include/host/keystone_user.h @@ -44,9 +44,6 @@ struct keystone_ioctl_create_enclave { uintptr_t min_pages; // virtual addresses - uintptr_t runtime_vaddr; - uintptr_t user_vaddr; - uintptr_t pt_ptr; uintptr_t utm_free_ptr;