projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5f501d5
)
ELF: simplify STACK_ALLOC macro
author
Alexey Dobriyan
<adobriyan@gmail.com>
Tue, 9 Nov 2021 02:33:40 +0000
(18:33 -0800)
committer
Linus Torvalds
<torvalds@linux-foundation.org>
Tue, 9 Nov 2021 18:02:50 +0000
(10:02 -0800)
"A -= B; A" is equivalent to "A -= B".
Link:
https://lkml.kernel.org/r/YVmcP256fRMqCwgK@localhost.localdomain
Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
fs/binfmt_elf.c
patch
|
blob
|
history
diff --git
a/fs/binfmt_elf.c
b/fs/binfmt_elf.c
index 7537a19f04845531b44678675359a7b70e0329e0..824e26a35b77d6572b324024769fa9bf58558d8e 100644
(file)
--- a/
fs/binfmt_elf.c
+++ b/
fs/binfmt_elf.c
@@
-156,7
+156,7
@@
static int padzero(unsigned long elf_bss)
#define STACK_ADD(sp, items) ((elf_addr_t __user *)(sp) - (items))
#define STACK_ROUND(sp, items) \
(((unsigned long) (sp - items)) &~ 15UL)
-#define STACK_ALLOC(sp, len) (
{ sp -= len ; sp; }
)
+#define STACK_ALLOC(sp, len) (
sp -= len
)
#endif
#ifndef ELF_BASE_PLATFORM