From c3db52d3e4b7eb142db9e91e6417a0e34d0a79a2 Mon Sep 17 00:00:00 2001 From: Wang Mingyu Date: Wed, 13 Mar 2024 15:08:30 +0800 Subject: stress-ng: upgrade 0.17.05 -> 0.17.06 Changelog: ========== -New fd-fork stressor, force copying of tens of thousands of file descriptors on fork() system calls -New bitonicsort stressor: sort 32 bit integers using bitonic sort, exercises integer compare, copying/cache/memory. -Add more signals in the nested signal signest stressor -New --progress option to show --seq stressor progress and expected end of run time -Add Arrowlake and Pantherlake CPU support for target clones gcc optimizations -Add IRQ tasklet entry/exit events, IPI Raise event, swiotlb event to --perf option -Add --crypt-method option to allow crypt stressor to be selected -Add --fork-unmap option to fork stressor to force unmapping of shared libs to speed up forks -Add --fpunch-bytes option to fpunch stressor to specify fpunch file size -Add --vforkmany-bytes option to specify mmap size -Add NUMA hit/miss metrics to numa stressor -Fix aiol stressor race condition on termination of pending I/Os -Fix race on peterson stressor with modern out-of-order execution ARM CPUs (From OE-Core rev: 38ad00dd375cab312c12c61e9fcd512ad8a9166a) Signed-off-by: Wang Mingyu Signed-off-by: Richard Purdie --- .../stress-ng/stress-ng_0.17.05.bb | 36 ---------------------- .../stress-ng/stress-ng_0.17.06.bb | 36 ++++++++++++++++++++++ 2 files changed, 36 insertions(+), 36 deletions(-) delete mode 100644 meta/recipes-extended/stress-ng/stress-ng_0.17.05.bb create mode 100644 meta/recipes-extended/stress-ng/stress-ng_0.17.06.bb (limited to 'meta') diff --git a/meta/recipes-extended/stress-ng/stress-ng_0.17.05.bb b/meta/recipes-extended/stress-ng/stress-ng_0.17.05.bb deleted file mode 100644 index d4a427f89d..0000000000 --- a/meta/recipes-extended/stress-ng/stress-ng_0.17.05.bb +++ /dev/null @@ -1,36 +0,0 @@ -SUMMARY = "System load testing utility" -DESCRIPTION = "Deliberately simple workload generator for POSIX systems. It \ -imposes a configurable amount of CPU, memory, I/O, and disk stress on the system." -HOMEPAGE = "https://github.com/ColinIanKing/stress-ng#readme" -LICENSE = "GPL-2.0-only" -LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263" - -SRC_URI = "git://github.com/ColinIanKing/stress-ng.git;protocol=https;branch=master \ - " -SRCREV = "4e68895f4fe68863b360ab4a6a57e2dfcff85d60" -S = "${WORKDIR}/git" - -DEPENDS = "coreutils-native libbsd" - -PROVIDES = "stress" -RPROVIDES:${PN} = "stress" -RREPLACES:${PN} = "stress" -RCONFLICTS:${PN} = "stress" - -inherit bash-completion - -EXTRA_OEMAKE = "VERBOSE=1" - -do_configure() { - mkdir -p configs - touch configs/HAVE_APPARMOR - oe_runmake makeconfig -} - -do_install() { - oe_runmake DESTDIR=${D} BINDIR=${bindir} install - ln -s stress-ng ${D}${bindir}/stress -} - -# upstream issue: https://github.com/ColinIanKing/stress-ng/issues/315 -DEBUG_BUILD = "0" diff --git a/meta/recipes-extended/stress-ng/stress-ng_0.17.06.bb b/meta/recipes-extended/stress-ng/stress-ng_0.17.06.bb new file mode 100644 index 0000000000..a52b70d22f --- /dev/null +++ b/meta/recipes-extended/stress-ng/stress-ng_0.17.06.bb @@ -0,0 +1,36 @@ +SUMMARY = "System load testing utility" +DESCRIPTION = "Deliberately simple workload generator for POSIX systems. It \ +imposes a configurable amount of CPU, memory, I/O, and disk stress on the system." +HOMEPAGE = "https://github.com/ColinIanKing/stress-ng#readme" +LICENSE = "GPL-2.0-only" +LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263" + +SRC_URI = "git://github.com/ColinIanKing/stress-ng.git;protocol=https;branch=master \ + " +SRCREV = "e6bda983cb48a201b6af173204372c7b37d6411f" +S = "${WORKDIR}/git" + +DEPENDS = "coreutils-native libbsd" + +PROVIDES = "stress" +RPROVIDES:${PN} = "stress" +RREPLACES:${PN} = "stress" +RCONFLICTS:${PN} = "stress" + +inherit bash-completion + +EXTRA_OEMAKE = "VERBOSE=1" + +do_configure() { + mkdir -p configs + touch configs/HAVE_APPARMOR + oe_runmake makeconfig +} + +do_install() { + oe_runmake DESTDIR=${D} BINDIR=${bindir} install + ln -s stress-ng ${D}${bindir}/stress +} + +# upstream issue: https://github.com/ColinIanKing/stress-ng/issues/315 +DEBUG_BUILD = "0" -- cgit v1.2.3-54-g00ecf