mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-01-01 13:58:06 +00:00
stress-ng: delete recipe
stress-ng is now available from poky directly. Signed-off-by: Mikko Rapeli <mikko.rapeli@bmw.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
parent
d21d509b9f
commit
c95842cdca
|
|
@ -1,31 +0,0 @@
|
|||
From 7c97710bfc44d895b7111bef9c55866f00a3589c Mon Sep 17 00:00:00 2001
|
||||
From: Khem Raj <raj.khem@gmail.com>
|
||||
Date: Mon, 13 Aug 2018 11:54:27 -0700
|
||||
Subject: [PATCH] Revert "Makefile: force sync after build in case reboot loses
|
||||
executable"
|
||||
|
||||
This reverts commit ae6322b1baea56a589207c96e358daae8edd0a8f.
|
||||
|
||||
Not needed for cross-builds
|
||||
|
||||
Upstream-Status: Inappropriate [Cross compile specific]
|
||||
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
||||
---
|
||||
Makefile | 1 -
|
||||
1 file changed, 1 deletion(-)
|
||||
|
||||
diff --git a/Makefile b/Makefile
|
||||
index c0db72c0..5781dda6 100644
|
||||
--- a/Makefile
|
||||
+++ b/Makefile
|
||||
@@ -348,7 +348,6 @@ endif
|
||||
stress-ng: $(OBJS)
|
||||
@echo "LD $@"
|
||||
@$(CC) $(CPPFLAGS) $(CFLAGS) $(OBJS) -lm $(LDFLAGS) -o $@
|
||||
- @sync
|
||||
|
||||
makeconfig:
|
||||
@if [ ! -s config ]; then \
|
||||
--
|
||||
2.17.0
|
||||
|
||||
|
|
@ -1,132 +0,0 @@
|
|||
From 9bcb4e170f01dbe0a9e7bf6b899c5d9b5283d4c6 Mon Sep 17 00:00:00 2001
|
||||
From: Randy MacLeod <Randy.MacLeod@windriver.com>
|
||||
Date: Sun, 11 Nov 2018 23:00:53 -0500
|
||||
Subject: [PATCH] Several changes to fix musl build
|
||||
MIME-Version: 1.0
|
||||
Content-Type: text/plain; charset=UTF-8
|
||||
Content-Transfer-Encoding: 8bit
|
||||
|
||||
Rebased patch for:
|
||||
|
||||
stress-{context, stackmmap}.c: Set tests to non-implemented because uses
|
||||
swapcontext, musl provide the definition but not the implementation due
|
||||
to that functions are pre-POSIX and set to be deprecated.
|
||||
stress-{resources, pty}.c: Doesn't include termio.h and remove stress
|
||||
operations that uses struct termio, musl doesn't provide that struct.
|
||||
stress-malloc.c: Check for definition of M_MMAP_THRESHOLD musl doesn't
|
||||
ptovide that constant.
|
||||
stress-madvise.c: Add static poision_count integer, definition of
|
||||
MADV_SOFT_OFFLINE doesn't grauntee MADV_HWPOISON to be defined.
|
||||
cache.c: Define GLOB_ONLYDIR not available on MUSL.
|
||||
|
||||
Signed-off-by: Aníbal Limón <anibal.limon@linaro.org>
|
||||
Signed-off-by: Tim Orling <timothy.t.orling@linux.intel.com>
|
||||
Signed-off-by: Randy MacLeod <Randy.MacLeod@windriver.com>
|
||||
|
||||
Upstream-status: Pending
|
||||
---
|
||||
cache.c | 4 ++++
|
||||
stress-madvise.c | 1 +
|
||||
stress-pty.c | 18 ------------------
|
||||
stress-resources.c | 1 -
|
||||
stress-stackmmap.c | 2 +-
|
||||
5 files changed, 6 insertions(+), 20 deletions(-)
|
||||
|
||||
diff --git a/cache.c b/cache.c
|
||||
index e8a0f791..4c7bb486 100644
|
||||
--- a/cache.c
|
||||
+++ b/cache.c
|
||||
@@ -28,6 +28,10 @@ typedef struct {
|
||||
|
||||
#include <glob.h>
|
||||
|
||||
+#ifndef GLOB_ONLYDIR
|
||||
+#define GLOB_ONLYDIR 0x100
|
||||
+#endif
|
||||
+
|
||||
#if defined(__linux__)
|
||||
#define SYS_CPU_PREFIX "/sys/devices/system/cpu"
|
||||
#define GLOB_PATTERN SYS_CPU_PREFIX "/cpu[0-9]*"
|
||||
diff --git a/stress-madvise.c b/stress-madvise.c
|
||||
index b2e3497f..77e43a91 100644
|
||||
--- a/stress-madvise.c
|
||||
+++ b/stress-madvise.c
|
||||
@@ -146,6 +146,7 @@ static int stress_random_advise(const args_t *args)
|
||||
#if defined(MADV_SOFT_OFFLINE)
|
||||
if (advise == MADV_SOFT_OFFLINE) {
|
||||
static int soft_offline_count;
|
||||
+ static int poison_count;
|
||||
|
||||
/* ..and minimize number of soft offline pages */
|
||||
if ((soft_offline_count >= NUM_SOFT_OFFLINE_MAX) ||
|
||||
diff --git a/stress-pty.c b/stress-pty.c
|
||||
index 4dd88ab9..c79a7021 100644
|
||||
--- a/stress-pty.c
|
||||
+++ b/stress-pty.c
|
||||
@@ -26,7 +26,6 @@
|
||||
|
||||
#if defined(__linux__)
|
||||
|
||||
-#include <termio.h>
|
||||
#include <termios.h>
|
||||
|
||||
typedef struct {
|
||||
@@ -111,7 +110,6 @@ static int stress_pty(const args_t *args)
|
||||
*/
|
||||
for (i = 0; i < n; i++) {
|
||||
struct termios ios;
|
||||
- struct termio io;
|
||||
struct winsize ws;
|
||||
int arg;
|
||||
|
||||
@@ -133,22 +131,6 @@ static int stress_pty(const args_t *args)
|
||||
if (ioctl(ptys[i].slave, TCSETSF, &ios) < 0)
|
||||
pr_fail_err("ioctl TCSETSF on slave pty");
|
||||
#endif
|
||||
-#if defined(TCGETA)
|
||||
- if (ioctl(ptys[i].slave, TCGETA, &io) < 0)
|
||||
- pr_fail_err("ioctl TCGETA on slave pty");
|
||||
-#endif
|
||||
-#if defined(TCSETA)
|
||||
- if (ioctl(ptys[i].slave, TCSETA, &io) < 0)
|
||||
- pr_fail_err("ioctl TCSETA on slave pty");
|
||||
-#endif
|
||||
-#if defined(TCSETAW)
|
||||
- if (ioctl(ptys[i].slave, TCSETAW, &io) < 0)
|
||||
- pr_fail_err("ioctl TCSETAW on slave pty");
|
||||
-#endif
|
||||
-#if defined(TCSETAF)
|
||||
- if (ioctl(ptys[i].slave, TCSETAF, &io) < 0)
|
||||
- pr_fail_err("ioctl TCSETAF on slave pty");
|
||||
-#endif
|
||||
#if defined(TIOCGLCKTRMIOS)
|
||||
if (ioctl(ptys[i].slave, TIOCGLCKTRMIOS, &ios) < 0)
|
||||
pr_fail_err("ioctl TIOCGLCKTRMIOS on slave pty");
|
||||
diff --git a/stress-resources.c b/stress-resources.c
|
||||
index f3dcfb38..86f9a5ba 100644
|
||||
--- a/stress-resources.c
|
||||
+++ b/stress-resources.c
|
||||
@@ -28,7 +28,6 @@
|
||||
#include <sys/inotify.h>
|
||||
#endif
|
||||
#if defined(__linux__)
|
||||
-#include <termio.h>
|
||||
#include <termios.h>
|
||||
#endif
|
||||
#if defined(HAVE_LIB_PTHREAD) && defined(__linux__)
|
||||
diff --git a/stress-stackmmap.c b/stress-stackmmap.c
|
||||
index c2f4c31d..54308777 100644
|
||||
--- a/stress-stackmmap.c
|
||||
+++ b/stress-stackmmap.c
|
||||
@@ -24,7 +24,7 @@
|
||||
*/
|
||||
#include "stress-ng.h"
|
||||
|
||||
-#if defined(__linux__)
|
||||
+#if defined(__linux__) && False
|
||||
|
||||
#include <ucontext.h>
|
||||
|
||||
--
|
||||
2.17.0
|
||||
|
||||
|
|
@ -1,26 +0,0 @@
|
|||
SUMMARY = "A tool to load and stress a computer system"
|
||||
HOMEPAGE = "http://kernel.ubuntu.com/~cking/stress-ng/"
|
||||
LICENSE = "GPLv2"
|
||||
LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
|
||||
|
||||
DEPENDS = "zlib libaio"
|
||||
|
||||
SRC_URI = "http://kernel.ubuntu.com/~cking/tarballs/${BPN}/${BP}.tar.xz \
|
||||
file://0001-Revert-Makefile-force-sync-after-build-in-case-reboo.patch \
|
||||
"
|
||||
SRC_URI_append_libc-musl = " \
|
||||
file://0001-Several-changes-to-fix-musl-build.patch \
|
||||
"
|
||||
|
||||
SRC_URI[md5sum] = "b03744c2eb68bf7e9a300e78e397f348"
|
||||
SRC_URI[sha256sum] = "0741e3004bf590bb7af3db979a46fe89bee7aaad6065cd1d87d0b7fa49046cb2"
|
||||
|
||||
UPSTREAM_CHECK_URI ?= "http://kernel.ubuntu.com/~cking/tarballs/${BPN}/"
|
||||
UPSTREAM_CHECK_REGEX ?= "(?P<pver>\d+(\.\d+)+)\.tar"
|
||||
|
||||
CFLAGS += "-Wall -Wextra -DVERSION='"$(VERSION)"'"
|
||||
|
||||
do_install_append() {
|
||||
install -d ${D}${bindir}
|
||||
install -m 755 ${S}/stress-ng ${D}${bindir}/stress-ng
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user