2
0
mirror of https://github.com/edk2-porting/linux-next.git synced 2024-12-19 02:34:01 +08:00

arch/um: partially revert the conversion to __section() macro

A couple of um files ended up not including the header file that defines
the __section() macro, and the simplest fix is to just revert the change
for those files.

Fixes: 33def8498f treewide: Convert macro and uses of __section(foo) to __section("foo")
Reported-and-tested-by: Guenter Roeck <linux@roeck-us.net>
Cc: Joe Perches <joe@perches.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
Linus Torvalds 2020-10-26 15:39:37 -07:00
parent 41ba50b057
commit bf9a76a470
2 changed files with 2 additions and 2 deletions

View File

@ -21,7 +21,7 @@
* on some systems. * on some systems.
*/ */
void __section(".__syscall_stub") void __attribute__ ((__section__ (".__syscall_stub")))
stub_clone_handler(void) stub_clone_handler(void)
{ {
struct stub_data *data = (struct stub_data *) STUB_DATA; struct stub_data *data = (struct stub_data *) STUB_DATA;

View File

@ -8,7 +8,7 @@
#include <sysdep/mcontext.h> #include <sysdep/mcontext.h>
#include <sys/ucontext.h> #include <sys/ucontext.h>
void __section(".__syscall_stub") void __attribute__ ((__section__ (".__syscall_stub")))
stub_segv_handler(int sig, siginfo_t *info, void *p) stub_segv_handler(int sig, siginfo_t *info, void *p)
{ {
ucontext_t *uc = p; ucontext_t *uc = p;