Blame view

include/linux/kmsg_dump.h 1.56 KB
456b565cc   Simon Kagstrom   core: Add kernel ...
1
2
3
4
5
6
7
8
9
10
11
12
13
  /*
   * linux/include/kmsg_dump.h
   *
   * Copyright (C) 2009 Net Insight AB
   *
   * Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
   *
   * This file is subject to the terms and conditions of the GNU General Public
   * License.  See the file COPYING in the main directory of this archive
   * for more details.
   */
  #ifndef _LINUX_KMSG_DUMP_H
  #define _LINUX_KMSG_DUMP_H
ac5622418   Randy Dunlap   kmsg_dump.h: fix ...
14
  #include <linux/errno.h>
456b565cc   Simon Kagstrom   core: Add kernel ...
15
16
17
18
19
  #include <linux/list.h>
  
  enum kmsg_dump_reason {
  	KMSG_DUMP_OOPS,
  	KMSG_DUMP_PANIC,
04c6862c0   Seiji Aguchi   kmsg_dump: add km...
20
21
22
23
  	KMSG_DUMP_RESTART,
  	KMSG_DUMP_HALT,
  	KMSG_DUMP_POWEROFF,
  	KMSG_DUMP_EMERG,
456b565cc   Simon Kagstrom   core: Add kernel ...
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
  };
  
  /**
   * struct kmsg_dumper - kernel crash message dumper structure
   * @dump:	The callback which gets called on crashes. The buffer is passed
   * 		as two sections, where s1 (length l1) contains the older
   * 		messages and s2 (length l2) contains the newer.
   * @list:	Entry in the dumper list (private)
   * @registered:	Flag that specifies if this is already registered
   */
  struct kmsg_dumper {
  	void (*dump)(struct kmsg_dumper *dumper, enum kmsg_dump_reason reason,
  			const char *s1, unsigned long l1,
  			const char *s2, unsigned long l2);
  	struct list_head list;
  	int registered;
  };
595dd3d8b   Randy Dunlap   kmsg_dump: fix bu...
41
  #ifdef CONFIG_PRINTK
456b565cc   Simon Kagstrom   core: Add kernel ...
42
43
44
45
46
  void kmsg_dump(enum kmsg_dump_reason reason);
  
  int kmsg_dump_register(struct kmsg_dumper *dumper);
  
  int kmsg_dump_unregister(struct kmsg_dumper *dumper);
595dd3d8b   Randy Dunlap   kmsg_dump: fix bu...
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
  #else
  static inline void kmsg_dump(enum kmsg_dump_reason reason)
  {
  }
  
  static inline int kmsg_dump_register(struct kmsg_dumper *dumper)
  {
  	return -EINVAL;
  }
  
  static inline int kmsg_dump_unregister(struct kmsg_dumper *dumper)
  {
  	return -EINVAL;
  }
  #endif
456b565cc   Simon Kagstrom   core: Add kernel ...
62
63
  
  #endif /* _LINUX_KMSG_DUMP_H */