The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/kernel/die_notifier.c

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 
    2 #include <linux/module.h>
    3 #include <linux/notifier.h>
    4 #include <linux/vmalloc.h>
    5 #include <linux/kdebug.h>
    6 
    7 
    8 static ATOMIC_NOTIFIER_HEAD(die_chain);
    9 
   10 int notify_die(enum die_val val, const char *str,
   11                struct pt_regs *regs, long err, int trap, int sig)
   12 {
   13         struct die_args args = {
   14                 .regs           = regs,
   15                 .str            = str,
   16                 .err            = err,
   17                 .trapnr         = trap,
   18                 .signr          = sig,
   19 
   20         };
   21 
   22         return atomic_notifier_call_chain(&die_chain, val, &args);
   23 }
   24 
   25 int register_die_notifier(struct notifier_block *nb)
   26 {
   27         vmalloc_sync_all();
   28         return atomic_notifier_chain_register(&die_chain, nb);
   29 }
   30 EXPORT_SYMBOL_GPL(register_die_notifier);
   31 
   32 int unregister_die_notifier(struct notifier_block *nb)
   33 {
   34         return atomic_notifier_chain_unregister(&die_chain, nb);
   35 }
   36 EXPORT_SYMBOL_GPL(unregister_die_notifier);
   37 
   38 

Cache object: 13d62f6077edbf73bde3466a4c2f55b3


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.