mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-15 10:17:20 +00:00
Restore the trap type argument to the DTrace trap hook, removed in r268600.
It's redundant at the moment since it can be obtained from the trapframe on the architectures where DTrace is supported, but this won't be the case with ARM.
This commit is contained in:
parent
7a19455d22
commit
cafe874475
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=276142
@ -614,7 +614,8 @@ trap_check(struct trapframe *frame)
|
||||
{
|
||||
|
||||
#ifdef KDTRACE_HOOKS
|
||||
if (dtrace_trap_func != NULL && (*dtrace_trap_func)(frame))
|
||||
if (dtrace_trap_func != NULL &&
|
||||
(*dtrace_trap_func)(frame, frame->tf_trapno) != 0)
|
||||
return;
|
||||
#endif
|
||||
trap(frame);
|
||||
|
@ -464,7 +464,7 @@ dtrace_gethrestime(void)
|
||||
|
||||
/* Function to handle DTrace traps during probes. See amd64/amd64/trap.c. */
|
||||
int
|
||||
dtrace_trap(struct trapframe *frame)
|
||||
dtrace_trap(struct trapframe *frame, u_int type)
|
||||
{
|
||||
/*
|
||||
* A trap can occur while DTrace executes a probe. Before
|
||||
@ -480,7 +480,7 @@ dtrace_trap(struct trapframe *frame)
|
||||
* There are only a couple of trap types that are expected.
|
||||
* All the rest will be handled in the usual way.
|
||||
*/
|
||||
switch (frame->tf_trapno) {
|
||||
switch (type) {
|
||||
/* General protection fault. */
|
||||
case T_PROTFLT:
|
||||
/* Flag an illegal operation. */
|
||||
|
@ -473,7 +473,7 @@ dtrace_gethrestime(void)
|
||||
|
||||
/* Function to handle DTrace traps during probes. See i386/i386/trap.c */
|
||||
int
|
||||
dtrace_trap(struct trapframe *frame)
|
||||
dtrace_trap(struct trapframe *frame, u_int type)
|
||||
{
|
||||
/*
|
||||
* A trap can occur while DTrace executes a probe. Before
|
||||
@ -489,7 +489,7 @@ dtrace_trap(struct trapframe *frame)
|
||||
* There are only a couple of trap types that are expected.
|
||||
* All the rest will be handled in the usual way.
|
||||
*/
|
||||
switch (frame->tf_trapno) {
|
||||
switch (type) {
|
||||
/* General protection fault. */
|
||||
case T_PROTFLT:
|
||||
/* Flag an illegal operation. */
|
||||
|
@ -137,11 +137,8 @@ dtrace_gethrestime(void)
|
||||
|
||||
/* Function to handle DTrace traps during probes. See amd64/amd64/trap.c */
|
||||
int
|
||||
dtrace_trap(struct trapframe *frame)
|
||||
dtrace_trap(struct trapframe *frame, u_int type)
|
||||
{
|
||||
u_int type;
|
||||
|
||||
type = (trapframe->cause & MIPS_CR_EXC_CODE) >> MIPS_CR_EXC_CODE_SHIFT;
|
||||
|
||||
/*
|
||||
* A trap can occur while DTrace executes a probe. Before
|
||||
|
@ -262,8 +262,9 @@ dtrace_gethrestime(void)
|
||||
|
||||
/* Function to handle DTrace traps during probes. See powerpc/powerpc/trap.c */
|
||||
int
|
||||
dtrace_trap(struct trapframe *frame)
|
||||
dtrace_trap(struct trapframe *frame, u_int type)
|
||||
{
|
||||
|
||||
/*
|
||||
* A trap can occur while DTrace executes a probe. Before
|
||||
* executing the probe, DTrace blocks re-scheduling and sets
|
||||
@ -278,7 +279,7 @@ dtrace_trap(struct trapframe *frame)
|
||||
* There are only a couple of trap types that are expected.
|
||||
* All the rest will be handled in the usual way.
|
||||
*/
|
||||
switch (frame->exc) {
|
||||
switch (type) {
|
||||
/* Page fault. */
|
||||
case EXC_DSI:
|
||||
case EXC_DSE:
|
||||
|
@ -246,7 +246,7 @@ trap(struct trapframe *frame)
|
||||
* flag is cleared and finally re-scheduling is enabled.
|
||||
*/
|
||||
if ((type == T_PROTFLT || type == T_PAGEFLT) &&
|
||||
dtrace_trap_func != NULL && (*dtrace_trap_func)(frame))
|
||||
dtrace_trap_func != NULL && (*dtrace_trap_func)(frame, type))
|
||||
goto out;
|
||||
#endif
|
||||
|
||||
|
@ -617,7 +617,8 @@ trap(struct trapframe *trapframe)
|
||||
* XXXDTRACE: add pid probe handler here (if ever)
|
||||
*/
|
||||
if (!usermode) {
|
||||
if (dtrace_trap_func != NULL && (*dtrace_trap_func)(trapframe))
|
||||
if (dtrace_trap_func != NULL &&
|
||||
(*dtrace_trap_func)(trapframe, type) != 0)
|
||||
return (trapframe->pc);
|
||||
}
|
||||
#endif
|
||||
|
@ -177,7 +177,7 @@ trap(struct trapframe *frame)
|
||||
* handled the trap and modified the trap frame so that this
|
||||
* function can return normally.
|
||||
*/
|
||||
if (dtrace_trap_func != NULL && (*dtrace_trap_func)(frame))
|
||||
if (dtrace_trap_func != NULL && (*dtrace_trap_func)(frame, type) != 0)
|
||||
return;
|
||||
#endif
|
||||
|
||||
|
@ -39,14 +39,14 @@ struct vattr;
|
||||
struct vnode;
|
||||
struct reg;
|
||||
|
||||
int dtrace_trap(struct trapframe *);
|
||||
int dtrace_trap(struct trapframe *, u_int);
|
||||
|
||||
/*
|
||||
* The dtrace module handles traps that occur during a DTrace probe.
|
||||
* This type definition is used in the trap handler to provide a
|
||||
* hook for the dtrace module to register its handler with.
|
||||
*/
|
||||
typedef int (*dtrace_trap_func_t)(struct trapframe *);
|
||||
typedef int (*dtrace_trap_func_t)(struct trapframe *, u_int);
|
||||
extern dtrace_trap_func_t dtrace_trap_func;
|
||||
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user