Blame ChangeLogP532.txt

Packit Service a1973e
2014-06-30  
Packit Service a1973e
Packit Service a1973e
  * 511d05bc man/man1/papi_avail.1 man/man1/papi_clockres.1
Packit Service a1973e
  man/man1/papi_command_line.1...: Regenerate man pages for a pending 5.3.2
Packit Service a1973e
  release
Packit Service a1973e
Packit Service a1973e
  * a07adc91 doc/Doxyfile-common papi.spec src/Makefile.in...: Bump version
Packit Service a1973e
  number for a 5.3.2 release
Packit Service a1973e
Packit Service a1973e
2014-06-27  
Packit Service a1973e
Packit Service a1973e
  * 43070347 src/components/coretemp/linux-coretemp.c
Packit Service a1973e
  src/components/micpower/linux-micpower.c src/components/net/linux-net.c: Fix
Packit Service a1973e
  a warning in component initialization  A copy/paste perpetuated a multiple
Packit Service a1973e
  definition of available_domains
Packit Service a1973e
Packit Service a1973e
2014-06-24  
Packit Service a1973e
Packit Service a1973e
  * ea216f5a src/run_tests.sh src/run_tests_exclude.txt
Packit Service a1973e
  src/run_tests_exclude_cuda.txt: Fix excluded files for run_tests  Gary Mohr
Packit Service a1973e
  pointed out that in a Makefile refactor we neglected to update the tests
Packit Service a1973e
  eclude creteria -------------------------------- It turns out that you guys
Packit Service a1973e
  have made changes in the way the tests are built which have introduced errors
Packit Service a1973e
  when running the scripts. The script attempted to automatically remove the
Packit Service a1973e
  makefiles from the list of files it would execute but your build changes
Packit Service a1973e
  broke the makefiles up into several files and renamed all of them. So the
Packit Service a1973e
  script was trying to execute them.  I decided the most flexible way to handle
Packit Service a1973e
  this is to remove the code from the script that looks for makefiles and just
Packit Service a1973e
  add them to the exclude files used by the script. The script will not execute
Packit Service a1973e
  any file listed in the exclude file.  The attached patch implements these
Packit Service a1973e
  changes so the script runs correctly with the current papi build files.  Gary
Packit Service a1973e
  --------------------------------
Packit Service a1973e
Packit Service a1973e
2014-05-16  
Packit Service a1973e
Packit Service a1973e
  * aacf9628 man/man3/PAPI_enum_cmp_event.3 man/man3/PAPI_enum_event.3
Packit Service a1973e
  man/man3/PAPI_get_overflow_event_index.3...: Printf formatting change... 
Packit Service a1973e
  Based upon a patch by Steve Kaufmann.  I took the liberty of removing all the
Packit Service a1973e
  leading "0x" as part of formatting output strings. Now the "%#" syntax is
Packit Service a1973e
  used to print out hexidecimal values with a leading "0x" (letting the printf
Packit Service a1973e
  function do the work).
Packit Service a1973e
Packit Service a1973e
2014-03-26  
Packit Service a1973e
Packit Service a1973e
  * 0c93f0a1 src/components/nvml/linux-nvml.c src/components/nvml/linux-nvml.h:
Packit Service a1973e
  Add units to NVML component  Thanks to Brian Lemke at Bull for the patch.
Packit Service a1973e
Packit Service a1973e
2014-02-26  
Packit Service a1973e
Packit Service a1973e
  * 2c79fab8 src/configure src/configure.in: configure: respect
Packit Service a1973e
  --with-walltimer and virtualtimer  For whatever reason configure would not
Packit Service a1973e
  check for the --with-walltimer argument if we had already determined one (See
Packit Service a1973e
  BG/P and CLE sections also --with-mic option).  This is not desirable, kill
Packit Service a1973e
  this behaviour.
Packit Service a1973e
Packit Service a1973e
2014-01-30  
Packit Service a1973e
Packit Service a1973e
  * 284f25c2 src/components/lustre/linux-lustre.c
Packit Service a1973e
  src/components/net/linux-net.c: Use correct specification for signed and
Packit Service a1973e
  unsigned int  A run of cppcheck showed that some mismatches between the
Packit Service a1973e
  specfications for sscanf and the variables being used to store the values. 
Packit Service a1973e
  This corrects those minor issues.
Packit Service a1973e
Packit Service a1973e
2014-02-04  
Packit Service a1973e
Packit Service a1973e
  * 291bad11 src/components/coretemp/linux-coretemp.c
Packit Service a1973e
  src/components/coretemp_freebsd/coretemp_freebsd.c
Packit Service a1973e
  src/components/host_micpower/linux-host_micpower.c...: Update the
Packit Service a1973e
  domain/granularity of many components  Many PAPI components only report
Packit Service a1973e
  system wide events, here we attempt to match up entries in the .cmp_info
Packit Service a1973e
  struct with reality by only allowing PAPI_GRAN_SYS and PAPI_DOM_ALL.
Packit Service a1973e
Packit Service a1973e
2013-12-30  
Packit Service a1973e
Packit Service a1973e
  * eeefec5c src/ctests/attach2.c src/ctests/attach3.c: ctests/attach[2,3]: Fix
Packit Service a1973e
  ptrace call for BSD  "The  SunOS  man page describes ptrace() as "unique and
Packit Service a1973e
  arcane", which it is."
Packit Service a1973e
Packit Service a1973e
  * 27d416c8 src/configure src/configure.in: Configure.in: Remove Bash-isms
Packit Service a1973e
  from comp selection  Part of a patch set by Gleb Smirnoff
Packit Service a1973e
Packit Service a1973e
  * 52f8979f src/configure src/configure.in: Configure.in: Correctly detect
Packit Service a1973e
  FreeBSD OS version  The script incorrectly parsed "FreeBSD 10" as "FreeBSD
Packit Service a1973e
  1". Part of a series of patches by Gleb Smirnoff