blob: ee0c952188de2c99281fd7567f701893e90a47dd [file] [log] [blame]
Simon Kagstrom456b5652009-10-16 14:09:18 +02001/*
2 * linux/include/kmsg_dump.h
3 *
4 * Copyright (C) 2009 Net Insight AB
5 *
6 * Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
7 *
8 * This file is subject to the terms and conditions of the GNU General Public
9 * License. See the file COPYING in the main directory of this archive
10 * for more details.
11 */
12#ifndef _LINUX_KMSG_DUMP_H
13#define _LINUX_KMSG_DUMP_H
14
Randy Dunlapac562242011-06-15 15:08:17 -070015#include <linux/errno.h>
Simon Kagstrom456b5652009-10-16 14:09:18 +020016#include <linux/list.h>
17
18enum kmsg_dump_reason {
19 KMSG_DUMP_OOPS,
20 KMSG_DUMP_PANIC,
KOSAKI Motohiro0f4bd462009-12-22 03:15:43 +000021 KMSG_DUMP_KEXEC,
Seiji Aguchi04c68622011-01-12 16:59:30 -080022 KMSG_DUMP_RESTART,
23 KMSG_DUMP_HALT,
24 KMSG_DUMP_POWEROFF,
25 KMSG_DUMP_EMERG,
Simon Kagstrom456b5652009-10-16 14:09:18 +020026};
27
28/**
29 * struct kmsg_dumper - kernel crash message dumper structure
30 * @dump: The callback which gets called on crashes. The buffer is passed
31 * as two sections, where s1 (length l1) contains the older
32 * messages and s2 (length l2) contains the newer.
33 * @list: Entry in the dumper list (private)
34 * @registered: Flag that specifies if this is already registered
35 */
36struct kmsg_dumper {
37 void (*dump)(struct kmsg_dumper *dumper, enum kmsg_dump_reason reason,
38 const char *s1, unsigned long l1,
39 const char *s2, unsigned long l2);
40 struct list_head list;
41 int registered;
42};
43
Randy Dunlap595dd3d2009-12-01 10:52:02 -080044#ifdef CONFIG_PRINTK
Simon Kagstrom456b5652009-10-16 14:09:18 +020045void kmsg_dump(enum kmsg_dump_reason reason);
46
47int kmsg_dump_register(struct kmsg_dumper *dumper);
48
49int kmsg_dump_unregister(struct kmsg_dumper *dumper);
Randy Dunlap595dd3d2009-12-01 10:52:02 -080050#else
51static inline void kmsg_dump(enum kmsg_dump_reason reason)
52{
53}
54
55static inline int kmsg_dump_register(struct kmsg_dumper *dumper)
56{
57 return -EINVAL;
58}
59
60static inline int kmsg_dump_unregister(struct kmsg_dumper *dumper)
61{
62 return -EINVAL;
63}
64#endif
Simon Kagstrom456b5652009-10-16 14:09:18 +020065
66#endif /* _LINUX_KMSG_DUMP_H */