Home
last modified time | relevance | path

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

/Linux-v6.6/arch/x86/include/asm/
Dalternative.h303 #define alternative_call(oldfunc, newfunc, ft_flags, output, input...) \ argument
305 : output : [old] "i" (oldfunc), [new] "i" (newfunc), ## input)
313 #define alternative_call_2(oldfunc, newfunc1, ft_flags1, newfunc2, ft_flags2, \ argument
318 : [old] "i" (oldfunc), [new1] "i" (newfunc1), \
/Linux-v6.6/scripts/
Dcheckpatch.pl7214 my $oldfunc = $3;
7218 $newfunc = "kvmalloc_array" if ($oldfunc eq "kvmalloc");
7219 $newfunc = "kvcalloc" if ($oldfunc eq "kvzalloc");
7220 $newfunc = "kcalloc" if ($oldfunc eq "kzalloc");
7233 "Prefer $newfunc over $oldfunc with multiply\n" . $herectx) &&