Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 6 May 2010 20:54:19 +0000 (UTC)
From:      Fabien Thomas <fabient@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r207731 - head/usr.sbin/pmcstat
Message-ID:  <201005062054.o46KsJOu087523@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: fabient
Date: Thu May  6 20:54:19 2010
New Revision: 207731
URL: http://svn.freebsd.org/changeset/base/207731

Log:
  Exclude undefined symbol from ELF file when doing function resolve.
  
  MFC after: 3 days

Modified:
  head/usr.sbin/pmcstat/pmcstat_log.c

Modified: head/usr.sbin/pmcstat/pmcstat_log.c
==============================================================================
--- head/usr.sbin/pmcstat/pmcstat_log.c	Thu May  6 19:23:49 2010	(r207730)
+++ head/usr.sbin/pmcstat/pmcstat_log.c	Thu May  6 20:54:19 2010	(r207731)
@@ -539,6 +539,8 @@ pmcstat_image_add_symbols(struct pmcstat
 			return;
 		if (GELF_ST_TYPE(sym.st_info) != STT_FUNC)
 			continue;
+		if (sym.st_shndx == STN_UNDEF)
+			continue;
 
 		if (!firsttime && pmcstat_symbol_search(image, sym.st_value))
 			continue; /* We've seen this symbol already. */



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201005062054.o46KsJOu087523>