mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
6ad92bf63e
There are two new ioctl-s: One ioctl for the user namespace that owns a file descriptor. One ioctl for the parent namespace of a namespace file descriptor. The test checks that these ioctl-s works and that they handle a case when a target namespace is outside of the current process namespace. Signed-off-by: Andrei Vagin <avagin@openvz.org> Signed-off-by: Eric W. Biederman <ebiederm@xmission.com>
13 lines
145 B
Makefile
13 lines
145 B
Makefile
TEST_PROGS := owner pidns
|
|
|
|
CFLAGS := -Wall -Werror
|
|
|
|
all: owner pidns
|
|
owner: owner.c
|
|
pidns: pidns.c
|
|
|
|
clean:
|
|
$(RM) owner pidns
|
|
|
|
include ../lib.mk
|