Home
last modified time | relevance | path

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

/Linux-v5.4/arch/arm64/kernel/
Dtraps.c313 __le32 instr_le; in call_undef_hook() local
314 if (probe_kernel_address((__force __le32 *)pc, instr_le)) in call_undef_hook()
316 instr = le32_to_cpu(instr_le); in call_undef_hook()
319 __le16 instr_le; in call_undef_hook() local
320 if (get_user(instr_le, (__le16 __user *)pc)) in call_undef_hook()
322 instr = le16_to_cpu(instr_le); in call_undef_hook()
326 if (get_user(instr_le, (__le16 __user *)(pc + 2))) in call_undef_hook()
328 instr2 = le16_to_cpu(instr_le); in call_undef_hook()
333 __le32 instr_le; in call_undef_hook() local
334 if (get_user(instr_le, (__le32 __user *)pc)) in call_undef_hook()
[all …]