Staging
v0.8.1
https://github.com/torvalds/linux
Raw File
Tip revision: c698ca5278934c0ae32297a8725ced2e27585d7f authored by Linus Torvalds on 19 March 2018, 00:48:42 UTC
Linux 4.16-rc6
Tip revision: c698ca5
tracepoint.c
// SPDX-License-Identifier: GPL-2.0
/*
 * Code for supporting irq vector tracepoints.
 *
 * Copyright (C) 2013 Seiji Aguchi <seiji.aguchi@hds.com>
 *
 */
#include <linux/jump_label.h>
#include <linux/atomic.h>

#include <asm/hw_irq.h>
#include <asm/desc.h>

DEFINE_STATIC_KEY_FALSE(trace_pagefault_key);

int trace_pagefault_reg(void)
{
	static_branch_inc(&trace_pagefault_key);
	return 0;
}

void trace_pagefault_unreg(void)
{
	static_branch_dec(&trace_pagefault_key);
}

#ifdef CONFIG_SMP

DEFINE_STATIC_KEY_FALSE(trace_resched_ipi_key);

int trace_resched_ipi_reg(void)
{
	static_branch_inc(&trace_resched_ipi_key);
	return 0;
}

void trace_resched_ipi_unreg(void)
{
	static_branch_dec(&trace_resched_ipi_key);
}

#endif
back to top