SHA256
1
0
forked from pool/numactl

- Update to version 2.0.9:

- 130207 Add a prototype for numa_bitmask_weight (Cliff W.)
- 130725 Fix hubstats huge pages bug, version number, man page (Bill Gray)
- 130726 Disable the regress-io test (Cliff W.)
- 130730 Fix typos in numactl man page; add short opts to --help
  (Petr Holasek)
- 130906 numactl: option --all/-a added for policy settings (Petr Holasek)
- 130906 libnuma: new function numa_run_on_node_mask_all (Petr Holasek)

OBS-URL: https://build.opensuse.org/package/show/Base:System/numactl?expand=0&rev=40
This commit is contained in:
Thomas Renninger 2013-10-09 14:42:19 +00:00 committed by Git OBS Bridge
parent e3e70acc65
commit beb2848482
5 changed files with 21 additions and 8 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:2f5bb6d1d5556235ec3b1ed40094d5bc2502e5bacc213d324088d63fa531c9ea
size 339373

3
numactl-2.0.9.tar.gz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:9ca033e6c14c0f26c20379b0cf9299429fd5a354a79c3c7880fd41ef69f7751c
size 341455

View File

@ -1,3 +1,16 @@
-------------------------------------------------------------------
Wed Oct 9 14:39:00 UTC 2013 - trenn@suse.de
- Update to version 2.0.9:
- 130207 Add a prototype for numa_bitmask_weight (Cliff W.)
- 130725 Fix hubstats huge pages bug, version number, man page (Bill Gray)
- 130726 Disable the regress-io test (Cliff W.)
- 130730 Fix typos in numactl man page; add short opts to --help
(Petr Holasek)
- 130906 numactl: option --all/-a added for policy settings (Petr Holasek)
- 130906 libnuma: new function numa_run_on_node_mask_all (Petr Holasek)
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Nov 8 21:39:52 UTC 2012 - trenn@suse.de Thu Nov 8 21:39:52 UTC 2012 - trenn@suse.de

View File

@ -22,7 +22,7 @@ Name: numactl
Summary: NUMA Policy Control Summary: NUMA Policy Control
License: GPL-2.0+ License: GPL-2.0+
Group: System/Management Group: System/Management
Version: 2.0.8 Version: 2.0.9
Release: 0 Release: 0
# bug437293 # bug437293
%ifarch ppc64 %ifarch ppc64

View File

@ -9,14 +9,14 @@ Signed-off-by: Thomas Renninger <trenn@suse.de>
numastat.c | 2 +- numastat.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-) 1 file changed, 1 insertion(+), 1 deletion(-)
Index: numactl-2.0.8/numastat.c Index: numactl-2.0.9/numastat.c
=================================================================== ===================================================================
--- numactl-2.0.8.orig/numastat.c --- numactl-2.0.9.orig/numastat.c
+++ numactl-2.0.8/numastat.c +++ numactl-2.0.9/numastat.c
@@ -725,7 +725,7 @@ double huge_page_size_in_bytes = 0; @@ -725,7 +725,7 @@ double huge_page_size_in_bytes = 0;
void display_version_and_exit() { void display_version_and_exit() {
char *version_string = "20120821"; char *version_string = "20130723";
- printf("%s version: %s: %s\n", prog_name, version_string, __DATE__); - printf("%s version: %s: %s\n", prog_name, version_string, __DATE__);
+ printf("%s version: %s\n", prog_name, version_string); + printf("%s version: %s\n", prog_name, version_string);
exit(EXIT_SUCCESS); exit(EXIT_SUCCESS);