package/stress-ng: bump version to 0.11.17

This commit bumps stress-ng version to 0.11.17.

This version includes the patch that fixes musl build at commit
03416938871388243d28621f4b59ce532231f11c, and also fixes a
"Invalid syntax in conditional" build error in a Makefile.

Signed-off-by: Alejandro González <alejandro.gonzalez.correo@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
Alejandro González 2020-08-08 15:13:56 +02:00 committed by Thomas Petazzoni
parent 1704786b42
commit c5b849acb0
3 changed files with 2 additions and 51 deletions

View File

@ -1,49 +0,0 @@
From 8c223daf10319f15570a74ed83a1d655fdbd4a7b Mon Sep 17 00:00:00 2001
Message-Id: <8c223daf10319f15570a74ed83a1d655fdbd4a7b.1592540443.git.baruch@tkos.co.il>
From: Baruch Siach <baruch@tkos.co.il>
Date: Fri, 19 Jun 2020 07:10:24 +0300
Subject: [PATCH] stress-ng.h: suppress kernel sysinfo.h
The kernel sysinfo.h (indirectly included from genetlink.h) defines
struct sysinfo. This collides with musl libc definition of the same
struct.
Fixes this build issue:
In file included from .../arm-buildroot-linux-musleabihf/sysroot/usr/include/linux/kernel.h:5,
from .../arm-buildroot-linux-musleabihf/sysroot/usr/include/linux/netlink.h:5,
from .../arm-buildroot-linux-musleabihf/sysroot/usr/include/linux/genetlink.h:6,
from stress-ng.h:464,
from stress-access.c:25:
.../arm-buildroot-linux-musleabihf/sysroot/usr/include/linux/sysinfo.h:8:8: error: redefinition of struct sysinfo
struct sysinfo {
^~~~~~~
In file included from stress-ng.h:389,
from stress-access.c:25:
.../arm-buildroot-linux-musleabihf/sysroot/usr/include/sys/sysinfo.h:10:8: note: originally defined here
struct sysinfo {
^~~~~~~
Signed-off-by: Baruch Siach <baruch@tkos.co.il>
---
Upstream status: https://github.com/ColinIanKing/stress-ng/pull/69
stress-ng.h | 2 ++
1 file changed, 2 insertions(+)
diff --git a/stress-ng.h b/stress-ng.h
index 1a662938c1d9..e8aa0efe7527 100644
--- a/stress-ng.h
+++ b/stress-ng.h
@@ -387,6 +387,8 @@
#if defined(HAVE_SYS_SYSINFO_H)
#include <sys/sysinfo.h>
+/* Suppress kernel sysinfo to avoid collision with musl */
+#define _LINUX_SYSINFO_H
#endif
#if defined(HAVE_SYS_SYSMACROS_H)
--
2.27.0

View File

@ -1,3 +1,3 @@
# Locally calculated
sha256 b21436fdbd9dc482a3fd95ae27cccf0097d0f226361ea3785215f7a4ad50136b stress-ng-0.11.14.tar.xz
sha256 860291dd3a18b985b3483190a627bbede2b5c52113766c1921001b3fb4b83af0 stress-ng-0.11.17.tar.xz
sha256 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643 COPYING

View File

@ -4,7 +4,7 @@
#
################################################################################
STRESS_NG_VERSION = 0.11.14
STRESS_NG_VERSION = 0.11.17
STRESS_NG_SOURCE = stress-ng-$(STRESS_NG_VERSION).tar.xz
STRESS_NG_SITE = http://kernel.ubuntu.com/~cking/tarballs/stress-ng
STRESS_NG_LICENSE = GPL-2.0+