Compare commits
No commits in common. "imports/c8/stress-ng-0.15.00-1.el8" and "c8s" have entirely different histories.
imports/c8
...
c8s
3
.gitignore
vendored
3
.gitignore
vendored
@ -1 +1,2 @@
|
|||||||
SOURCES/stress-ng-0.15.00.tar.xz
|
*.swp
|
||||||
|
/stress-ng-*.tar.xz
|
||||||
|
@ -1 +0,0 @@
|
|||||||
7b907482a0574e87fd5608b3c1ac7a2f1aa76210 SOURCES/stress-ng-0.15.00.tar.xz
|
|
@ -1,55 +0,0 @@
|
|||||||
From 6a22f648bd3452c83c5f88ec530d496fefe5e9a0 Mon Sep 17 00:00:00 2001
|
|
||||||
From: Colin Ian King <colin.i.king@gmail.com>
|
|
||||||
Date: Mon, 21 Nov 2022 12:16:47 +0000
|
|
||||||
Subject: [PATCH 1/3] stress-sysfs: check for zero sysfs entries after pruning
|
|
||||||
the directory
|
|
||||||
|
|
||||||
Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
|
|
||||||
---
|
|
||||||
stress-sysfs.c | 18 +++++++++++-------
|
|
||||||
1 file changed, 11 insertions(+), 7 deletions(-)
|
|
||||||
|
|
||||||
diff --git a/stress-sysfs.c b/stress-sysfs.c
|
|
||||||
index 00fe9ba08100..24267d00ee5a 100644
|
|
||||||
--- a/stress-sysfs.c
|
|
||||||
+++ b/stress-sysfs.c
|
|
||||||
@@ -634,14 +634,11 @@ static int stress_sysfs(const stress_args_t *args)
|
|
||||||
}
|
|
||||||
|
|
||||||
n = scandir("/sys", &dlist, NULL, alphasort);
|
|
||||||
- if (n <= 0) {
|
|
||||||
- if (args->instance == 0)
|
|
||||||
- pr_inf_skip("%s: no /sys entries found, skipping stressor\n", args->name);
|
|
||||||
- stress_dirent_list_free(dlist, n);
|
|
||||||
- (void)munmap((void *)ctxt, sizeof(*ctxt));
|
|
||||||
- return EXIT_NO_RESOURCE;
|
|
||||||
- }
|
|
||||||
+ if (n <= 0)
|
|
||||||
+ goto exit_no_sysfs_entries;
|
|
||||||
n = stress_dirent_list_prune(dlist, n);
|
|
||||||
+ if (n <= 0)
|
|
||||||
+ goto exit_no_sysfs_entries;
|
|
||||||
|
|
||||||
os_release = 0;
|
|
||||||
#if defined(HAVE_UNAME) && \
|
|
||||||
@@ -806,10 +803,17 @@ finish:
|
|
||||||
(void)close(ctxt->kmsgfd);
|
|
||||||
(void)shim_pthread_spin_destroy(&lock);
|
|
||||||
|
|
||||||
+exit_free:
|
|
||||||
stress_dirent_list_free(dlist, n);
|
|
||||||
(void)munmap((void *)ctxt, sizeof(*ctxt));
|
|
||||||
|
|
||||||
return rc;
|
|
||||||
+
|
|
||||||
+exit_no_sysfs_entries:
|
|
||||||
+ if (args->instance == 0)
|
|
||||||
+ pr_inf_skip("%s: no /sys entries found, skipping stressor\n", args->name);
|
|
||||||
+ rc = EXIT_NO_RESOURCE;
|
|
||||||
+ goto exit_free;
|
|
||||||
}
|
|
||||||
|
|
||||||
stressor_info_t stress_sysfs_info = {
|
|
||||||
--
|
|
||||||
2.38.1
|
|
||||||
|
|
@ -1,37 +0,0 @@
|
|||||||
From f424f5b774b7cb0fd7939d28e68db6fa977baea1 Mon Sep 17 00:00:00 2001
|
|
||||||
From: Colin Ian King <colin.i.king@gmail.com>
|
|
||||||
Date: Mon, 21 Nov 2022 12:45:11 +0000
|
|
||||||
Subject: [PATCH 2/3] stress-shm: skip stressor if /dev/shm is not mounted with
|
|
||||||
tmpfs on linux
|
|
||||||
|
|
||||||
Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
|
|
||||||
---
|
|
||||||
stress-shm.c | 12 ++++++++++++
|
|
||||||
1 file changed, 12 insertions(+)
|
|
||||||
|
|
||||||
diff --git a/stress-shm.c b/stress-shm.c
|
|
||||||
index 91bcd961aeb1..4e6327ac97d4 100644
|
|
||||||
--- a/stress-shm.c
|
|
||||||
+++ b/stress-shm.c
|
|
||||||
@@ -122,6 +122,18 @@ static int stress_shm_posix_child(
|
|
||||||
const size_t page_size = args->page_size;
|
|
||||||
struct sigaction sa;
|
|
||||||
|
|
||||||
+#if defined(__linux__)
|
|
||||||
+ /*
|
|
||||||
+ * /dev/shm should be mounted with tmpfs and
|
|
||||||
+ * be writeable, if not shm_open will fail
|
|
||||||
+ */
|
|
||||||
+ if (access("/dev/shm", W_OK) < 0) {
|
|
||||||
+ pr_inf("%s: cannot access /dev/shm for writes, errno=%d (%s) skipping stressor\n",
|
|
||||||
+ args->name, errno, strerror(errno));
|
|
||||||
+ return EXIT_NO_RESOURCE;
|
|
||||||
+ }
|
|
||||||
+#endif
|
|
||||||
+
|
|
||||||
addrs = calloc(shm_posix_objects, sizeof(*addrs));
|
|
||||||
if (!addrs) {
|
|
||||||
pr_fail("%s: calloc on addrs failed, out of memory\n", args->name);
|
|
||||||
--
|
|
||||||
2.38.1
|
|
||||||
|
|
@ -1,55 +0,0 @@
|
|||||||
From 7681f2d05470b8c8850346bcf12e525f628941b3 Mon Sep 17 00:00:00 2001
|
|
||||||
From: Colin Ian King <colin.i.king@gmail.com>
|
|
||||||
Date: Mon, 21 Nov 2022 12:46:54 +0000
|
|
||||||
Subject: [PATCH 3/3] stress-shm: move /dev/shm check to earlier in the setup
|
|
||||||
phase
|
|
||||||
|
|
||||||
Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
|
|
||||||
---
|
|
||||||
stress-shm.c | 23 +++++++++++------------
|
|
||||||
1 file changed, 11 insertions(+), 12 deletions(-)
|
|
||||||
|
|
||||||
diff --git a/stress-shm.c b/stress-shm.c
|
|
||||||
index 4e6327ac97d4..a9c26498024e 100644
|
|
||||||
--- a/stress-shm.c
|
|
||||||
+++ b/stress-shm.c
|
|
||||||
@@ -122,18 +122,6 @@ static int stress_shm_posix_child(
|
|
||||||
const size_t page_size = args->page_size;
|
|
||||||
struct sigaction sa;
|
|
||||||
|
|
||||||
-#if defined(__linux__)
|
|
||||||
- /*
|
|
||||||
- * /dev/shm should be mounted with tmpfs and
|
|
||||||
- * be writeable, if not shm_open will fail
|
|
||||||
- */
|
|
||||||
- if (access("/dev/shm", W_OK) < 0) {
|
|
||||||
- pr_inf("%s: cannot access /dev/shm for writes, errno=%d (%s) skipping stressor\n",
|
|
||||||
- args->name, errno, strerror(errno));
|
|
||||||
- return EXIT_NO_RESOURCE;
|
|
||||||
- }
|
|
||||||
-#endif
|
|
||||||
-
|
|
||||||
addrs = calloc(shm_posix_objects, sizeof(*addrs));
|
|
||||||
if (!addrs) {
|
|
||||||
pr_fail("%s: calloc on addrs failed, out of memory\n", args->name);
|
|
||||||
@@ -384,6 +372,17 @@ static int stress_shm(const stress_args_t *args)
|
|
||||||
}
|
|
||||||
orig_sz = sz = shm_posix_bytes & ~(page_size - 1);
|
|
||||||
|
|
||||||
+#if defined(__linux__)
|
|
||||||
+ /*
|
|
||||||
+ * /dev/shm should be mounted with tmpfs and
|
|
||||||
+ * be writeable, if not shm_open will fail
|
|
||||||
+ */
|
|
||||||
+ if (access("/dev/shm", W_OK) < 0) {
|
|
||||||
+ pr_inf("%s: cannot access /dev/shm for writes, errno=%d (%s) skipping stressor\n",
|
|
||||||
+ args->name, errno, strerror(errno));
|
|
||||||
+ return EXIT_NO_RESOURCE;
|
|
||||||
+ }
|
|
||||||
+#endif
|
|
||||||
stress_set_proc_state(args->name, STRESS_STATE_RUN);
|
|
||||||
|
|
||||||
while (keep_stressing_flag() && retry) {
|
|
||||||
--
|
|
||||||
2.38.1
|
|
||||||
|
|
6
gating.yaml
Normal file
6
gating.yaml
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
--- !Policy
|
||||||
|
product_versions:
|
||||||
|
- rhel-8
|
||||||
|
decision_context: osci_compose_gate
|
||||||
|
rules:
|
||||||
|
- !PassingTestCaseRule {test_case_name: osci.brew-build.tier0.functional}
|
1
sources
Normal file
1
sources
Normal file
@ -0,0 +1 @@
|
|||||||
|
SHA512 (stress-ng-0.17.01.tar.xz) = ee213e2217638976c0b9d96d66509f4fcafbd870cb0c92245d799c967690f4e2f95bdc978ba21d26552d6ca42c49f2a276205d1685facaf8c8101de971df29ef
|
@ -1,5 +1,5 @@
|
|||||||
Name: stress-ng
|
Name: stress-ng
|
||||||
Version: 0.15.00
|
Version: 0.17.01
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: Stress test a computer system in various ways
|
Summary: Stress test a computer system in various ways
|
||||||
|
|
||||||
@ -25,9 +25,6 @@ BuildRequires: zlib-devel
|
|||||||
BuildRequires: Judy-devel
|
BuildRequires: Judy-devel
|
||||||
|
|
||||||
# Patches
|
# Patches
|
||||||
Patch1: 0001-stress-sysfs-check-for-zero-sysfs-entries-after-prun.patch
|
|
||||||
Patch2: 0002-stress-shm-skip-stressor-if-dev-shm-is-not-mounted-w.patch
|
|
||||||
Patch3: 0003-stress-shm-move-dev-shm-check-to-earlier-in-the-setu.patch
|
|
||||||
|
|
||||||
%description
|
%description
|
||||||
Stress test a computer system in various ways. It was designed to exercise
|
Stress test a computer system in various ways. It was designed to exercise
|
||||||
@ -36,9 +33,6 @@ system kernel interfaces.
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
%patch1 -p1
|
|
||||||
%patch2 -p1
|
|
||||||
%patch3 -p1
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export CFLAGS="%{optflags}"
|
export CFLAGS="%{optflags}"
|
||||||
@ -62,6 +56,10 @@ install -pm 644 bash-completion/%{name} \
|
|||||||
%{_datadir}/bash-completion/completions/%{name}
|
%{_datadir}/bash-completion/completions/%{name}
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Wed Nov 15 2023 John Kacur <jkacur@redhat.com> - 0.17.01-1
|
||||||
|
- Rebase to upstream V0.17.01
|
||||||
|
Resolves: RHEL-8966
|
||||||
|
|
||||||
* Tue Nov 22 2022 John Kacur <jkacur@redhat.com> - 0.15.00-1
|
* Tue Nov 22 2022 John Kacur <jkacur@redhat.com> - 0.15.00-1
|
||||||
- Rebase to upstream V0.15.00
|
- Rebase to upstream V0.15.00
|
||||||
- Add the following upstream patches
|
- Add the following upstream patches
|
17
tests/scripts/run_tests.sh
Normal file
17
tests/scripts/run_tests.sh
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
#!/usr/bin/bash
|
||||||
|
# make sure we have stress-ng installed
|
||||||
|
if rpm -q --quiet stress-ng; then
|
||||||
|
:
|
||||||
|
else
|
||||||
|
sudo dnf install -y stress-ng
|
||||||
|
if [[ $? != 0 ]]; then
|
||||||
|
echo "install of stress-ng failed!"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
# See if stress-ng is installed and executable
|
||||||
|
stress-ng --help 2>> /dev/null
|
||||||
|
if [[ $? != 0 ]]; then
|
||||||
|
exit 2
|
||||||
|
fi
|
12
tests/tests.yml
Normal file
12
tests/tests.yml
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
- hosts: localhost
|
||||||
|
roles:
|
||||||
|
- role: standard-test-basic
|
||||||
|
tags:
|
||||||
|
- classic
|
||||||
|
tests:
|
||||||
|
- simple:
|
||||||
|
dir: scripts
|
||||||
|
run: ./run_tests.sh
|
||||||
|
required_packages:
|
||||||
|
- make
|
||||||
|
- stress-ng
|
Loading…
Reference in New Issue
Block a user