Blame ChangeLogP540.txt

Packit 577717
2014-11-13  
Packit 577717
Packit 577717
  * 8f524875 RELEASENOTES.txt: Prepare release notes for a 5.4.0 release
Packit 577717
Packit 577717
2014-11-12  
Packit 577717
Packit 577717
  * a8b4613b man/man1/papi_avail.1 man/man1/papi_clockres.1
Packit 577717
  man/man1/papi_command_line.1...: Rebuild the doxygen manpages
Packit 577717
Packit 577717
  * fbea4897 src/run_tests_exclude.txt: Remove omptough from standard
Packit 577717
  run_tests.sh testing  On some platforms (e.g. some AMD machines), if
Packit 577717
  OMP_NUM_THREADS is not set, then this test does not complete in a reasonable
Packit 577717
  time.  That is because on these platforms too many threads are spawned inside
Packit 577717
  a large loop.
Packit 577717
Packit 577717
2014-11-11  
Packit 577717
Packit 577717
  * 23c2705b src/components/bgpm/CNKunit/linux-CNKunit.c
Packit 577717
  src/components/bgpm/IOunit/linux-IOunit.c
Packit 577717
  src/components/bgpm/IOunit/linux-IOunit.h...: Fix number of counters and
Packit 577717
  events for each of the 5 BGPM units as well as emon on BG/Q
Packit 577717
Packit 577717
2014-11-07  
Packit 577717
Packit 577717
  * 93c69ded src/linux-timer.c: Patch linux-timer.c to provide cycle counter
Packit 577717
  support on aarch64 (64-bit ARMv8 architecture)  Thanks to William Cohen for
Packit 577717
  this patch and the message below: --- The aarch64 has cycle counter available
Packit 577717
  to userspace and this resource should be made available in papi. --- This
Packit 577717
  patch is not tested by the PAPI team (no easily available hardware).
Packit 577717
Packit 577717
2014-11-06  
Packit 577717
Packit 577717
  * 038b2f31 src/components/rapl/linux-rapl.c: Extension of the RAPL energy
Packit 577717
  measurements on Intel via msr-safe.
Packit 577717
  (https://github.com/scalability-llnl/msr-safe)  msr-safe is a linux kernel
Packit 577717
  module that allows user access to a whitelisted set of MSRs. It is nearly
Packit 577717
  identical in structure to the stock msr kernel module, with the important
Packit 577717
  exception that the "capabilities" check has been removed.  The LLNL sysadmins
Packit 577717
  did a security review for the whitelist.
Packit 577717
Packit 577717
  * 67e0b3f6 src/components/rapl/tests/rapl_basic.c: Fixed string null
Packit 577717
  termination.
Packit 577717
Packit 577717
2014-10-30  
Packit 577717
Packit 577717
  * 2a1805ec src/components/perf_event/pe_libpfm4_events.c
Packit 577717
  src/components/perf_event/pe_libpfm4_events.h
Packit 577717
  src/components/perf_event/perf_event.c...: Patch to reduce cost of using
Packit 577717
  PAPI_name_to_code and add list of supported pmu names to papi_component_avail
Packit 577717
  output  Thanks to Gary Mohr for this patch and its documentation: --- This
Packit 577717
  patch file contains code to look for either pmu names or component names on
Packit 577717
  the front of event strings passed to PAPI_name_to_code calls.  If found the
Packit 577717
  name will be compared to values in each component info structure to see if
Packit 577717
  the component supports this event.  If the pmu name or component name does
Packit 577717
  not match the values in the component info structure then there is no need to
Packit 577717
  call this component for this event.  If the event string does not contain
Packit 577717
  either a pmu name or a component name then all components will be called. 
Packit 577717
  This reduces the overhead in PAPI when converting event names to event codes
Packit 577717
  when either component names or pmu names are provided in the event name
Packit 577717
  string.  To support the above checks, there is also code in this patch to add
Packit 577717
  an array of pmu names to the component info structure and modifications to
Packit 577717
  the core and uncore components to save the pmu names supported by each of
Packit 577717
  these components in this new array.  This patch also adds code to the
Packit 577717
  papi_component_avail tool to display the pmu names supported by each active
Packit 577717
  component. ---
Packit 577717
Packit 577717
2014-10-28  
Packit 577717
Packit 577717
  * a91db97b src/components/net/linux-net.c src/components/nvml/linux-nvml.c
Packit 577717
  src/components/perf_event/perf_event.c...: This patch file contains
Packit 577717
  additional changes to resolve defects reported by Coverity.  Thanks to Gary
Packit 577717
  Mohr for this patch. ------ This patch file contains additional changes to
Packit 577717
  resolve defects reported by Coverity.  Mostly these just make sure that
Packit 577717
  character buffers get null terminated so they can be used as C strings. 
Packit 577717
  There is also a change in the RAPL component to improve the message to
Packit 577717
  identify why the component may have been disabled. ------
Packit 577717
Packit 577717
2014-10-22  
Packit 577717
Packit 577717
  * 3f913658 src/ctests/tenth.c: Fix percent error calculation in
Packit 577717
  ctests/tenth.c  Thanks to Carl Love for this patch and the following
Packit 577717
  documentation:  Do the division first then multiply by 100 when calculating
Packit 577717
  the percent error.  This will keep the magnitude of the numbers closer.  If
Packit 577717
  you multiply by 100 before dividing you may exceed the size the representable
Packit 577717
  number size.  Additionally, by casting the values to floats then dividing we
Packit 577717
  get more accuracy in the calculation of the percent error.  The integer
Packit 577717
  division will not give us a percent error less then 1.
Packit 577717
Packit 577717
  * ba5ef24a src/papi_events.csv: PPC64, fix L1 data cache read, write and all
Packit 577717
  access equations.  Thanks to Carl Love for this patch and the following
Packit 577717
  documentation:  The current POWER 7 equations for all accesses over counts
Packit 577717
  because it includes non load accesses to the cache.  The equation was changed
Packit 577717
  to be the sum of the reads and the writes.  The read accesses to the two
Packit 577717
  units, can be counted with the single event PM_LD_REF_L1 rather then counting
Packit 577717
  the events to the two LSU units independently.  The number of reads to the L1
Packit 577717
  must be adjusted by subtracting the misses as these become writes.  Power 8
Packit 577717
  has four LSU units. The same equations can be used since PM_LD_REF_L1 counts
Packit 577717
  across all four LSU units.
Packit 577717
Packit 577717
  * 882f5765 src/utils/native_avail.c: This patch file fixes two problems and
Packit 577717
  adds a performance improvement in "papi_native_avail.  Thanks to Gary Mohr
Packit 577717
  for this patch and the following information:  First it corrects a problem
Packit 577717
  when using the -i or -x options.  The code was putting out too many event
Packit 577717
  divider lines (lines with all '-' characters).  This has been corrected. 
Packit 577717
  Second it improves the results from "papi_native_avail --validate" when being
Packit 577717
  used on SNBEP systems.  This system has some events which require multiple
Packit 577717
  masks to be provided for them to be valid.  The validate code was showing
Packit 577717
  these events as not available because it did not try to use the event with
Packit 577717
  the correct combination of masks.  The fix checks to see if a valid form of
Packit 577717
  the event has not yet been found and if so then it tries the event with
Packit 577717
  specific combinations of masks that have been found to make these events
Packit 577717
  work.  It also adds a check before trying to validate the event with a new
Packit 577717
  mask to see if a valid form of the event has already been found.  If it has
Packit 577717
  then there is no need to try and validate the event again.
Packit 577717
Packit 577717
  * 94985c8a src/config.h.in src/configure src/configure.in...: Fix build error
Packit 577717
  when no fortan is installed  Thanks to Maynard Johnson for this patch. Fix up
Packit 577717
  the build mechanism to properly handle the case where no Fortran compiler is
Packit 577717
  installed -- i.e., don't build or install testlib/ftest_util.o or the ftests.
Packit 577717
Packit 577717
2014-10-16  
Packit 577717
Packit 577717
  * de05a9d8 src/linux-common.c: PPC64 add support for the Power non
Packit 577717
  virtualized platform  Thanks to Carl Love for this patch and the following
Packit 577717
  description: The Power 8 system can be run as a non-virtualized machine.  In
Packit 577717
  this case, the platform is "PowerNV".  This patch adds the platform to the
Packit 577717
  possible IBM platform types.
Packit 577717
Packit 577717
  * 547f4412 src/ctests/byte_profile.c: byte_profile.c: PPC64 add support for
Packit 577717
  PPC64 Little Endian to byte_profile.c  Thanks to Carl Love for this patch and
Packit 577717
  the following description: The POWER 8 platform is Little Endian.  It uses
Packit 577717
  ELF version 2 which does not use function descriptors.  This patch adds the
Packit 577717
  needed #ifdef support to correctly compile the test case for Big Endian or
Packit 577717
  Little Endian.  This patch is untested by the PAPI developers (hardware not
Packit 577717
  easily accessible).
Packit 577717
Packit 577717
2014-10-15  
Packit 577717
Packit 577717
  * 14f70ebc src/ctests/sprofile.c: PPC64 add support for PPC64 Little Endian
Packit 577717
  to sprofile.c  Thanks to Carl Love for this patch and the following
Packit 577717
  description: The POWER 8 platform is Little Endian.  It uses ELF version 2
Packit 577717
  which does not use function descriptors.  This patch adds the needed #ifdef
Packit 577717
  support to correctly compile the test case for Big Endian or Little Endian.
Packit 577717
Packit 577717
  * 6d41e208 src/linux-memory.c: PPC64 sys_mem_info array size is wrong  Thanks
Packit 577717
  to Carl Love for this patch and the following description: The variable
Packit 577717
  sys_mem_info is an array of type PAPI_mh_info_t.  It is statically declared
Packit 577717
  as size 4.  The data for POWER8 is statically declared in entry 4 of the
Packit 577717
  array which is beyond the allocated array.  The array should be declared
Packit 577717
  without a size so the compiler will automatically determine the correct size
Packit 577717
  based on the number of elements being initialized.  This patch makes the
Packit 577717
  change.
Packit 577717
Packit 577717
  * 061817e0 src/papi_events.csv: Remove stray Intel Haswell events from Intel
Packit 577717
  Ivy Bridge presets  Thanks to William Cohen for this patch and the following
Packit 577717
  description: 'Commit 4c87d753ab56688acad5bf0cb3b95eae8aa80458 added some
Packit 577717
  events meant for Intel Haswell to the Intel Ivy bridge presets.  This patch
Packit 577717
  removes those stray events.  Without this patch on Intel Ivy Bridge machines
Packit 577717
  would see messages like the following: PAPI Error: papi_preset: Error finding
Packit 577717
  event L2_TRANS:DEMAND_DATA_RD. PAPI Error: papi_preset: Error finding event
Packit 577717
  L2_RQSTS:ALL_DEMAND_REFERENCES.'  This patch was not tested by the PAPI team
Packit 577717
  (no appropriate hardware).
Packit 577717
Packit 577717
2014-10-14  
Packit 577717
Packit 577717
  * 8bc1ff85 src/papi_events.csv: Update papi_events.csv to match libpfm
Packit 577717
  support for Intel family 6 model 63 (hsw_ep)  Thanks to William Cohen for
Packit 577717
  this patch and its information: 'A recent September 11, 2014 patch (98c00b)
Packit 577717
  to the upstream libpfm split out Intel family 6 model 63 into its own name of
Packit 577717
  "hsw_ep".  The papi_events.csv needs to be updated to support that new name. 
Packit 577717
  This should have no impact for older libpfms that still identify Intel family
Packit 577717
  6 model 63 as "hswv" and "hsw_ep" map to the same papi presets.'
Packit 577717
Packit 577717
  * 32a8b758 src/papi_events.csv: Support for the ARM X-Gene processor.  Thanks
Packit 577717
  to William Cohen for this patch. The events for the Applied Micro X-Gene
Packit 577717
  processor are slightly different from other ARM processors.  Thus, need to
Packit 577717
  define those presets for the X-Gene processor.  Note: This patch is not
Packit 577717
  tested by the PAPI team because we do not have the appropriate hardware.
Packit 577717
Packit 577717
  * 0a97f54e src/components/perf_event/pe_libpfm4_events.c
Packit 577717
  .../perf_event_uncore/peu_libpfm4_events.c src/papi_internal.c...: Thanks to
Packit 577717
  Gary Mohr for the patch  ---------------------  Fix for bugs in
Packit 577717
  PAPI_get_event_info when using the core and uncore components: 
Packit 577717
  PAPI_get_event_info returns incorrect / incomplete information.  The errors
Packit 577717
  were in how the code handled event masks and their descriptions so the errors
Packit 577717
  would not lead to program failures, just the possibility of incorrect
Packit 577717
  labeling of output.  ---------------------
Packit 577717
Packit 577717
2014-10-09  
Packit 577717
Packit 577717
  * 77960f71 src/components/perf_event/pe_libpfm4_events.c: Record
Packit 577717
  encode_failed error by setting attr.config to 0xFFFFFFF.  This causes any
Packit 577717
  later validate attempts to fail, which is the desired behavior.  Note: as of
Packit 577717
  2014/10/09 this has not been thoroughly tested, since a failure case is not
Packit 577717
  known.  This patch simply copies a fix that was applied to the
Packit 577717
  perf_event_uncore component.
Packit 577717
Packit 577717
2014-09-25  
Packit 577717
Packit 577717
  * 00ae8c1e src/components/perf_event_uncore/peu_libpfm4_events.c: Based on
Packit 577717
  Gary Mohr's suggestion.  If an event fails when we try to add it
Packit 577717
  (encode_failed), then we note that error by setting attr.config = 0xFFFFFF
Packit 577717
  for that event.  Then, if there is a later check to validate this event, the
Packit 577717
  check will correctly return an error.
Packit 577717
Packit 577717
  * 3801faaf src/utils/native_avail.c: Adding the NativeAvailValidate patch
Packit 577717
  provided by Gary Mohr.  The problem being addresed is that if there were any
Packit 577717
  problems validating event masks, then those problems would result in the
Packit 577717
  entire event being invalid.  The desired action was to test each event mask,
Packit 577717
  and if any basic event mask can make the event succeed, then the event should
Packit 577717
  be returned as valid and available.  The solution is to create a large buffer
Packit 577717
  and write events and masks into this buffer as they are processed, tracking
Packit 577717
  their validity.  At the end go back and mark the validity of the entire
Packit 577717
  event.  This matches the standard output of PAPI.
Packit 577717
Packit 577717
2014-09-24  
Packit 577717
Packit 577717
  * 6abc8196 src/components/emon/README src/components/emon/Rules.emon
Packit 577717
  src/components/emon/linux-emon.c: Emon power component for BG/Q
Packit 577717
Packit 577717
2014-09-23  
Packit 577717
Packit 577717
  * 62b9f2a9 .../perf_event_uncore/perf_event_uncore.c: perf_event_uncore.c:
Packit 577717
  Check scheduability of events  Patch by Gary Mohr, ------------------- This
Packit 577717
  patch file adds code to the uncore component to check and make sure that the
Packit 577717
  events being opened from an event set can be scheduled by the kernel.  This
Packit 577717
  kind of code exists in the core component but was not moved into the uncore
Packit 577717
  component because it was felt that it would not be an issue with uncore. 
Packit 577717
  Turns out the kernel has the same kind of issues when scheduling uncore
Packit 577717
  events.  The symptoms of this problem will show that the kernel will report
Packit 577717
  that all events in the event set were opened successfully but when trying to
Packit 577717
  read the results one (or more) of the events will get a read failure.  Seen
Packit 577717
  in the traces and on stderr (if papi configured with debug=yes) as a "short
Packit 577717
  read" error.  The logic is slightly different than what is in the core
Packit 577717
  component because the events in the core component are grouped and the ones
Packit 577717
  in the uncore are not grouped.  When events are grouped, you only need to
Packit 577717
  enable/disable and read results on the group leader. But when they are not
Packit 577717
  grouped you need to do these operations on each event in the event set.
Packit 577717
Packit 577717
2014-09-19  
Packit 577717
Packit 577717
  * 8e6bf887 src/components/cuda/linux-cuda.c
Packit 577717
  src/components/infiniband/linux-infiniband.c
Packit 577717
  src/components/lustre/linux-lustre.c...: Address coverity defects in
Packit 577717
  src/components  Thanks Gary Mohr ----------------  This patch file contains
Packit 577717
  fixes for defects reported by Coverity in the /src/components directory.
Packit 577717
  Mostly these changes just make sure that char buffers get null terminated so
Packit 577717
  that when they get used as a C string (they usually do) we will not end up
Packit 577717
  with unpredictable results.  A problem has been reported by one of our
Packit 577717
  testers that the lustre component produced very long event names with lots of
Packit 577717
  unprintable garbage in the names.  It turns out this was caused by a buffer
Packit 577717
  that filled up and never got null terminated.  Then string functions were
Packit 577717
  used on the buffer which picked up the whole buffer and lots more.  These
Packit 577717
  changes fixed the problem.
Packit 577717
Packit 577717
  * 266c61a4 src/linux-common.c src/papi_hl.c src/papi_internal.c...: Address
Packit 577717
  coverity reported issues in src/  Thanks to Gary Mohr -------------------
Packit 577717
  Changes in this patch file:  linux-common.c:  Add code to insure that cpu
Packit 577717
  info vendor_string and model_string buffers are NULL terminated strings. 
Packit 577717
  Also insure that the value which gets read into mdi->exe_info.fullname gets
Packit 577717
  NULL terminated. This makes it safe to use the  'strxxx' functions on the
Packit 577717
  value (which is done immediately after it is read in).  papi_hl.c:  Fix call
Packit 577717
  to _hl_rate_calls() where the third argument was not the correct data type. 
Packit 577717
  papi_internal.c:  Add code to insure that event info name, short_desc, and
Packit 577717
  long_desc buffers are NULL terminated strings.  papi_user_events.c:  While
Packit 577717
  processing define symbols, insure that the 'local_line', 'name', and 'value'
Packit 577717
  buffers get NULL terminated (so we can safely use 'strxxx' functions on
Packit 577717
  them). Insure that the 'symbol' field in the user defined event ends up NULL
Packit 577717
  terminated. Rearrange code to avoid falling through from one case to the next
Packit 577717
  in a switch statement. Coverity flagged falling out the bottom of a case
Packit 577717
  statement as a potential defect but it was doing what it should. 
Packit 577717
  sw_multiplex.c:  Unnecessary test.  The value of ESI can not be NULL when
Packit 577717
  this code is reached.  x86_cpuid_info.c:  The variable need_leaf4 is set but
Packit 577717
  not used.  The only place it gets set returns without checking its value. 
Packit 577717
  The place that checks its value never could have set its value non-zero.
Packit 577717
Packit 577717
2014-09-12  
Packit 577717
Packit 577717
  * d72277fc release_procedure.txt: Update release procedure, check buildbot!
Packit 577717
Packit 577717
2014-09-08  
Packit 577717
Packit 577717
  * a0e4f9a7 src/components/perf_event_uncore/perf_event_uncore.c: Uncore
Packit 577717
  component fix:  By Gary Mohr, The line that sets exclude_guests in the uncore
Packit 577717
  component is there because it also there in the core component.  But when I
Packit 577717
  look at it closer, it is an error in both cases.  I will submit a patch to
Packit 577717
  remove them and get rid of some commented out code that no longer belongs in
Packit 577717
  the source.  The uncore events do not support the concept of excluding the
Packit 577717
  host or guest os so we should never set either bit.  But the core events do
Packit 577717
  support this concept and libpfm4 provides event masks "mg" and "mh" to
Packit 577717
  control counting in these domains.  By default if neither is set then libpfm4
Packit 577717
  excludes counting in the guest os, if either "mh" or "mg" is provided as an
Packit 577717
  event mask then it is counted but the other is excluded, and if both are
Packit 577717
  provided then both are counted.  So when the code forces the exclude_guest
Packit 577717
  bit to be set it breaks the ability to fully control what will happen with
Packit 577717
  the masks.  I did not notice the uncore part of this problem when testing on
Packit 577717
  my SNB system, probably because we use an older kernel which tolerated the
Packit 577717
  bit being set (or maybe because HSW is handled differently).
Packit 577717
Packit 577717
2014-09-02  
Packit 577717
Packit 577717
  * 4499fee7 src/papi_internal.c: Thanks to Gary Mohr for the patch
Packit 577717
  --------------------- Fix in papi_internal.c where it was trying to look up
Packit 577717
  the event name.  The RAPL component found the event and returned a code but
Packit 577717
  papi_internal.c  exited the enum loop for that component but failed to exit
Packit 577717
  the loop that checks all of the components.  This caused it to keep looking
Packit 577717
  at other components until it fell out of the outer loop and returned an
Packit 577717
  error. In addition to the actual change, some formatting issues were fixed.
Packit 577717
  ---------------------
Packit 577717
Packit 577717
  * f5835c26 src/components/perf_event/perf_event_lib.h: Bump NUM_MPX_COUNTERS
Packit 577717
  for linux-perf  Uncore on SNB and newer systems has enough counters to go
Packit 577717
  beyond the 64 array spaces we allocate. This needs a better long term
Packit 577717
  solution.  Reported by Gary Mohr --------------------- When running on snbep
Packit 577717
  systems with the uncore component enabled, if papi is configured with
Packit 577717
  debug=yes then the message "Warning!  num_cntrs is more than num_mpx_cntrs"
Packit 577717
  gets written to stderr.  This happens because the snbep uncore pmu's have a
Packit 577717
  total of 81 counters and PAPI is set to only accept a maximum of 64 counters.
Packit 577717
   This change increases the amount PAPI will accept to 100 (prevents the
Packit 577717
  warning message from being printed). ---------------------
Packit 577717
Packit 577717
  * 07990f85 src/ctests/branches.c src/ctests/calibrate.c
Packit 577717
  src/ctests/describe.c...: ctests/ Address coverity reported defects  Thanks
Packit 577717
  to Gary Mohr for the patch --------------------------------- he contents of
Packit 577717
  this patch file fix defects reported by Coverity in the directory
Packit 577717
  'papi/src/ctests'.  The defect reported in branches.c was that a comparison
Packit 577717
  between different kinds of data was being done.  The defect reported in
Packit 577717
  calibrate.c was that the variable 'papi_event_str' could end up without a
Packit 577717
  null terminator.  The defects reported in describe.c, get_event_component.c,
Packit 577717
  and krentel_pthreads.c were that return values from function calls were being
Packit 577717
  stored in a variable but never being used.  I also did a little clean-up in
Packit 577717
  describe.c.  This test had been failing for me on Intel NHM and SNBEP but now
Packit 577717
  it runs and reports that it PASSED. ---------------------------------
Packit 577717
Packit 577717
2014-08-29  
Packit 577717
Packit 577717
  * 74cb07df src/testlib/test_utils.c: testlib/test_util.c: Check enum return
Packit 577717
  value  Addresses an issue found by Coverity. Thanks Gary Mohr,
Packit 577717
  ---------------- The changes in this patch file fixes the only defect in the
Packit 577717
  src/testlib directory.  The defect reported that the return value from a call
Packit 577717
  to PAPI_enum_cmp_event was being ignored.  This call to enum events is to get
Packit 577717
  the first event for the component index passed into this function. It turns
Packit 577717
  out that the function that contains this code is only ever called by the
Packit 577717
  overflow_allcounters ctest and it only calls once and always passes a
Packit 577717
  component index of 0 (perf_event).  So I added code to check the return value
Packit 577717
  and fail the test if an error was returned. ----------------
Packit 577717
Packit 577717
  * 74041b3e src/utils/event_info.c: event_info utility: address coverity
Packit 577717
  defect  From Gary Mohr -------------- This patch corrects a defect reported
Packit 577717
  by Coverity.  The defect reported that the call to PAPI_enum_cmp_event was
Packit 577717
  setting retval which was never getting used before it got set again by a call
Packit 577717
  to PAPI_get_event_info.  After looking at the code, I decided that we should
Packit 577717
  not be trying to get the next event inside a loop that is enumerating masks
Packit 577717
  for the current event.  It makes more sense to break out of the loop to get
Packit 577717
  masks and let the outer loop that is walking the events get the next event.
Packit 577717
  --------------
Packit 577717
Packit 577717
2014-08-28  
Packit 577717
Packit 577717
  * 62dceb9b src/utils/native_avail.c: Extend 'papi_native_event --validate' to
Packit 577717
  check for umasks.
Packit 577717
Packit 577717
2014-08-27  
Packit 577717
Packit 577717
  * a5c2beb2 src/components/perf_event/pe_libpfm4_events.c
Packit 577717
  src/components/perf_event/pe_libpfm4_events.h
Packit 577717
  src/components/perf_event/perf_event.c...: perf_event[_uncore]: switch to
Packit 577717
  libpfm4 extended masks  Patch due to Gary Mohr, many thanks.
Packit 577717
  ------------------------------------ This patch file contains the changes to
Packit 577717
  make the perf_event and perf_event_uncore components in PAPI use the libpfm4
Packit 577717
  extended event masks.  This adds a number of new masks that can be entered
Packit 577717
  with events supported by these components. They include a mask 'u' which can
Packit 577717
  be used control if counting in the user domain should be enabled, a mask 'k'
Packit 577717
  which does the same for the kernel domain, and a mask 'cpu' which will cause
Packit 577717
  counting to only occur on a specified cpu.  There are also some other new
Packit 577717
  masks which may work but have not been tested yet.
Packit 577717
  ------------------------------------
Packit 577717
Packit 577717
2014-08-20  
Packit 577717
Packit 577717
  * e76bbe66 src/components/perf_event/pe_libpfm4_events.c
Packit 577717
  src/components/perf_event/perf_event.c
Packit 577717
  .../perf_event_uncore/perf_event_uncore.c...: General code cleanup and
Packit 577717
  improved debugging  Thanks to Gary Mohr ------------------- This patch file
Packit 577717
  does general code cleanup.  It modifies the code to eliminate compiler
Packit 577717
  warnings, remove defects reported by coverity, and improve traces.
Packit 577717
Packit 577717
2014-08-11  
Packit 577717
Packit 577717
  * 8f2a1cee src/utils/error_codes.c: error_codes utility: remove internal bits
Packit 577717
   Remove dependency on _papi_hwi_num_errors, just keep calling PAPI_strerror
Packit 577717
  until it fails. We shouldn't be using internal symbols anyways.
Packit 577717
Packit 577717
2014-08-04  
Packit 577717
Packit 577717
  * a7136edd src/components/nvml/README: Update nvml README  We changed the
Packit 577717
  options to simplify the configure line. Bad information is worse than no
Packit 577717
  information...
Packit 577717
Packit 577717
2014-07-25  
Packit 577717
Packit 577717
  * a37160c1 src/components/perf_event/perf_event.c: perf_event.c: cleanup
Packit 577717
  error messages  Thanks to Gary Mohr ------------------- This patch contains
Packit 577717
  general cleanup code.  Calls to PAPIERROR pass a string which does not need
Packit 577717
  to end with a new line because this function will always add one.  New lines
Packit 577717
  at the end of strings passed to this function have been removed.  These
Packit 577717
  changes also add some additional debug messages.
Packit 577717
Packit 577717
2014-07-24  
Packit 577717
Packit 577717
  * bf55b6b7 src/papi_events.csv: Update HSW presets  Thanks to Gary Mohr
Packit 577717
  ------------------- Previously we sent updates to the PAPI preset event
Packit 577717
  definitions to improve the preset cache events on Haswell processors.  In
Packit 577717
  checking the latest source, it looks like the L1 cache events changes did not
Packit 577717
  get applied quite right.  Here is a patch to the latest source that will make
Packit 577717
  it the way we had intended.
Packit 577717
Packit 577717
  * eeaef9fa src/papi.c: papi.c: Add information to API entry debuging  Thanks
Packit 577717
  to Gary Mohr ------------------- This patch contains the results of taking a
Packit 577717
  second pass to cleanup the debug prints in the file papi.c.  It adds entry
Packit 577717
  traces to more functions that can be called from an application.  It also
Packit 577717
  adds lots of additional values to the trace entries so that we can see what
Packit 577717
  is being passed to these functions from the application.
Packit 577717
Packit 577717
2014-07-23  
Packit 577717
Packit 577717
  * ee736151 src/run_tests.sh: run_tests.sh: more exclude cleanups  Thanks Gary
Packit 577717
  Mohr ---------------- This patch removes an additional check for Makefiles in
Packit 577717
  the script.  The exclude files are now used to prevent Makefiles from getting
Packit 577717
  run by this script.  I missed this one when providing the previous patch to
Packit 577717
  make this change.
Packit 577717
Packit 577717
  * c37afa23 src/papi_internal.c: papi_internal.c: change SUBDBG to INTDBG 
Packit 577717
  Thanks to Gary Mohr ------------------- This patch contains changes to
Packit 577717
  replace calls to SUBDBG with calls to INTDBG in this source file.  This
Packit 577717
  source file should be using the Internal debug macro rather than the
Packit 577717
  Substrate debug macro so that the PAPI debug filters work correctly.  These
Packit 577717
  changes also add some new debug calls so that we will get a better picture of
Packit 577717
  what is going on in the PAPI internal layer.  There are a few calls to the
Packit 577717
  SUBDBG macro that are in code that I have modified to add support for new
Packit 577717
  event level masks which are not converted by this patch.  They will be
Packit 577717
  corrected when the event level mask patch is provided.
Packit 577717
Packit 577717
  * e43b1138 src/utils/native_avail.c: native_avail.c: Bug fixes and updates 
Packit 577717
  Thanks to Gary Mohr -------------------------------------------------- This
Packit 577717
  patch fixes a couple of problems found in the papi_native_avail program. 
Packit 577717
  First change fixes a problem introduced when the -validate option was added. 
Packit 577717
  This option causes events to get added to an event set but never removes
Packit 577717
  them.  This change will remove them if the add works.  This change also fixes
Packit 577717
  a coverity detected error where the return value from PAPI_destroy_eventset
Packit 577717
  was being ignored.  Second change improves the delimitor check when
Packit 577717
  separating the event description from the event mask description.  The
Packit 577717
  previous check only looked for a colon but some of the event descriptions
Packit 577717
  contain a colon so descriptions would get displayed incorrectly.  The new
Packit 577717
  check finds the "masks:" substring which is what papi inserts to separate
Packit 577717
  these two descriptions.  Third change adds code to allow the user to enter
Packit 577717
  events of the form pmu:::event or pmu::event when using the -e option in the
Packit 577717
  program.
Packit 577717