Home
last modified time | relevance | path

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

/linux-6.1.9/arch/x86/kernel/
Dalternative.c108 unsigned int noplen = len; in add_nops() local
109 if (noplen > ASM_NOP_MAX) in add_nops()
110 noplen = ASM_NOP_MAX; in add_nops()
111 memcpy(insns, x86_nops[noplen], noplen); in add_nops()
112 insns += noplen; in add_nops()
113 len -= noplen; in add_nops()
/linux-6.1.9/arch/x86/net/
Dbpf_jit_comp.c878 int i, noplen; in emit_nops() local
881 noplen = len; in emit_nops()
883 if (noplen > ASM_NOP_MAX) in emit_nops()
884 noplen = ASM_NOP_MAX; in emit_nops()
886 for (i = 0; i < noplen; i++) in emit_nops()
887 EMIT1(x86_nops[noplen][i]); in emit_nops()
888 len -= noplen; in emit_nops()