]> git.baikalelectronics.ru Git - kernel.git/commit
x86/alternatives: Fixup alternative_call_2
authorAlexey Dobriyan <adobriyan@gmail.com>
Sun, 14 Jan 2018 12:05:04 +0000 (15:05 +0300)
committerThomas Gleixner <tglx@linutronix.de>
Tue, 27 Mar 2018 07:47:53 +0000 (09:47 +0200)
commit5907ab287c71524306758a4e9ad95d0500e12e4c
treea99a7ff2769c63c7060aac99ad38a2637f88aef1
parent91ff7360de13dd0e293b325e84aedd3d416fdc2e
x86/alternatives: Fixup alternative_call_2

The following pattern fails to compile while the same pattern
with alternative_call() does:

if (...)
alternative_call_2(...);
else
alternative_call_2(...);

as it expands into

if (...)
{
}; <===
else
{
};

Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Acked-by: Borislav Petkov <bp@suse.de>
Link: https://lkml.kernel.org/r/20180114120504.GA11368@avx2
arch/x86/include/asm/alternative.h