Link: https://lore.kernel.org/r/20260217200002.683975158@linuxfoundation.org Tested-by: Florian Fainelli <florian.fainelli@broadcom.com> Tested-by: Takeshi Ogasawara <takeshi.ogasawara@futuring-girl.com> Tested-by: Peter Schneider <pschneider1968@googlemail.com> Tested-by: Jon Hunter <jonathanh@nvidia.com> Tested-by: Salvatore Bonaccorso <carnil@debian.org> Tested-by: Brett A C Sheffield <bacs@librecast.net> Tested-by: Mark Brown <broonie@kernel.org> Tested-by: Luna Jernberg <droidbittin@gmail.com> Tested-by: Ronald Warsow <rwarsow@gmx.de> Tested-by: Justin M. Forbes <jforbes@fedoraproject.org> Tested-by: Ron Economos <re@w6rz.net> Tested-by: Miguel Ojeda <ojeda@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
50 lines
1.1 KiB
C
50 lines
1.1 KiB
C
/* SPDX-License-Identifier: LGPL-2.1 OR MIT */
|
|
/*
|
|
* uio for NOLIBC
|
|
* Copyright (C) 2017-2021 Willy Tarreau <w@1wt.eu>
|
|
* Copyright (C) 2025 Intel Corporation
|
|
*/
|
|
|
|
/* make sure to include all global symbols */
|
|
#include "../nolibc.h"
|
|
|
|
#ifndef _NOLIBC_SYS_UIO_H
|
|
#define _NOLIBC_SYS_UIO_H
|
|
|
|
#include "../sys.h"
|
|
#include <linux/uio.h>
|
|
|
|
|
|
/*
|
|
* ssize_t readv(int fd, const struct iovec *iovec, int count);
|
|
*/
|
|
static __attribute__((unused))
|
|
ssize_t sys_readv(int fd, const struct iovec *iovec, int count)
|
|
{
|
|
return my_syscall3(__NR_readv, fd, iovec, count);
|
|
}
|
|
|
|
static __attribute__((unused))
|
|
ssize_t readv(int fd, const struct iovec *iovec, int count)
|
|
{
|
|
return __sysret(sys_readv(fd, iovec, count));
|
|
}
|
|
|
|
/*
|
|
* ssize_t writev(int fd, const struct iovec *iovec, int count);
|
|
*/
|
|
static __attribute__((unused))
|
|
ssize_t sys_writev(int fd, const struct iovec *iovec, int count)
|
|
{
|
|
return my_syscall3(__NR_writev, fd, iovec, count);
|
|
}
|
|
|
|
static __attribute__((unused))
|
|
ssize_t writev(int fd, const struct iovec *iovec, int count)
|
|
{
|
|
return __sysret(sys_writev(fd, iovec, count));
|
|
}
|
|
|
|
|
|
#endif /* _NOLIBC_SYS_UIO_H */
|