We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3ae221b commit 232ee4cCopy full SHA for 232ee4c
kernel/base/hotpatch.c
@@ -100,7 +100,7 @@ static inline int is_interrupt_masked()
100
unsigned long daif;
101
asm volatile("mrs %0, daif" : "=r"(daif));
102
// https://developer.arm.com/documentation/ddi0601/latest/AArch64-Registers/DAIF--Interrupt-Mask-Bits
103
- return (daif & 0xC0) == 0xC0;
+ return daif & 0xC0;
104
}
105
106
int hotpatch(void *addrs[], uint32_t values[], int cnt)
version
@@ -1,3 +1,3 @@
1
#define MAJOR 0
2
#define MINOR 12
3
-#define PATCH 8
+#define PATCH 9
0 commit comments