Home
last modified time | relevance | path

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

/Linux-v5.15/arch/x86/kernel/
Dalternative.c107 unsigned int noplen = len; in add_nops() local
108 if (noplen > ASM_NOP_MAX) in add_nops()
109 noplen = ASM_NOP_MAX; in add_nops()
110 memcpy(insns, x86_nops[noplen], noplen); in add_nops()
111 insns += noplen; in add_nops()
112 len -= noplen; in add_nops()
/Linux-v5.15/arch/x86/net/
Dbpf_jit_comp.c864 int i, noplen; in emit_nops() local
867 noplen = len; in emit_nops()
869 if (noplen > ASM_NOP_MAX) in emit_nops()
870 noplen = ASM_NOP_MAX; in emit_nops()
872 for (i = 0; i < noplen; i++) in emit_nops()
873 EMIT1(x86_nops[noplen][i]); in emit_nops()
874 len -= noplen; in emit_nops()