Blame src/libpfm-3.y/examples_v2.x/ia64/ita2_btb.c

Packit 577717
/*
Packit 577717
 * ita2_btb.c - example of how use the BTB with the Itanium 2 PMU
Packit 577717
 *
Packit 577717
 * Copyright (c) 2003-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_itanium2.h>
Packit 577717
Packit 577717
typedef pfm_dfl_smpl_hdr_t	btb_hdr_t;
Packit 577717
typedef pfm_dfl_smpl_entry_t	btb_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 BRANCH_EVENT is increment by 1 for each branch event. Such event is composed of
Packit 577717
 * two entries in the BTB: a source and a target entry. The BTB is full after 4 branch
Packit 577717
 * events.
Packit 577717
 */
Packit 577717
#define SMPL_PERIOD	(4UL*256)
Packit 577717
Packit 577717
static void *smpl_vaddr;
Packit 577717
static unsigned int 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 0;}
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;
Packit 577717
	}
Packit 577717
	return sum;
Packit 577717
}
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
static void
Packit 577717
show_btb_reg(int j, pfm_ita2_pmd_reg_t reg, pfm_ita2_pmd_reg_t pmd16)
Packit 577717
{
Packit 577717
	unsigned long bruflush, b1;
Packit 577717
	int is_valid = reg.pmd8_15_ita2_reg.btb_b == 0 && reg.pmd8_15_ita2_reg.btb_mp == 0 ? 0 :1;
Packit 577717
Packit 577717
	b1       = (pmd16.pmd_val >> (4 + 4*(j-8))) & 0x1;
Packit 577717
	bruflush = (pmd16.pmd_val >> (5 + 4*(j-8))) & 0x1;
Packit 577717
Packit 577717
	safe_printf("\tPMD%-2d: 0x%016lx b=%d mp=%d bru=%ld b1=%ld valid=%c\n",
Packit 577717
		j,
Packit 577717
		reg.pmd_val,
Packit 577717
		 reg.pmd8_15_ita2_reg.btb_b,
Packit 577717
		 reg.pmd8_15_ita2_reg.btb_mp,
Packit 577717
		 bruflush, b1,
Packit 577717
		is_valid ? 'Y' : 'N');
Packit 577717
Packit 577717
	if (!is_valid) return;
Packit 577717
Packit 577717
	if (reg.pmd8_15_ita2_reg.btb_b) {
Packit 577717
		unsigned long addr;
Packit 577717
Packit 577717
		
Packit 577717
		addr = (reg.pmd8_15_ita2_reg.btb_addr+b1)<<4;
Packit 577717
Packit 577717
		addr |= reg.pmd8_15_ita2_reg.btb_slot < 3 ?  reg.pmd8_15_ita2_reg.btb_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.pmd8_15_ita2_reg.btb_slot < 3 ? 'Y' : 'N',
Packit 577717
			 reg.pmd8_15_ita2_reg.btb_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.pmd8_15_ita2_reg.btb_addr<<4));
Packit 577717
	}
