Home
last modified time | relevance | path

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

/linux-5.19.10/arch/arm64/kernel/
Dtraps.c405 __le32 instr_le; in call_undef_hook() local
406 if (get_kernel_nofault(instr_le, (__le32 *)pc)) in call_undef_hook()
408 instr = le32_to_cpu(instr_le); in call_undef_hook()
411 __le16 instr_le; in call_undef_hook() local
412 if (get_user(instr_le, (__le16 __user *)pc)) in call_undef_hook()
414 instr = le16_to_cpu(instr_le); in call_undef_hook()
418 if (get_user(instr_le, (__le16 __user *)(pc + 2))) in call_undef_hook()
420 instr2 = le16_to_cpu(instr_le); in call_undef_hook()
425 __le32 instr_le; in call_undef_hook() local
426 if (get_user(instr_le, (__le32 __user *)pc)) in call_undef_hook()
[all …]