mirror of
https://github.com/torvalds/linux.git
synced 2026-05-12 16:18:45 +02:00
The sys_foo() naming scheme used by the syscall wrappers may collide with application symbols. Especially as 'sys_' is an obvious naming scheme an application may choose for its own custom systemcall wrappers. Avoid these conflicts by using an leading underscore which moves the names into the implementation's namespace. This naming scheme was chosen over a '__nolibc_' prefix, as these functions are not an implementation detail but a documented interface meant to be used by applications. While this may break some existing users, adapting them should be straightforward. Given that nolibc is most-likely vendored, no unexpected breakage should happen. No in-tree users are affected. These conflicts happen when compiling some of the kernel selftests with nolibc. Signed-off-by: Thomas Weißschuh <linux@weissschuh.net> Acked-by: Willy Tarreau <w@1wt.eu> Link: https://patch.msgid.link/20260319-nolibc-namespacing-v1-1-33c22eaddb5e@weissschuh.net
51 lines
866 B
C
51 lines
866 B
C
/* SPDX-License-Identifier: LGPL-2.1 OR MIT */
|
|
/*
|
|
* sched function definitions for NOLIBC
|
|
* Copyright (C) 2025 Thomas Weißschuh <linux@weissschuh.net>
|
|
*/
|
|
|
|
/* make sure to include all global symbols */
|
|
#include "nolibc.h"
|
|
|
|
#ifndef _NOLIBC_SCHED_H
|
|
#define _NOLIBC_SCHED_H
|
|
|
|
#include "sys.h"
|
|
|
|
#include <linux/sched.h>
|
|
|
|
/*
|
|
* int setns(int fd, int nstype);
|
|
*/
|
|
|
|
static __attribute__((unused))
|
|
int _sys_setns(int fd, int nstype)
|
|
{
|
|
return __nolibc_syscall2(__NR_setns, fd, nstype);
|
|
}
|
|
|
|
static __attribute__((unused))
|
|
int setns(int fd, int nstype)
|
|
{
|
|
return __sysret(_sys_setns(fd, nstype));
|
|
}
|
|
|
|
|
|
/*
|
|
* int unshare(int flags);
|
|
*/
|
|
|
|
static __attribute__((unused))
|
|
int _sys_unshare(int flags)
|
|
{
|
|
return __nolibc_syscall1(__NR_unshare, flags);
|
|
}
|
|
|
|
static __attribute__((unused))
|
|
int unshare(int flags)
|
|
{
|
|
return __sysret(_sys_unshare(flags));
|
|
}
|
|
|
|
#endif /* _NOLIBC_SCHED_H */
|