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

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
/*
* 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;
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment