Skip to content

Commit a449ffa

Browse files
willdeaconkonradwilk
authored andcommitted
powerpc/svm: Don't issue ultracalls if !mem_encrypt_active()
Commit ad6c002 ("swiotlb: Free tbl memory in swiotlb_exit()") introduced a set_memory_encrypted() call to swiotlb_exit() so that the buffer pages are returned to an encrypted state prior to being freed. Sachin reports that this leads to the following crash on a Power server: [ 0.010799] software IO TLB: tearing down default memory pool [ 0.010805] ------------[ cut here ]------------ [ 0.010808] kernel BUG at arch/powerpc/kernel/interrupt.c:98! Nick spotted that this is because set_memory_encrypted() is issuing an ultracall which doesn't exist for the processor, and should therefore be gated by mem_encrypt_active() to mirror the x86 implementation. Cc: Konrad Rzeszutek Wilk <[email protected]> Cc: Claire Chang <[email protected]> Cc: Christoph Hellwig <[email protected]> Cc: Robin Murphy <[email protected]> Fixes: ad6c002 ("swiotlb: Free tbl memory in swiotlb_exit()") Suggested-by: Nicholas Piggin <[email protected]> Reported-by: Sachin Sant <[email protected]> Tested-by: Sachin Sant <[email protected]> Tested-by: Nathan Chancellor <[email protected]> Link: https://lore.kernel.org/r/[email protected]/ Signed-off-by: Will Deacon <[email protected]> Signed-off-by: Konrad Rzeszutek Wilk <[email protected]>
1 parent 93ebb68 commit a449ffa

File tree

1 file changed

+6
-0
lines changed
  • arch/powerpc/platforms/pseries

1 file changed

+6
-0
lines changed

arch/powerpc/platforms/pseries/svm.c

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,9 @@ void __init svm_swiotlb_init(void)
6363

6464
int set_memory_encrypted(unsigned long addr, int numpages)
6565
{
66+
if (!mem_encrypt_active())
67+
return 0;
68+
6669
if (!PAGE_ALIGNED(addr))
6770
return -EINVAL;
6871

@@ -73,6 +76,9 @@ int set_memory_encrypted(unsigned long addr, int numpages)
7376

7477
int set_memory_decrypted(unsigned long addr, int numpages)
7578
{
79+
if (!mem_encrypt_active())
80+
return 0;
81+
7682
if (!PAGE_ALIGNED(addr))
7783
return -EINVAL;
7884

0 commit comments

Comments
 (0)