Commit da66e4e5 authored by Mathieu Desnoyers's avatar Mathieu Desnoyers Committed by Greg Kroah-Hartman
Browse files

lttng: timing calibration feature



This calibration feature is fairly limited for now, but provides an
example of how this can be performed.

Signed-off-by: default avatarMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 6c19da35
Loading
Loading
Loading
Loading
+30 −0
Original line number Diff line number Diff line
/*
 * lttng-calibrate.c
 *
 * Copyright 2011 (c) - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
 *
 * LTTng probe calibration.
 *
 * Dual LGPL v2.1/GPL v2 license.
 */

#include "ltt-debugfs-abi.h"
#include "ltt-events.h"

noinline
void lttng_calibrate_kretprobe(void)
{
	asm volatile ("");
}

int lttng_calibrate(struct lttng_kernel_calibrate *calibrate)
{
	switch (calibrate->type) {
	case LTTNG_KERNEL_CALIBRATE_KRETPROBE:
		lttng_calibrate_kretprobe();
		break;
	default:
		return -EINVAL;
	}
	return 0;
}