rpms/numactl/devel numactl-2.0.3-rc3-distance_parsing.patch, NONE, 1.1 .cvsignore, 1.7, 1.8 numactl.spec, 1.57, 1.58 sources, 1.7, 1.8 numactl-1.0.2-alpha-syscall.patch, 1.1, NONE numactl-1.0.2-cpumask.patch, 1.1, NONE numactl-1.0.2-get_mempolicy-const.patch, 1.2, NONE

Neil Horman nhorman at fedoraproject.org
Fri May 8 18:57:01 UTC 2009


Author: nhorman

Update of /cvs/extras/rpms/numactl/devel
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv12972

Modified Files:
	.cvsignore numactl.spec sources 
Added Files:
	numactl-2.0.3-rc3-distance_parsing.patch 
Removed Files:
	numactl-1.0.2-alpha-syscall.patch numactl-1.0.2-cpumask.patch 
	numactl-1.0.2-get_mempolicy-const.patch 
Log Message:
Resolves: bz 499633

numactl-2.0.3-rc3-distance_parsing.patch:

--- NEW FILE numactl-2.0.3-rc3-distance_parsing.patch ---
diff -up numactl-2.0.3-rc3/distance.c.orig numactl-2.0.3-rc3/distance.c
--- numactl-2.0.3-rc3/distance.c.orig	2009-05-08 10:10:06.000000000 -0400
+++ numactl-2.0.3-rc3/distance.c	2009-05-08 10:13:01.000000000 -0400
@@ -50,6 +50,7 @@ static int read_distance_table(void) 
 	int numnodes = 0; 
 	int *table = NULL; 
 	int err = -1;
+	int found_nodes = 0;
 	
 	for (nd = 0;; nd++) { 
 		char fn[100]; 
@@ -57,7 +58,7 @@ static int read_distance_table(void) 
 		sprintf(fn, "/sys/devices/system/node/node%d/distance", nd);
 		dfh = fopen(fn, "r"); 
 		if (!dfh) { 
-			if (errno == ENOENT && nd > 0)
+			if (errno == ENOENT)
 				err = 0;
 			if (!err && nd<numa_num_configured_nodes())
 				continue;
@@ -79,14 +80,15 @@ static int read_distance_table(void) 
 		} 
 
 		parse_numbers(line, table + nd * numnodes, numnodes);
+		found_nodes++;
 	}
 	free(line); 
-	if (err)  { 
+	if (!found_nodes)  { 
 		numa_warn(W_distance,
 			  "Cannot parse distance information in sysfs: %s",
 			  strerror(errno));
 		free(table); 
-		return err;
+		return -1;
 	}
 	/* Update the global table pointer.  Race window here with
 	   other threads, but in the worst case we leak one distance


Index: .cvsignore
===================================================================
RCS file: /cvs/extras/rpms/numactl/devel/.cvsignore,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -p -r1.7 -r1.8
--- .cvsignore	29 Sep 2008 19:45:39 -0000	1.7
+++ .cvsignore	8 May 2009 18:56:31 -0000	1.8
@@ -1 +1,2 @@
 numactl-2.0.2.tar.gz
+numactl-2.0.3-rc3.tar.gz


Index: numactl.spec
===================================================================
RCS file: /cvs/extras/rpms/numactl/devel/numactl.spec,v
retrieving revision 1.57
retrieving revision 1.58
diff -u -p -r1.57 -r1.58
--- numactl.spec	25 Mar 2009 15:07:55 -0000	1.57
+++ numactl.spec	8 May 2009 18:56:31 -0000	1.58
@@ -1,15 +1,14 @@
 Name:		numactl
 Summary:	Library for tuning for Non Uniform Memory Access machines
-Version:	2.0.2
-Release:	4%{dist} 
+Version:	2.0.3
+Release:	1%{dist} 
 License:	LGPLv2/GPLv2
 Group: 		System Environment/Base
 URL:		ftp://oss.sgi.com/www/projects/libnuma/download
-Source0: 	ftp://oss.sgi.com/www/projects/libnuma/download/numactl-%{version}.tar.gz 
+Source0:	ftp://oss.sgi.com/www/projects/libnuma/download/numactl-%{version}-rc3.tar.gz
 Buildroot:	%{_tmppath}/%{name}-buildroot
 
-Patch0: numactl-2.0.2-clearcache-fix.patch
-Patch1: numactl-2.0.2-remove-warning.patch
+Patch0: numactl-2.0.3-rc3-distance_parsing.patch
 
 ExcludeArch: s390 s390x
 
@@ -27,20 +26,17 @@ Requires: %{name} = %{version}-%{release
 Provides development headers for numa library calls
 
 %prep
-%setup -q 
+%setup -q -n %{name}-%{version}-rc3
 %patch0 -p1
-%patch1 -p1
 
 %build
-make CFLAGS="$RPM_OPT_FLAGS -I. -fPIC"
+make CFLAGS="$RPM_OPT_FLAGS -I."
 
 %install
 rm -rf $RPM_BUILD_ROOT
 mkdir -p $RPM_BUILD_ROOT%{_bindir}
 mkdir -p $RPM_BUILD_ROOT%{_libdir}
 mkdir -p $RPM_BUILD_ROOT%{_includedir}
-mkdir -p $RPM_BUILD_ROOT%{_mandir}/man3
-mkdir -p $RPM_BUILD_ROOT%{_mandir}/man5
 mkdir -p $RPM_BUILD_ROOT%{_mandir}/man8
 
 make prefix=$RPM_BUILD_ROOT/usr libdir=$RPM_BUILD_ROOT/%{_libdir} install
@@ -61,7 +57,6 @@ rm -rf $RPM_BUILD_ROOT
 %{_bindir}/memhog
 %{_bindir}/migspeed
 %{_bindir}/migratepages
-%{_mandir}/man5/*.5*
 %{_mandir}/man8/*.8*
 
 %files devel
@@ -74,6 +69,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*.3*
 
 %changelog
+* Fri May 08 2009 Neil Horman <nhorman at redhat.com>
+- Update to 2.0.3-rc3 (bz 499633)
+
 * Wed Mar 25 2009 Mark McLoughlin <markmc at redhat.com> - 2.0.2-4
 - Remove warning from libnuma (bz 484552)
 


Index: sources
===================================================================
RCS file: /cvs/extras/rpms/numactl/devel/sources,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -p -r1.7 -r1.8
--- sources	29 Sep 2008 19:45:39 -0000	1.7
+++ sources	8 May 2009 18:56:31 -0000	1.8
@@ -1 +1 @@
-82fe5bba94368850c8f5ffd0752b500b  numactl-2.0.2.tar.gz
+4d7ab06668024a1d59cf7a4997a9acd2  numactl-2.0.3-rc3.tar.gz


--- numactl-1.0.2-alpha-syscall.patch DELETED ---


--- numactl-1.0.2-cpumask.patch DELETED ---


--- numactl-1.0.2-get_mempolicy-const.patch DELETED ---




More information about the scm-commits mailing list