Home
last modified time | relevance | path

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

/linux-6.6.21/arch/x86/kernel/
Dalternative.c1430 unsigned int noplen = len; in add_nops() local
1431 if (noplen > ASM_NOP_MAX) in add_nops()
1432 noplen = ASM_NOP_MAX; in add_nops()
1433 memcpy(insns, x86_nops[noplen], noplen); in add_nops()
1434 insns += noplen; in add_nops()
1435 len -= noplen; in add_nops()
/linux-6.6.21/arch/x86/net/
Dbpf_jit_comp.c944 int i, noplen; in emit_nops() local
947 noplen = len; in emit_nops()
949 if (noplen > ASM_NOP_MAX) in emit_nops()
950 noplen = ASM_NOP_MAX; in emit_nops()
952 for (i = 0; i < noplen; i++) in emit_nops()
953 EMIT1(x86_nops[noplen][i]); in emit_nops()
954 len -= noplen; in emit_nops()