public inbox for linux-sgx@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/4] x86/sgx: Move struct sgx_vepc definition to sgx.h
@ 2022-05-10  3:17 Zhiquan Li
  2022-05-11 10:31 ` Jarkko Sakkinen
  0 siblings, 1 reply; 3+ messages in thread
From: Zhiquan Li @ 2022-05-10  3:17 UTC (permalink / raw)
  To: linux-sgx, tony.luck; +Cc: jarkko, dave.hansen, seanjc, fan.du, zhiquan1.li

Move struct sgx_vepc definition to sgx.h so that it can be used outside
of virt.c.

Signed-off-by: Zhiquan Li <zhiquan1.li@intel.com>
---
 arch/x86/kernel/cpu/sgx/sgx.h  | 5 +++++
 arch/x86/kernel/cpu/sgx/virt.c | 5 -----
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/arch/x86/kernel/cpu/sgx/sgx.h b/arch/x86/kernel/cpu/sgx/sgx.h
index 0f17def9fe6f..83ff8c3e81cf 100644
--- a/arch/x86/kernel/cpu/sgx/sgx.h
+++ b/arch/x86/kernel/cpu/sgx/sgx.h
@@ -101,4 +101,9 @@ static inline int __init sgx_vepc_init(void)
 
 void sgx_update_lepubkeyhash(u64 *lepubkeyhash);
 
+struct sgx_vepc {
+	struct xarray page_array;
+	struct mutex lock;
+};
+
 #endif /* _X86_SGX_H */
diff --git a/arch/x86/kernel/cpu/sgx/virt.c b/arch/x86/kernel/cpu/sgx/virt.c
index 6a77a14eee38..c9c8638b5dc4 100644
--- a/arch/x86/kernel/cpu/sgx/virt.c
+++ b/arch/x86/kernel/cpu/sgx/virt.c
@@ -18,11 +18,6 @@
 #include "encls.h"
 #include "sgx.h"
 
-struct sgx_vepc {
-	struct xarray page_array;
-	struct mutex lock;
-};
-
 /*
  * Temporary SECS pages that cannot be EREMOVE'd due to having child in other
  * virtual EPC instances, and the lock to protect it.
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH 1/4] x86/sgx: Move struct sgx_vepc definition to sgx.h
  2022-05-10  3:17 [PATCH 1/4] x86/sgx: Move struct sgx_vepc definition to sgx.h Zhiquan Li
@ 2022-05-11 10:31 ` Jarkko Sakkinen
  2022-05-12 12:10   ` Zhiquan Li
  0 siblings, 1 reply; 3+ messages in thread
From: Jarkko Sakkinen @ 2022-05-11 10:31 UTC (permalink / raw)
  To: Zhiquan Li; +Cc: linux-sgx, tony.luck, dave.hansen, seanjc, fan.du

On Tue, May 10, 2022 at 11:17:25AM +0800, Zhiquan Li wrote:
> Move struct sgx_vepc definition to sgx.h so that it can be used outside
> of virt.c.
> 
> Signed-off-by: Zhiquan Li <zhiquan1.li@intel.com>
> ---
>  arch/x86/kernel/cpu/sgx/sgx.h  | 5 +++++
>  arch/x86/kernel/cpu/sgx/virt.c | 5 -----
>  2 files changed, 5 insertions(+), 5 deletions(-)
> 
> diff --git a/arch/x86/kernel/cpu/sgx/sgx.h b/arch/x86/kernel/cpu/sgx/sgx.h
> index 0f17def9fe6f..83ff8c3e81cf 100644
> --- a/arch/x86/kernel/cpu/sgx/sgx.h
> +++ b/arch/x86/kernel/cpu/sgx/sgx.h
> @@ -101,4 +101,9 @@ static inline int __init sgx_vepc_init(void)
>  
>  void sgx_update_lepubkeyhash(u64 *lepubkeyhash);
>  
> +struct sgx_vepc {
> +	struct xarray page_array;
> +	struct mutex lock;
> +};

Would not BTW hurt to add some documentation for this struct, while at it.
Nothing wrong with the code change itself but what about adding a brief
explanation what it is?

> +
>  #endif /* _X86_SGX_H */
> diff --git a/arch/x86/kernel/cpu/sgx/virt.c b/arch/x86/kernel/cpu/sgx/virt.c
> index 6a77a14eee38..c9c8638b5dc4 100644
> --- a/arch/x86/kernel/cpu/sgx/virt.c
> +++ b/arch/x86/kernel/cpu/sgx/virt.c
> @@ -18,11 +18,6 @@
>  #include "encls.h"
>  #include "sgx.h"
>  
> -struct sgx_vepc {
> -	struct xarray page_array;
> -	struct mutex lock;
> -};
> -
>  /*
>   * Temporary SECS pages that cannot be EREMOVE'd due to having child in other
>   * virtual EPC instances, and the lock to protect it.
> -- 
> 2.25.1
> 

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH 1/4] x86/sgx: Move struct sgx_vepc definition to sgx.h
  2022-05-11 10:31 ` Jarkko Sakkinen
