]>
Commit | Line | Data |
---|---|---|
b2441318 | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
060287b8 AV |
2 | #ifndef __PSTORE_INTERNAL_H__ |
3 | #define __PSTORE_INTERNAL_H__ | |
4 | ||
67a101f5 AV |
5 | #include <linux/types.h> |
6 | #include <linux/time.h> | |
060287b8 AV |
7 | #include <linux/pstore.h> |
8 | ||
349d7438 DH |
9 | #define PSTORE_DEFAULT_KMSG_BYTES 10240 |
10 | extern unsigned long kmsg_bytes; | |
11 | ||
65f8c95e AV |
12 | #ifdef CONFIG_PSTORE_FTRACE |
13 | extern void pstore_register_ftrace(void); | |
ee1d2674 | 14 | extern void pstore_unregister_ftrace(void); |
65f8c95e AV |
15 | #else |
16 | static inline void pstore_register_ftrace(void) {} | |
ee1d2674 | 17 | static inline void pstore_unregister_ftrace(void) {} |
65f8c95e AV |
18 | #endif |
19 | ||
9d5438f4 MS |
20 | #ifdef CONFIG_PSTORE_PMSG |
21 | extern void pstore_register_pmsg(void); | |
ee1d2674 | 22 | extern void pstore_unregister_pmsg(void); |
9d5438f4 MS |
23 | #else |
24 | static inline void pstore_register_pmsg(void) {} | |
ee1d2674 | 25 | static inline void pstore_unregister_pmsg(void) {} |
9d5438f4 MS |
26 | #endif |
27 | ||
060287b8 AV |
28 | extern struct pstore_info *psinfo; |
29 | ||
366f7e7a | 30 | extern void pstore_set_kmsg_bytes(int); |
6dda9266 | 31 | extern void pstore_get_records(int); |
3a7d2fd1 KC |
32 | extern void pstore_get_backend_records(struct pstore_info *psi, |
33 | struct dentry *root, int quiet); | |
34 | extern int pstore_mkfile(struct dentry *root, | |
35 | struct pstore_record *record); | |
7e26e9ff | 36 | extern bool pstore_is_mounted(void); |
e581ca81 KC |
37 | extern void pstore_record_init(struct pstore_record *record, |
38 | struct pstore_info *psi); | |
060287b8 | 39 | |
cb095afd KC |
40 | /* Called during pstore init/exit. */ |
41 | int __init pstore_init_fs(void); | |
42 | void __exit pstore_exit_fs(void); | |
fe1d4758 | 43 | |
060287b8 | 44 | #endif |