Skip to content

Commit 48f282f

Browse files
committed
foo
1 parent eaba7a8 commit 48f282f

File tree

49 files changed

+1116
-66
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+1116
-66
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
From: Kees Cook <[email protected]>
2+
Subject: init/Kconfig: remove USELIB syscall by default
3+
4+
The uselib syscall has been long deprecated. There's no need to keep this
5+
enabled by default under X86_32.
6+
7+
Link: https://lkml.kernel.org/r/[email protected]
8+
Signed-off-by: Kees Cook <[email protected]>
9+
Cc: Nathan Chancellor <[email protected]>
10+
Cc: Masahiro Yamada <[email protected]>
11+
Signed-off-by: Andrew Morton <[email protected]>
12+
---
13+
14+
15+
--- a/init/Kconfig~init-kconfig-remove-uselib-syscall-by-default
16+
+++ a/init/Kconfig
17+
@@ -435,8 +435,8 @@ config CROSS_MEMORY_ATTACH
18+
See the man page for more details.
19+
20+
config USELIB
21+
- bool "uselib syscall"
22+
- def_bool ALPHA || M68K || SPARC || X86_32 || IA32_EMULATION
23+
+ bool "uselib syscall (for libc5 and earlier)"
24+
+ default ALPHA || M68K || SPARC
25+
help
26+
This option enables the uselib syscall, a system call used in the
27+
dynamic linker from libc5 and earlier. glibc does not use this
28+
_
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
From: Michal Orzel <[email protected]>
2+
Subject: ipc/sem: Remove redundant assignments
3+
4+
Get rid of redundant assignments which end up in values not being
5+
read either because they are overwritten or the function ends.
6+
7+
Reported by clang-tidy [deadcode.DeadStores]
8+
9+
Link: https://lkml.kernel.org/r/[email protected]
10+
Signed-off-by: Michal Orzel <[email protected]>
11+
Reviewed-by: Tom Rix <[email protected]>
12+
Reviewed-by: Nathan Chancellor <[email protected]>
13+
Cc: Nick Desaulniers <[email protected]>
14+
Signed-off-by: Andrew Morton <[email protected]>
15+
---
16+
17+
18+
--- a/ipc/sem.c~ipc-sem-remove-redundant-assignments
19+
+++ a/ipc/sem.c
20+
@@ -766,7 +766,6 @@ static int perform_atomic_semop(struct s
21+
for (sop = sops; sop < sops + nsops; sop++) {
22+
curr = &sma->sems[sop->sem_num];
23+
sem_op = sop->sem_op;
24+
- result = curr->semval;
25+
26+
if (sop->sem_flg & SEM_UNDO) {
27+
int undo = un->semadj[sop->sem_num] - sem_op;
28+
@@ -1430,7 +1429,6 @@ static int semctl_main(struct ipc_namesp
29+
if (err)
30+
goto out_rcu_wakeup;
31+
32+
- err = -EACCES;
33+
switch (cmd) {
34+
case GETALL:
35+
{
36+
_
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
From: xu xin <[email protected]>
2+
Subject: kernel: make taskstats available from all net namespaces
3+
4+
If getdelays runs in a non-init network namespace, it will fail in getting
5+
delayacct stats even if it has privilege of root user, which seems to be
6+
not very reasonable. We can simply reproduce this by executing commands:
7+
8+
unshare -n
9+
getdelays -d -p <pid>
10+
11+
I don't think net namespace should be an obstacle to the normal execution
12+
of getdelay function. So let's make it available from all net namespaces.
13+
14+
Link: https://lkml.kernel.org/r/[email protected]
15+
Signed-off-by: xu xin <[email protected]>
16+
Cc: Balbir Singh <[email protected]>
17+
Cc: Yang Yang <[email protected]>
18+
Cc: "Dr. Thomas Orgis" <[email protected]>
19+
Cc: Eric W. Biederman <[email protected]>
20+
Cc: Ismael Luceno <[email protected]>
21+
Signed-off-by: Andrew Morton <[email protected]>
22+
---
23+
24+
25+
--- a/kernel/taskstats.c~kernel-make-taskstats-available-from-all-net-namespaces
26+
+++ a/kernel/taskstats.c
27+
@@ -688,6 +688,7 @@ static struct genl_family family __ro_af
28+
.module = THIS_MODULE,
29+
.ops = taskstats_ops,
30+
.n_ops = ARRAY_SIZE(taskstats_ops),
31+
+ .netnsok = true,
32+
};
33+
34+
/* Needed early in initialization */
35+
_

0 commit comments

Comments
 (0)