From 3467aa462a47548f7db76ef641bf950e1420449f Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Wed, 3 Jun 2015 01:43:07 +0200 Subject: [PATCH] stress-ng 0.04.04 -> 0.04.05 Changes: - Ensure maximum sizes don't exceed 4GB-1 for 32 bit systems - stress-crypt: only use re-entrant crypt_r on Linux for now - Add perf reference in manual, update date - stress-vm-rw: zero msg_wr just to be totally safe - stress-crypt: use reentrant crypt_r to avoid any memory leaks - stress-zombie: free items on list head on exit - stress-lockf: free items on list head on exit - stress-wcstr: fix incorrect wide string size - Add int8, int16, int32 and int64 versions of mwc*() - Increase various stressors upper memory limits - Make --aggressive force more CPU migrations and context switches - Fix comment for stress_get_ticks_per_second - perf: enable inherit flag to trace children - Add the new --getrandom stressor - Fix sigq options, missing because not using STRESS_SIGQUEUE - Fix help -h option, was --h, should be -h - avoid builtins when libs shall be tested - add stressor for wide character sting operations - fix string names - avoid compiler error in stress-vector - fix EPOLL build --- pkgs/tools/system/stress-ng/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/system/stress-ng/default.nix b/pkgs/tools/system/stress-ng/default.nix index ebe6306120e..2a0b2816ba7 100644 --- a/pkgs/tools/system/stress-ng/default.nix +++ b/pkgs/tools/system/stress-ng/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, attr }: -let version = "0.04.04"; in +let version = "0.04.05"; in stdenv.mkDerivation rec { name = "stress-ng-${version}"; src = fetchurl { - sha256 = "1rq78s4xrylm63xygakrvjg5g774qmm968p0v69x2c795dv3s8di"; + sha256 = "1xj3rrcvpjl3sgvl22m0bdrkscxxnipzh4s1ivmrifw7lq2zq1kg"; url = "http://kernel.ubuntu.com/~cking/tarballs/stress-ng/${name}.tar.gz"; };