selftests/powerpc: Fix core-pkey for default execute permission change
authorRam Pai <linuxram@us.ibm.com>
Tue, 17 Jul 2018 13:51:09 +0000 (06:51 -0700)
committerMichael Ellerman <mpe@ellerman.id.au>
Tue, 24 Jul 2018 12:02:29 +0000 (22:02 +1000)
Only when the key is allocated, its permission are enabled.

Reviewed-by: Thiago Jung Bauermann <bauerman@linux.ibm.com>
Signed-off-by: Ram Pai <linuxram@us.ibm.com>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
tools/testing/selftests/powerpc/ptrace/core-pkey.c

index 36bc312..e23e2e1 100644 (file)
@@ -140,6 +140,10 @@ static int child(struct shared_info *info)
 
        if (disable_execute)
                info->iamr |= 1ul << pkeyshift(pkey1);
+       else
+               info->iamr &= ~(1ul << pkeyshift(pkey1));
+
+       info->iamr &= ~(1ul << pkeyshift(pkey2) | 1ul << pkeyshift(pkey3));
 
        info->uamor |= 3ul << pkeyshift(pkey1) | 3ul << pkeyshift(pkey2);