https://github.com/torvalds/linux
Raw File
Tip revision: ceaa837f96adb69c0df0397937cd74991d5d821a authored by Linus Torvalds on 12 February 2023, 22:10:17 UTC
Linux 6.2-rc8
Tip revision: ceaa837
trace_irq.c
// SPDX-License-Identifier: GPL-2.0
/*
 * Copyright (C) 2022 Changbin Du <changbin.du@gmail.com>
 */

#include <linux/irqflags.h>
#include <linux/kprobes.h>
#include "trace_irq.h"

/*
 * trace_hardirqs_on/off require the caller to setup frame pointer properly.
 * Otherwise, CALLER_ADDR1 might trigger an pagging exception in kernel.
 * Here we add one extra level so they can be safely called by low
 * level entry code which $fp is used for other purpose.
 */

void __trace_hardirqs_on(void)
{
	trace_hardirqs_on();
}
NOKPROBE_SYMBOL(__trace_hardirqs_on);

void __trace_hardirqs_off(void)
{
	trace_hardirqs_off();
}
NOKPROBE_SYMBOL(__trace_hardirqs_off);
back to top