Packit 577717
}
Packit 577717
Packit 577717
Packit 577717
static void
Packit 577717
show_btb(pfm_ita2_pmd_reg_t *btb, pfm_ita2_pmd_reg_t *pmd16)
Packit 577717
{
Packit 577717
	int i, last;
Packit 577717
Packit 577717
Packit 577717
	i    = (pmd16->pmd16_ita2_reg.btbi_full) ? pmd16->pmd16_ita2_reg.btbi_bbi : 0;
Packit 577717
	last = pmd16->pmd16_ita2_reg.btbi_bbi;
Packit 577717
Packit 577717
	safe_printf("btb_trace: i=%d last=%d bbi=%d full=%d\n", i, last,pmd16->pmd16_ita2_reg.btbi_bbi, pmd16->pmd16_ita2_reg.btbi_full);
Packit 577717
	do {
Packit 577717
		show_btb_reg(i+8, btb[i], *pmd16);
Packit 577717
		i = (i+1) % 8;
Packit 577717
	} while (i != last);
Packit 577717
}
Packit 577717
Packit 577717
Packit 577717
void
Packit 577717
process_smpl_buffer(void)
Packit 577717
{
Packit 577717
	btb_hdr_t	*hdr;
Packit 577717
	btb_entry_t	*ent;
Packit 577717
	unsigned long pos;
Packit 577717
	unsigned long smpl_entry = 0;
Packit 577717
	pfm_ita2_pmd_reg_t *reg, *pmd16;
Packit 577717
	unsigned long i;
Packit 577717
	int ret;
Packit 577717
	static unsigned long last_ovfl = ~0UL;
Packit 577717
Packit 577717
Packit 577717
	hdr = (btb_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
	/*
Packit 577717
	 * walk through all the entries recored in the buffer
Packit 577717
	 */
Packit 577717
	for(i=0; i < hdr->hdr_count; i++) {
Packit 577717
Packit 577717
		ret = 0;
Packit 577717
Packit 577717
		ent = (btb_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_ita2_pmd_reg_t*)(ent+1);
Packit 577717
Packit 577717
		/*
Packit 577717
		 * in this particular example, we have pmd8-pmd15 has the BTB. We have also
Packit 577717
		 * included pmd16 (BTB index) has part of the registers to record. This trick
Packit 577717
		 * allows us to get the index to decode the sequential order of the BTB.
Packit 577717
		 *
Packit 577717
		 * Recorded registers are always recorded in increasing order. So we know
Packit 577717
		 * that pmd16 is at a fixed offset (+8*sizeof(unsigned long)) from pmd8.
Packit 577717
		 */
Packit 577717
		pmd16 = reg+8;
Packit 577717
		show_btb(reg, pmd16);
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
	/* dangerous */
Packit 577717
	printf("Notification received\n");
Packit 577717
Packit 577717
	process_smpl_buffer();
Packit 577717
Packit 577717
	/*
Packit 577717
	 * And resume monitoring
Packit 577717
	 */
Packit 577717
	if (pfm_restart(id) == -1) {
Packit 577717
		perror("pfm_restart");
Packit 577717
		exit(1);
Packit 577717
	}
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_pmd_t pd[NUM_PMDS];
Packit 577717
	pfarg_pmc_t pc[NUM_PMCS];
Packit 577717
	pfmlib_input_param_t inp;
Packit 577717
	pfmlib_output_param_t outp;
Packit 577717
	pfmlib_ita2_input_param_t ita2_inp;
Packit 577717
	pfarg_ctx_t ctx;
Packit 577717
	smpl_arg_t buf_arg;
Packit 577717
	pfarg_load_t load_args;
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
	ret = pfm_initialize();
Packit 577717
	if (ret != PFMLIB_SUCCESS)
Packit 577717
		fatal_error("Cannot initialize library: %s\n", pfm_strerror(ret));
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_ITANIUM2_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 = 1; /* set to 1 for debug */
Packit 577717
	pfm_set_options(&pfmlib_options);
Packit 577717
Packit 577717
	memset(pd, 0, sizeof(pd));
Packit 577717
	memset(&ctx, 0, sizeof(ctx));
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(&ita2_inp,0, sizeof(ita2_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 the
Packit 577717
	 * mispredicted (target, taken/not taken) branches, therefore we
Packit 577717
	 * program the various fields of the BTB config to:
Packit 577717
	 */
Packit 577717
	ita2_inp.pfp_ita2_btb.btb_used = 1;
Packit 577717
Packit 577717
	ita2_inp.pfp_ita2_btb.btb_ds  = 0;   /* capture target */
Packit 577717
	ita2_inp.pfp_ita2_btb.btb_tm  = 0x3; /* all branches */
Packit 577717
	ita2_inp.pfp_ita2_btb.btb_ptm = 0x1; /* target mispredicted */
Packit 577717
	ita2_inp.pfp_ita2_btb.btb_ppm = 0x1; /* mispredicted path */
Packit 577717
	ita2_inp.pfp_ita2_btb.btb_brt = 0x0; /* all types captured */
Packit 577717
	ita2_inp.pfp_ita2_btb.btb_plm = PFM_PLM3;
Packit 577717
Packit 577717
	if (pfm_find_full_event("BRANCH_EVENT", &inp.pfp_events[0]) != PFMLIB_SUCCESS) {
Packit 577717
		fatal_error("cannot find event BRANCH_EVENT\n");
Packit 577717
	}
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
	 * 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, &ita2_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
	/*
Packit 577717
	 * now create the context for self monitoring/per-task
Packit 577717
	 */
Packit 577717
	id = pfm_create_context(&ctx, "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
		}
Packit 577717
		fatal_error("Can't create PFM context %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
	 * This step is new compared to libpfm-2.x. It is necessary because the library no
Packit 577717
	 * longer knows about the kernel data structures.
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
	 * PMD16 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
	/*
Packit 577717
	 * indicate we want notification when buffer is full
Packit 577717
	 */
Packit 577717
	pd[0].reg_flags |= PFM_REGFL_OVFL_NOTIFY;
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
	pd[0].reg_long_reset  = - SMPL_PERIOD;
Packit 577717
	pd[0].reg_short_reset = - SMPL_PERIOD;
Packit 577717
Packit 577717
	pfm_bv_set(pd[0].reg_smpl_pmds, 16);
Packit 577717
Packit 577717
	entry_size = sizeof(btb_entry_t) + 1 * 8;
Packit 577717
Packit 577717
	for(i=8; i < 16; 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 BTB index to be reset, so that we keep
Packit 577717
	 * in sync. This is required to make it possible to interpret pmd16 on overflow
Packit 577717
	 * to avoid repeating the same branch several times.
Packit 577717
	 */
Packit 577717
	pfm_bv_set(pd[0].reg_reset_pmds, 16);
Packit 577717
Packit 577717
		/*
Packit 577717
	 * Now program the registers
Packit 577717
	 */
Packit 577717
	if (pfm_write_pmcs(id, pc, outp.pfp_pmc_count) == -1)
Packit 577717
		fatal_error("pfm_write_pmcs error errno %d\n",errno);
Packit 577717
Packit 577717
	if (pfm_write_pmds(id, pd, outp.pfp_pmd_count) == -1)
Packit 577717
		fatal_error("pfm_write_pmds error errno %d\n",errno);
Packit 577717
Packit 577717
	/*
Packit 577717
	 * now we load (i.e., attach) the context to ourself
Packit 577717
	 */
Packit 577717
	load_args.load_pid = getpid();
Packit 577717
	if (pfm_load_context(id, &load_args) == -1)
Packit 577717
		fatal_error("pfm_load_context 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
	pfm_self_start(id);
Packit 577717
Packit 577717
	do_test(100000);
Packit 577717
Packit 577717
	pfm_self_stop(id);
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
Packit 577717
	process_smpl_buffer();
Packit 577717
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
}