Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Anton Vorontsov | 060287b | 2012-07-09 17:10:41 -0700 | [diff] [blame] | 2 | #ifndef __PSTORE_INTERNAL_H__ |
| 3 | #define __PSTORE_INTERNAL_H__ |
| 4 | |
Anton Vorontsov | 67a101f | 2012-07-17 11:37:07 -0700 | [diff] [blame] | 5 | #include <linux/types.h> |
| 6 | #include <linux/time.h> |
Anton Vorontsov | 060287b | 2012-07-09 17:10:41 -0700 | [diff] [blame] | 7 | #include <linux/pstore.h> |
| 8 | |
David Howells | 349d743 | 2017-07-05 16:24:34 +0100 | [diff] [blame] | 9 | #define PSTORE_DEFAULT_KMSG_BYTES 10240 |
| 10 | extern unsigned long kmsg_bytes; |
| 11 | |
Anton Vorontsov | 65f8c95 | 2012-07-17 14:26:15 -0700 | [diff] [blame] | 12 | #ifdef CONFIG_PSTORE_FTRACE |
| 13 | extern void pstore_register_ftrace(void); |
Geliang Tang | ee1d267 | 2015-10-20 00:39:03 -0700 | [diff] [blame] | 14 | extern void pstore_unregister_ftrace(void); |
Kees Cook | 16a5830 | 2020-05-08 08:42:12 -0700 | [diff] [blame] | 15 | ssize_t pstore_ftrace_combine_log(char **dest_log, size_t *dest_log_size, |
| 16 | const char *src_log, size_t src_log_size); |
Anton Vorontsov | 65f8c95 | 2012-07-17 14:26:15 -0700 | [diff] [blame] | 17 | #else |
| 18 | static inline void pstore_register_ftrace(void) {} |
Geliang Tang | ee1d267 | 2015-10-20 00:39:03 -0700 | [diff] [blame] | 19 | static inline void pstore_unregister_ftrace(void) {} |
Kees Cook | 16a5830 | 2020-05-08 08:42:12 -0700 | [diff] [blame] | 20 | static inline ssize_t |
| 21 | pstore_ftrace_combine_log(char **dest_log, size_t *dest_log_size, |
| 22 | const char *src_log, size_t src_log_size) |
| 23 | { |
| 24 | *dest_log_size = 0; |
| 25 | return 0; |
| 26 | } |
Anton Vorontsov | 65f8c95 | 2012-07-17 14:26:15 -0700 | [diff] [blame] | 27 | #endif |
| 28 | |
Mark Salyzyn | 9d5438f | 2015-01-16 16:01:10 -0800 | [diff] [blame] | 29 | #ifdef CONFIG_PSTORE_PMSG |
| 30 | extern void pstore_register_pmsg(void); |
Geliang Tang | ee1d267 | 2015-10-20 00:39:03 -0700 | [diff] [blame] | 31 | extern void pstore_unregister_pmsg(void); |
Mark Salyzyn | 9d5438f | 2015-01-16 16:01:10 -0800 | [diff] [blame] | 32 | #else |
| 33 | static inline void pstore_register_pmsg(void) {} |
Geliang Tang | ee1d267 | 2015-10-20 00:39:03 -0700 | [diff] [blame] | 34 | static inline void pstore_unregister_pmsg(void) {} |
Mark Salyzyn | 9d5438f | 2015-01-16 16:01:10 -0800 | [diff] [blame] | 35 | #endif |
| 36 | |
Anton Vorontsov | 060287b | 2012-07-09 17:10:41 -0700 | [diff] [blame] | 37 | extern struct pstore_info *psinfo; |
| 38 | |
Luck, Tony | 366f7e7 | 2011-03-18 15:33:43 -0700 | [diff] [blame] | 39 | extern void pstore_set_kmsg_bytes(int); |
Luck, Tony | 6dda926 | 2011-08-11 15:14:39 -0700 | [diff] [blame] | 40 | extern void pstore_get_records(int); |
Kees Cook | 3a7d2fd | 2017-04-27 15:53:21 -0700 | [diff] [blame] | 41 | extern void pstore_get_backend_records(struct pstore_info *psi, |
| 42 | struct dentry *root, int quiet); |
Kees Cook | 609e28bb | 2020-05-04 19:46:53 -0700 | [diff] [blame] | 43 | extern int pstore_put_backend_records(struct pstore_info *psi); |
Kees Cook | 3a7d2fd | 2017-04-27 15:53:21 -0700 | [diff] [blame] | 44 | extern int pstore_mkfile(struct dentry *root, |
| 45 | struct pstore_record *record); |
Kees Cook | e581ca8 | 2017-05-19 15:10:31 -0700 | [diff] [blame] | 46 | extern void pstore_record_init(struct pstore_record *record, |
| 47 | struct pstore_info *psi); |
Anton Vorontsov | 060287b | 2012-07-09 17:10:41 -0700 | [diff] [blame] | 48 | |
Kees Cook | cb095af | 2018-10-18 11:17:42 -0700 | [diff] [blame] | 49 | /* Called during pstore init/exit. */ |
| 50 | int __init pstore_init_fs(void); |
| 51 | void __exit pstore_exit_fs(void); |
Kees Cook | fe1d475 | 2018-03-06 15:57:38 -0800 | [diff] [blame] | 52 | |
Anton Vorontsov | 060287b | 2012-07-09 17:10:41 -0700 | [diff] [blame] | 53 | #endif |