@ 2022-05-12 12:10   ` Zhiquan Li
  0 siblings, 0 replies; 3+ messages in thread
From: Zhiquan Li @ 2022-05-12 12:10 UTC (permalink / raw)
  To: Jarkko Sakkinen
  Cc: linux-sgx, tony.luck, dave.hansen, seanjc, fan.du, zhiquan1.li


On 2022/5/11 18:31, Jarkko Sakkinen wrote:
> On Tue, May 10, 2022 at 11:17:25AM +0800, Zhiquan Li wrote:
>> Move struct sgx_vepc definition to sgx.h so that it can be used outside
>> of virt.c.
>>
>> Signed-off-by: Zhiquan Li <zhiquan1.li@intel.com>
>> ---
>>  arch/x86/kernel/cpu/sgx/sgx.h  | 5 +++++
>>  arch/x86/kernel/cpu/sgx/virt.c | 5 -----
>>  2 files changed, 5 insertions(+), 5 deletions(-)
>>
>> diff --git a/arch/x86/kernel/cpu/sgx/sgx.h b/arch/x86/kernel/cpu/sgx/sgx.h
>> index 0f17def9fe6f..83ff8c3e81cf 100644
>> --- a/arch/x86/kernel/cpu/sgx/sgx.h
>> +++ b/arch/x86/kernel/cpu/sgx/sgx.h
>> @@ -101,4 +101,9 @@ static inline int __init sgx_vepc_init(void)
>>  
>>  void sgx_update_lepubkeyhash(u64 *lepubkeyhash);
>>  
>> +struct sgx_vepc {
>> +	struct xarray page_array;
>> +	struct mutex lock;
>> +};
> 
> Would not BTW hurt to add some documentation for this struct, while at it.
> Nothing wrong with the code change itself but what about adding a brief
> explanation what it is?

No problem, I will add some documentation in v2 patch.

Best Regards,
Zhiquan

> 
>> +
>>  #endif /* _X86_SGX_H */
>> diff --git a/arch/x86/kernel/cpu/sgx/virt.c b/arch/x86/kernel/cpu/sgx/virt.c
>> index 6a77a14eee38..c9c8638b5dc4 100644
>> --- a/arch/x86/kernel/cpu/sgx/virt.c
>> +++ b/arch/x86/kernel/cpu/sgx/virt.c
>> @@ -18,11 +18,6 @@
>>  #include "encls.h"
>>  #include "sgx.h"
>>  
>> -struct sgx_vepc {
>> -	struct xarray page_array;
>> -	struct mutex lock;
>> -};
>> -
>>  /*
>>   * Temporary SECS pages that cannot be EREMOVE'd due to having child in other
>>   * virtual EPC instances, and the lock to protect it.
>> -- 
>> 2.25.1
>>

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2022-05-12 12:10 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-05-10  3:17 [PATCH 1/4] x86/sgx: Move struct sgx_vepc definition to sgx.h Zhiquan Li
2022-05-11 10:31 ` Jarkko Sakkinen
2022-05-12 12:10   ` Zhiquan Li

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox