Blame src/libpfm-3.y/examples_v3.x/ia64/mont_etb.c

Packit 577717
/*
Packit 577717
 * mont_btb.c - example of how use the ETB with the Dual-Core Itanium 2 PMU
Packit 577717
 *
Packit 577717
 * Copyright (c) 2005-2006 Hewlett-Packard Development Company, L.P.
Packit 577717
 * Contributed by Stephane Eranian <eranian@hpl.hp.com>
Packit 577717
 *
Packit 577717
 * Permission is hereby granted, free of charge, to any person obtaining a copy
Packit 577717
 * of this software and associated documentation files (the "Software"), to deal
Packit 577717
 * in the Software without restriction, including without limitation the rights
Packit 577717
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
Packit 577717
 * of the Software, and to permit persons to whom the Software is furnished to do so,
Packit 577717
 * subject to the following conditions:
Packit 577717
 *
Packit 577717
 * The above copyright notice and this permission notice shall be included in all
Packit 577717
 * copies or substantial portions of the Software.
Packit 577717
 *
Packit 577717
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
Packit 577717
 * INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
Packit 577717
 * PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
Packit 577717
 * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
Packit 577717
 * CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE
Packit 577717
 * OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Packit 577717
 *
Packit 577717
 * This file is part of libpfm, a performance monitoring support library for
Packit 577717
 * applications on Linux.
Packit 577717
 */
Packit 577717
#include <sys/types.h>
Packit 577717
#include <stdio.h>
Packit 577717
#include <stdlib.h>
Packit 577717
#include <stdarg.h>
Packit 577717
#include <errno.h>
Packit 577717
#include <unistd.h>
Packit 577717
#include <string.h>
Packit 577717
#include <signal.h>
Packit 577717
#include <fcntl.h>
Packit 577717
#include <sys/mman.h>
Packit 577717
Packit 577717
#include <perfmon/perfmon.h>
Packit 577717
#include <perfmon/perfmon_dfl_smpl.h>
Packit 577717
#include <perfmon/pfmlib_montecito.h>
Packit 577717
Packit 577717
typedef pfm_dfl_smpl_hdr_t	etb_hdr_t;
Packit 577717
typedef pfm_dfl_smpl_entry_t	etb_entry_t;
Packit 577717
typedef pfm_dfl_smpl_arg_t	smpl_arg_t;
Packit 577717
Packit 577717
#define NUM_PMCS PFMLIB_MAX_PMCS
Packit 577717
#define NUM_PMDS PFMLIB_MAX_PMDS
Packit 577717
Packit 577717
#define MAX_EVT_NAME_LEN	128
Packit 577717
#define MAX_PMU_NAME_LEN	32
Packit 577717
Packit 577717
/*
Packit 577717
 * The ETB_EVENT is increment by 1 for each branch event. Such event is composed of
Packit 577717
 * two entries in the ETB: a source and a target entry. The ETB is full after 4 branch
Packit 577717
 * events.
Packit 577717
 */
Packit 577717
#define SMPL_PERIOD	(4UL*256)
Packit 577717
Packit 577717
/*
Packit 577717
 * We use a small buffer size to exercise the overflow handler
Packit 577717
 */
Packit 577717
#define SMPL_BUF_NENTRIES	64
Packit 577717
Packit 577717
static void *smpl_vaddr;
Packit 577717
static size_t entry_size;
Packit 577717
static int id;
Packit 577717
Packit 577717
#define BPL (sizeof(uint64_t)<<3)
Packit 577717
#define LBPL	6
Packit 577717
Packit 577717
static inline void pfm_bv_set(uint64_t *bv, uint16_t rnum)
Packit 577717
{
Packit 577717
	bv[rnum>>LBPL] |= 1UL << (rnum&(BPL-1));
Packit 577717
}
Packit 577717
Packit 577717
/*
Packit 577717
 * we don't use static to make sure the compiler does not inline the function
Packit 577717
 */
Packit 577717
long func1(void) { return random();}
Packit 577717
long func2(void) { return random();}
Packit 577717
Packit 577717
long
Packit 577717
do_test(unsigned long loop)
Packit 577717
{
Packit 577717
	long sum  = 0;
Packit 577717
Packit 577717
	while(loop--) {
Packit 577717
		if (loop & 0x1)
Packit 577717
			sum += func1();
Packit 577717
		else
Packit 577717
			sum += loop + func2();
Packit 577717
	}
Packit 577717
	return sum;
Packit 577717
}
Packit 577717
Packit 577717
static void fatal_error(char *fmt,...) __attribute__((noreturn));
Packit 577717
Packit 577717
static void
Packit 577717
fatal_error(char *fmt, ...)
Packit 577717
{
Packit 577717
	va_list ap;
Packit 577717
Packit 577717
	va_start(ap, fmt);
Packit 577717
	vfprintf(stderr, fmt, ap);
Packit 577717
	va_end(ap);
Packit 577717
Packit 577717
	exit(1);
Packit 577717
}
Packit 577717
Packit 577717
/*
Packit 577717
 * print content of sampling buffer
Packit 577717
 *
Packit 577717
 * XXX: using stdio to print from a signal handler is not safe with multi-threaded
Packit 577717
 * applications
Packit 577717
 */
Packit 577717
#define safe_printf	printf
Packit 577717
Packit 577717
static void
Packit 577717
show_etb_reg(int j, pfm_mont_pmd_reg_t reg, pfm_mont_pmd_reg_t pmd39)
Packit 577717
{
Packit 577717
	unsigned long bruflush, b1, etb_ext;
Packit 577717
	unsigned long addr;
Packit 577717
	int is_valid;
Packit 577717
Packit 577717
	is_valid = reg.pmd48_63_etb_mont_reg.etb_s == 0 && reg.pmd48_63_etb_mont_reg.etb_mp == 0 ? 0 : 1;
Packit 577717
Packit 577717
	/*
Packit 577717
	 * the joy of the ETB extension register layout!
Packit 577717
	 */
Packit 577717
	if (j < 8)
Packit 577717
		etb_ext = (pmd39.pmd_val>>(8*j)) & 0xf;
Packit 577717
	else
Packit 577717
		etb_ext = (pmd39.pmd_val>>(4+8*(j-8))) & 0xf;
Packit 577717
Packit 577717
	b1       = etb_ext & 0x1;
Packit 577717
	bruflush = (etb_ext >> 1) & 0x1;
Packit 577717
Packit 577717
	safe_printf("\tPMD%-2d: 0x%016lx s=%d mp=%d bru=%ld b1=%ld valid=%c\n",
Packit 577717
		j+48,
Packit 577717
		reg.pmd_val,
Packit 577717
		reg.pmd48_63_etb_mont_reg.etb_s,
Packit 577717
		reg.pmd48_63_etb_mont_reg.etb_mp,
Packit 577717
		bruflush, b1,
Packit 577717
		is_valid ? 'Y' : 'N');
Packit 577717
Packit 577717
Packit 577717
	if (!is_valid) return;
Packit 577717
Packit 577717
	if (reg.pmd48_63_etb_mont_reg.etb_s) {
Packit 577717
		addr = (reg.pmd48_63_etb_mont_reg.etb_addr+b1)<<4;
Packit 577717
		addr |= reg.pmd48_63_etb_mont_reg.etb_slot < 3 ? reg.pmd48_63_etb_mont_reg.etb_slot : 0;
Packit 577717
Packit 577717
		safe_printf("\t       Source Address: 0x%016lx\n"
Packit 577717
			    "\t       Taken=%c Prediction:%s\n\n",
Packit 577717
			 addr,
Packit 577717
			 reg.pmd48_63_etb_mont_reg.etb_slot < 3 ? 'Y' : 'N',
Packit 577717
			 reg.pmd48_63_etb_mont_reg.etb_mp ? "FE Failure" : 
Packit 577717
			 bruflush ? "BE Failure" : "Success");
Packit 577717
	} else {
Packit 577717
		safe_printf("\t       Target Address:0x%016lx\n\n",
Packit 577717
			 (unsigned long)(reg.pmd48_63_etb_mont_reg.etb_addr<<4));
Packit 577717
	}
Packit 577717
}
Packit 577717
Packit 577717
static void
Packit 577717
show_etb(pfm_mont_pmd_reg_t *etb)
Packit 577717
{
Packit 577717
	int i, last;
Packit 577717
	pfm_mont_pmd_reg_t pmd38, pmd39;
Packit 577717
Packit 577717
	pmd38.pmd_val = etb[0].pmd_val;
Packit 577717
	pmd39.pmd_val = etb[1].pmd_val;
Packit 577717
Packit 577717
	i    = pmd38.pmd38_mont_reg.etbi_full ? pmd38.pmd38_mont_reg.etbi_ebi : 0;
Packit 577717
	last = pmd38.pmd38_mont_reg.etbi_ebi;
Packit 577717
Packit 577717
	safe_printf("btb_trace: i=%d last=%d bbi=%d full=%d\n",
Packit 577717
		i,
Packit 577717
		last,
Packit 577717
		pmd38.pmd38_mont_reg.etbi_ebi,
Packit 577717
		pmd38.pmd38_mont_reg.etbi_full);
Packit 577717
Packit 577717
	/*
Packit 577717
	 * i+2 = skip over PMD38/pmd39
Packit 577717
	 */
Packit 577717
	do {
Packit 577717
		show_etb_reg(i, etb[i+2], pmd39);
Packit 577717
		i = (i+1) % 16;
Packit 577717
	} while (i != last);
Packit 577717
}
Packit 577717
Packit 577717
void
Packit 577717
process_smpl_buffer(void)
Packit 577717
{
Packit 577717
	etb_hdr_t	*hdr;
Packit 577717
	etb_entry_t	*ent;
Packit 577717
	unsigned long pos;
Packit 577717
	unsigned long smpl_entry = 0;
Packit 577717
	pfm_mont_pmd_reg_t *reg;
Packit 577717
	size_t count;
Packit 577717
	static unsigned long last_ovfl = ~0UL;
Packit 577717
Packit 577717
Packit 577717
	hdr = (etb_hdr_t *)smpl_vaddr;
Packit 577717
Packit 577717
	/*
Packit 577717
	 * check that we are not diplaying the previous set of samples again.
Packit 577717
	 * Required to take care of the last batch of samples.
Packit 577717
	 */
Packit 577717
	if (hdr->hdr_overflows <= last_ovfl && last_ovfl != ~0UL) {
Packit 577717
		printf("skipping identical set of samples %lu <= %lu\n", hdr->hdr_overflows, last_ovfl);
Packit 577717
		return;
Packit 577717
	}
Packit 577717
Packit 577717
	pos = (unsigned long)(hdr+1);
Packit 577717
	count = hdr->hdr_count;
Packit 577717
	/*
Packit 577717
	 * walk through all the entries recored in the buffer
Packit 577717
	 */
Packit 577717
	while(count--) {
Packit 577717
Packit 577717
		ent = (etb_entry_t *)pos;
Packit 577717
		/*
Packit 577717
		 * print entry header
Packit 577717
		 */
Packit 577717
		safe_printf("Entry %ld PID:%d TID:%d CPU:%d STAMP:0x%lx IIP:0x%016lx\n",
Packit 577717
			smpl_entry++,
Packit 577717
			ent->tgid,
Packit 577717
			ent->pid,
Packit 577717
			ent->cpu,
Packit 577717
			ent->tstamp,
Packit 577717
			ent->ip);
Packit 577717
Packit 577717
		/*
Packit 577717
		 * point to first recorded register (always contiguous with entry header)
Packit 577717
		 */
Packit 577717
		reg = (pfm_mont_pmd_reg_t*)(ent+1);
Packit 577717
Packit 577717
		/*
Packit 577717
		 * in this particular example, we have pmd48-pmd63 has the ETB. We have also
Packit 577717
		 * included pmd38/pmd39 (ETB index and extenseion) has part of the registers
Packit 577717
		 * to record. This trick allows us to get the index to decode the sequential
Packit 577717
		 * order of the ETB.
Packit 577717
		 *
Packit 577717
		 * Recorded registers are always recorded in increasing index order. So we know
Packit 577717
		 * that where to find pmd38/pmd39.
Packit 577717
		 */
Packit 577717
		show_etb(reg);
Packit 577717
Packit 577717
		/*
Packit 577717
		 * move to next entry
Packit 577717
		 */
Packit 577717
		pos += entry_size;
Packit 577717
	}
Packit 577717
}
Packit 577717
Packit 577717
static void
Packit 577717
overflow_handler(int n, struct siginfo *info, struct sigcontext *sc)
Packit 577717
{
Packit 577717
	process_smpl_buffer();
Packit 577717
Packit 577717
	/*
Packit 577717
	 * And resume monitoring
Packit 577717
	 */
Packit 577717
	if (pfm_restart(id))
Packit 577717
		fatal_error("pfm_restart errno %d\n", errno);
Packit 577717
}
Packit 577717
Packit 577717
Packit 577717
int
Packit 577717
main(void)
Packit 577717
{
Packit 577717
	int ret;
Packit 577717
	int type = 0;
Packit 577717
	pfarg_pmr_t pc[NUM_PMCS];
Packit 577717
	pfarg_pmd_attr_t pd[NUM_PMDS];
Packit 577717
	pfmlib_input_param_t inp;
Packit 577717
	pfmlib_output_param_t outp;
Packit 577717
	pfmlib_mont_input_param_t mont_inp;
Packit 577717
	smpl_arg_t buf_arg;
Packit 577717
	pfmlib_options_t pfmlib_options;
Packit 577717
	struct sigaction act;
Packit 577717
	unsigned int i;
Packit 577717
Packit 577717
	/*
Packit 577717
	 * Initialize pfm library (required before we can use it)
Packit 577717
	 */
Packit 577717
	if (pfm_initialize() != PFMLIB_SUCCESS)
Packit 577717
		fatal_error("Can't initialize library\n");
Packit 577717
Packit 577717
	/*
Packit 577717
	 * Let's make sure we run this on the right CPU
Packit 577717
	 */
Packit 577717
	pfm_get_pmu_type(&type);
Packit 577717
	if (type != PFMLIB_MONTECITO_PMU) {
Packit 577717
		char model[MAX_PMU_NAME_LEN];
Packit 577717
		pfm_get_pmu_name(model, MAX_PMU_NAME_LEN);
Packit 577717
		fatal_error("this program does not work with %s PMU\n", model);
Packit 577717
	}
Packit 577717
Packit 577717
	/*
Packit 577717
	 * Install the overflow handler (SIGIO)
Packit 577717
	 */
Packit 577717
	memset(&act, 0, sizeof(act));
Packit 577717
	act.sa_handler = (sig_t)overflow_handler;
Packit 577717
	sigaction (SIGIO, &act, 0);
Packit 577717
Packit 577717
Packit 577717
	/*
Packit 577717
	 * pass options to library (optional)
Packit 577717
	 */
Packit 577717
	memset(&pfmlib_options, 0, sizeof(pfmlib_options));
Packit 577717
	pfmlib_options.pfm_debug = 0; /* set to 1 for debug */
Packit 577717
	pfmlib_options.pfm_verbose = 0; /* set to 1 for debug */
Packit 577717
	pfm_set_options(&pfmlib_options);
Packit 577717
Packit 577717
	memset(pc, 0, sizeof(pc));
Packit 577717
	memset(pd, 0, sizeof(pd));
Packit 577717
	memset(&buf_arg, 0, sizeof(buf_arg));
Packit 577717
Packit 577717
	/*
Packit 577717
	 * prepare parameters to library. we don't use any Itanium
Packit 577717
	 * specific features here. so the pfp_model is NULL.
Packit 577717
	 */
Packit 577717
	memset(&inp,0, sizeof(inp));
Packit 577717
	memset(&outp,0, sizeof(outp));
Packit 577717
	memset(&mont_inp,0, sizeof(mont_inp));
Packit 577717
Packit 577717
	/*
Packit 577717
	 * Before calling pfm_find_dispatch(), we must specify what kind
Packit 577717
	 * of branches we want to capture. We are interested in all taken
Packit 577717
	 * branches * therefore we program we set the various fields to:
Packit 577717
	 */
Packit 577717
	mont_inp.pfp_mont_etb.etb_used = 1;
Packit 577717
Packit 577717
	mont_inp.pfp_mont_etb.etb_tm  = 0x2;
Packit 577717
	mont_inp.pfp_mont_etb.etb_ptm = 0x3;
Packit 577717
	mont_inp.pfp_mont_etb.etb_ppm = 0x3;
Packit 577717
	mont_inp.pfp_mont_etb.etb_brt = 0x0;
Packit 577717
	mont_inp.pfp_mont_etb.etb_plm = PFM_PLM3;
Packit 577717
Packit 577717
	if (pfm_find_full_event("ETB_EVENT", &inp.pfp_events[0]) != PFMLIB_SUCCESS)
Packit 577717
		fatal_error("cannot find event ETB_EVENT\n");
Packit 577717
Packit 577717
	/*
Packit 577717
	 * set the (global) privilege mode:
Packit 577717
	 * 	PFM_PLM3 : user level only
Packit 577717
	 */
Packit 577717
	inp.pfp_dfl_plm   = PFM_PLM3;
Packit 577717
Packit 577717
	/*
Packit 577717
	 * how many counters we use
Packit 577717
	 */
Packit 577717
	inp.pfp_event_count = 1;
Packit 577717
Packit 577717
	/*
Packit 577717
	 * let the library figure out the values for the PMCS
Packit 577717
	 */
Packit 577717
	if ((ret=pfm_dispatch_events(&inp, &mont_inp, &outp, NULL)) != PFMLIB_SUCCESS)
Packit 577717
		fatal_error("cannot configure events: %s\n", pfm_strerror(ret));
Packit 577717
Packit 577717
	/*
Packit 577717
	 * the size of the buffer is indicated in bytes (not entries).
Packit 577717
	 *
Packit 577717
	 * The kernel will record into the buffer up to a certain point.
Packit 577717
	 * No partial samples are ever recorded.
Packit 577717
	 */
Packit 577717
	buf_arg.buf_size = getpagesize();
Packit 577717
Packit 577717
	/*
Packit 577717
	 * now create the session
Packit 577717
	 */
Packit 577717
	id = pfm_create(PFM_FL_SMPL_FMT, NULL, "default", &buf_arg, sizeof(buf_arg));
Packit 577717
	if (id == -1) {
Packit 577717
		if (errno == ENOSYS)
Packit 577717
			fatal_error("Your kernel does not have performance monitoring support!\n");
Packit 577717
		fatal_error("cannot create session %s\n", strerror(errno));
Packit 577717
	}
Packit 577717
Packit 577717
	/*
Packit 577717
	 * retrieve the virtual address at which the sampling
Packit 577717
	 * buffer has been mapped
Packit 577717
	 */
Packit 577717
	smpl_vaddr = mmap(NULL, (size_t)buf_arg.buf_size, PROT_READ, MAP_PRIVATE, id, 0);
Packit 577717
	if (smpl_vaddr == MAP_FAILED)
Packit 577717
		fatal_error("cannot mmap sampling buffer errno %d\n", errno);
Packit 577717
Packit 577717
	printf("Sampling buffer mapped at %p\n", smpl_vaddr);
Packit 577717
Packit 577717
	/*
Packit 577717
	 * Now prepare the argument to initialize the PMDs and PMCS.
Packit 577717
	 * We must pfp_pmc_count to determine the number of PMC to intialize.
Packit 577717
	 * We must use pfp_event_count to determine the number of PMD to initialize.
Packit 577717
	 * Some events cause extra PMCs to be used, so  pfp_pmc_count may be >= pfp_event_count.
Packit 577717
	 */
Packit 577717
Packit 577717
	for (i=0; i < outp.pfp_pmc_count; i++) {
Packit 577717
		pc[i].reg_num   = outp.pfp_pmcs[i].reg_num;
Packit 577717
		pc[i].reg_value = outp.pfp_pmcs[i].reg_value;
Packit 577717
	}
Packit 577717
Packit 577717
	/*
Packit 577717
	 * figure out pmd mapping from output pmc
Packit 577717
	 * PMD38 is part of the set of used PMD returned by libpfm.
Packit 577717
	 * It will be reset automatically
Packit 577717
	 */
Packit 577717
	for (i=0; i < outp.pfp_pmd_count; i++)
Packit 577717
		pd[i].reg_num   = outp.pfp_pmds[i].reg_num;
Packit 577717
	/*
Packit 577717
	 * indicate we want notification when buffer is full and randomization
Packit 577717
	 */
Packit 577717
	pd[0].reg_flags |= PFM_REGFL_OVFL_NOTIFY | PFM_REGFL_RANDOM;
Packit 577717
Packit 577717
	/*
Packit 577717
	 * Now prepare the argument to initialize the PMD and the sampling period
Packit 577717
	 * We know we use only one PMD in this case, therefore pmd[0] corresponds
Packit 577717
	 * to our first event which is our sampling period.
Packit 577717
	 */
Packit 577717
	pd[0].reg_value       = - SMPL_PERIOD;
Packit 577717
Packit 577717
	pd[0].reg_long_reset  = - SMPL_PERIOD;
Packit 577717
	pd[0].reg_short_reset = - SMPL_PERIOD;
Packit 577717
Packit 577717
	/*
Packit 577717
	 * populate our smpl_pmds bitmask to include all of the ETB PMDs,
Packit 577717
	 * including index, extensions
Packit 577717
	 */
Packit 577717
	pfm_bv_set(pd[0].reg_smpl_pmds, 38);
Packit 577717
	pfm_bv_set(pd[0].reg_smpl_pmds, 39);
Packit 577717
Packit 577717
	entry_size = sizeof(etb_entry_t) + 2 * 8;
Packit 577717
Packit 577717
	for(i=48; i < 64; i++) {
Packit 577717
		pfm_bv_set(pd[0].reg_smpl_pmds, i);
Packit 577717
		entry_size += 8;
Packit 577717
	}
Packit 577717
Packit 577717
	/*
Packit 577717
	 * When our counter overflows, we want to ETB index to be reset, so that we keep
Packit 577717
	 * in sync. 
Packit 577717
	 */
Packit 577717
	pfm_bv_set(pd[0].reg_reset_pmds, 38);
Packit 577717
Packit 577717
	/*
Packit 577717
	 * Now program the registers
Packit 577717
	 */
Packit 577717
	if (pfm_write(id, 0, PFM_RW_PMC, pc, outp.pfp_pmc_count * sizeof(*pc)))
Packit 577717
		fatal_error("pfm_write error errno %d\n",errno);
Packit 577717
Packit 577717
	if (pfm_write(id, 0, PFM_RW_PMD_ATTR, pd, outp.pfp_pmd_count * sizeof(*pd)))
Packit 577717
		fatal_error("pfm_write(PMD) error errno %d\n",errno);
Packit 577717
Packit 577717
	/*
Packit 577717
	 * now we attach session
Packit 577717
	 */
Packit 577717
	if (pfm_attach(id, 0, getpid()))
Packit 577717
		fatal_error("pfm_attach error errno %d\n",errno);
Packit 577717
Packit 577717
	/*
Packit 577717
	 * setup asynchronous notification on the file descriptor
Packit 577717
	 */
Packit 577717
	ret = fcntl(id, F_SETFL, fcntl(id, F_GETFL, 0) | O_ASYNC);
Packit 577717
	if (ret == -1)
Packit 577717
		fatal_error("cannot set ASYNC: %s\n", strerror(errno));
Packit 577717
Packit 577717
	/*
Packit 577717
	 * get ownership of the descriptor
Packit 577717
	 */
Packit 577717
	ret = fcntl(id, F_SETOWN, getpid());
Packit 577717
	if (ret == -1)
Packit 577717
		fatal_error("cannot setown: %s\n", strerror(errno));
Packit 577717
Packit 577717
	/*
Packit 577717
	 * Let's roll now.
Packit 577717
	 */
Packit 577717
	if (pfm_set_state(id, 0, PFM_ST_START))
Packit 577717
		fatal_error("pfm_set_state error errno %d\n",errno);
Packit 577717
Packit 577717
	do_test(1000);
Packit 577717
Packit 577717
	if (pfm_set_state(id, 0, PFM_ST_STOP))
Packit 577717
		fatal_error("pfm_set_state error errno %d\n",errno);
Packit 577717
Packit 577717
	/*
Packit 577717
	 * We must call the processing routine to cover the last entries recorded
Packit 577717
	 * in the sampling buffer. Note that the buffer may not be full at this point.
Packit 577717
	 *
Packit 577717
	 */
Packit 577717
	process_smpl_buffer();
Packit 577717
	/*
Packit 577717
	 * let's stop this now
Packit 577717
	 */
Packit 577717
	munmap(smpl_vaddr, (size_t)buf_arg.buf_size);
Packit 577717
	close(id);
Packit 577717
Packit 577717
	return 0;
Packit 577717
}