Home
last modified time | relevance | path

Searched refs:erase_low (Results 1 – 2 of 2) sorted by relevance

/linux-6.12.1/kernel/
Dstackleak.c73 static __always_inline void __stackleak_poison(unsigned long erase_low, in __stackleak_poison() argument
77 while (erase_low < erase_high) { in __stackleak_poison()
78 *(unsigned long *)erase_low = poison; in __stackleak_poison()
79 erase_low += sizeof(unsigned long); in __stackleak_poison()
88 unsigned long erase_low, erase_high; in __stackleak_erase() local
90 erase_low = stackleak_find_top_of_poison(task_stack_low, in __stackleak_erase()
94 current->prev_lowest_stack = erase_low; in __stackleak_erase()
115 __stackleak_poison(erase_low, erase_high, STACKLEAK_POISON); in __stackleak_erase()
/linux-6.12.1/arch/s390/include/asm/
Dprocessor.h144 static __always_inline void __stackleak_poison(unsigned long erase_low, in __stackleak_poison() argument
150 count = erase_high - erase_low; in __stackleak_poison()
172 : [addr] "+&a" (erase_low), [count] "+&d" (count), [tmp] "=&a" (tmp) in __stackleak_poison()