tools/nolibc: Add the definition for dup()
authorWilly Tarreau <w@1wt.eu>
Thu, 21 Jan 2021 07:20:23 +0000 (08:20 +0100)
committerPaul E. McKenney <paulmck@kernel.org>
Thu, 21 Jan 2021 18:06:44 +0000 (10:06 -0800)
This commit adds the dup() function, which was omitted when sys_dup()
was defined.  This is a port of nolibc's upstream commit 47cc42a79c92
to the Linux kernel.

Fixes: 66b6f755ad45 ("rcutorture: Import a copy of nolibc")
Tested-by: Valentin Schneider <valentin.schneider@arm.com>
Tested-by: Mark Rutland <mark.rutland@arm.com> [arm64]
Signed-off-by: Willy Tarreau <w@1wt.eu>
Signed-off-by: Paul E. McKenney <paulmck@kernel.org>
tools/include/nolibc/nolibc.h

index e61d36cd4e501e5f55f64fdae81b393889e69279..3115c6467d1041c235031a999432ed75ee82acce 100644 (file)
@@ -1852,6 +1852,18 @@ int close(int fd)
        return ret;
 }
 
+static __attribute__((unused))
+int dup(int fd)
+{
+       int ret = sys_dup(fd);
+
+       if (ret < 0) {
+               SET_ERRNO(-ret);
+               ret = -1;
+       }
+       return ret;
+}
+
 static __attribute__((unused))
 int dup2(int old, int new)
 {