Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 302733
b: refs/heads/master
c: 72b3fb2
h: refs/heads/master
i:
  302731: dacc410
v: v3
  • Loading branch information
Li Zhong authored and Ingo Molnar committed Apr 25, 2012
1 parent 3bde5ee commit 578e490
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 62 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 553222f3e81f18da31b2552e18dc519715198590
refs/heads/master: 72b3fb24713755cf9740b403e95aa67ceedf3509
20 changes: 18 additions & 2 deletions trunk/arch/x86/include/asm/nmi.h
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,24 @@ enum {

typedef int (*nmi_handler_t)(unsigned int, struct pt_regs *);

int register_nmi_handler(unsigned int, nmi_handler_t, unsigned long,
const char *);
struct nmiaction {
struct list_head list;
nmi_handler_t handler;
unsigned int flags;
const char *name;
};

#define register_nmi_handler(t, fn, fg, n) \
({ \
static struct nmiaction fn##_na = { \
.handler = (fn), \
.name = (n), \
.flags = (fg), \
}; \
__register_nmi_handler((t), &fn##_na); \
})

int __register_nmi_handler(unsigned int, struct nmiaction *);

void unregister_nmi_handler(unsigned int, const char *);

Expand Down
65 changes: 6 additions & 59 deletions trunk/arch/x86/kernel/nmi.c
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,6 @@
#include <asm/nmi.h>
#include <asm/x86_init.h>

#define NMI_MAX_NAMELEN 16
struct nmiaction {
struct list_head list;
nmi_handler_t handler;
unsigned int flags;
char *name;
};

struct nmi_desc {
spinlock_t lock;
struct list_head head;
Expand Down Expand Up @@ -115,11 +107,14 @@ static int notrace __kprobes nmi_handle(unsigned int type, struct pt_regs *regs,
return handled;
}

static int __setup_nmi(unsigned int type, struct nmiaction *action)
int __register_nmi_handler(unsigned int type, struct nmiaction *action)
{
struct nmi_desc *desc = nmi_to_desc(type);
unsigned long flags;

if (!action->handler)
return -EINVAL;

spin_lock_irqsave(&desc->lock, flags);

/*
Expand All @@ -143,8 +138,9 @@ static int __setup_nmi(unsigned int type, struct nmiaction *action)
spin_unlock_irqrestore(&desc->lock, flags);
return 0;
}
EXPORT_SYMBOL(__register_nmi_handler);

static struct nmiaction *__free_nmi(unsigned int type, const char *name)
void unregister_nmi_handler(unsigned int type, const char *name)
{
struct nmi_desc *desc = nmi_to_desc(type);
struct nmiaction *n;
Expand All @@ -167,56 +163,7 @@ static struct nmiaction *__free_nmi(unsigned int type, const char *name)

spin_unlock_irqrestore(&desc->lock, flags);
synchronize_rcu();
return (n);
}

int register_nmi_handler(unsigned int type, nmi_handler_t handler,
unsigned long nmiflags, const char *devname)
{
struct nmiaction *action;
int retval = -ENOMEM;

if (!handler)
return -EINVAL;

action = kzalloc(sizeof(struct nmiaction), GFP_KERNEL);
if (!action)
goto fail_action;

action->handler = handler;
action->flags = nmiflags;
action->name = kstrndup(devname, NMI_MAX_NAMELEN, GFP_KERNEL);
if (!action->name)
goto fail_action_name;

retval = __setup_nmi(type, action);

if (retval)
goto fail_setup_nmi;

return retval;

fail_setup_nmi:
kfree(action->name);
fail_action_name:
kfree(action);
fail_action:

return retval;
}
EXPORT_SYMBOL_GPL(register_nmi_handler);

void unregister_nmi_handler(unsigned int type, const char *name)
{
struct nmiaction *a;

a = __free_nmi(type, name);
if (a) {
kfree(a->name);
kfree(a);
}
}

EXPORT_SYMBOL_GPL(unregister_nmi_handler);

static notrace __kprobes void
Expand Down

0 comments on commit 578e490

Please sign in to comment.