From b213baa176d5646dc32914aec530b2be18c9fc38 Mon Sep 17 00:00:00 2001 From: Neil Horman Date: Mon, 9 Feb 2009 20:31:55 +0000 Subject: [PATCH] Resolves: bz484552 --- numactl-2.0.2-remove-warning.patch | 13 +++++++++++++ numactl.spec | 7 ++++++- 2 files changed, 19 insertions(+), 1 deletion(-) create mode 100644 numactl-2.0.2-remove-warning.patch diff --git a/numactl-2.0.2-remove-warning.patch b/numactl-2.0.2-remove-warning.patch new file mode 100644 index 0000000..cf8b6d1 --- /dev/null +++ b/numactl-2.0.2-remove-warning.patch @@ -0,0 +1,13 @@ +diff -up numactl-2.0.2/libnuma.c.orig numactl-2.0.2/libnuma.c +--- numactl-2.0.2/libnuma.c.orig 2009-02-09 15:26:41.000000000 -0500 ++++ numactl-2.0.2/libnuma.c 2009-02-09 15:26:45.000000000 -0500 +@@ -306,9 +306,6 @@ set_configured_nodes(void) + + d = opendir("/sys/devices/system/node"); + if (!d) { +- numa_warn(W_nosysfs, +- "/sys not mounted or no numa system. Assuming one node: %s", +- strerror(errno)); + maxconfigurednode = 0; + } else { + while ((de = readdir(d)) != NULL) { diff --git a/numactl.spec b/numactl.spec index dac558f..b94542d 100644 --- a/numactl.spec +++ b/numactl.spec @@ -1,7 +1,7 @@ Name: numactl Summary: Library for tuning for Non Uniform Memory Access machines Version: 2.0.2 -Release: 2%{dist} +Release: 3%{dist} License: LGPLv2/GPLv2 Group: System Environment/Base URL: ftp://oss.sgi.com/www/projects/libnuma/download @@ -9,6 +9,7 @@ Source0: ftp://oss.sgi.com/www/projects/libnuma/download/numactl-%{version}.tar Buildroot: %{_tmppath}/%{name}-buildroot Patch0: numactl-2.0.2-clearcache-fix.patch +Patch1: numactl-2.0.2-remove-warning.patch ExcludeArch: s390 s390x @@ -28,6 +29,7 @@ Provides development headers for numa library calls %prep %setup -q %patch0 -p1 +%patch1 -p1 %build make CFLAGS="$RPM_OPT_FLAGS -I. -fPIC" @@ -72,6 +74,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man3/*.3* %changelog +* Mon Feb 09 2009 Neil Horman - 2.0.2-3 +- Remove warning from libnuma (bz 484552) + * Mon Sep 29 2008 Neil Horman - 2.0.2-2 - Fix build break due to register selection in asm