Merge tag 'configfs-for-4.7' of git://git.infradead.org/users/hch/configfs
[linux-2.6-block.git] / fs / pstore / internal.h
CommitLineData
060287b8
AV
1#ifndef __PSTORE_INTERNAL_H__
2#define __PSTORE_INTERNAL_H__
3
67a101f5
AV
4#include <linux/types.h>
5#include <linux/time.h>
060287b8
AV
6#include <linux/pstore.h>
7
8#if NR_CPUS <= 2 && defined(CONFIG_ARM_THUMB)
9#define PSTORE_CPU_IN_IP 0x1
10#elif NR_CPUS <= 4 && defined(CONFIG_ARM)
11#define PSTORE_CPU_IN_IP 0x3
12#endif
13
14struct pstore_ftrace_record {
15 unsigned long ip;
16 unsigned long parent_ip;
17#ifndef PSTORE_CPU_IN_IP
18 unsigned int cpu;
19#endif
20};
21
22static inline void
23pstore_ftrace_encode_cpu(struct pstore_ftrace_record *rec, unsigned int cpu)
24{
25#ifndef PSTORE_CPU_IN_IP
26 rec->cpu = cpu;
27#else
28 rec->ip |= cpu;
29#endif
30}
31
32static inline unsigned int
33pstore_ftrace_decode_cpu(struct pstore_ftrace_record *rec)
34{
35#ifndef PSTORE_CPU_IN_IP
36 return rec->cpu;
37#else
38 return rec->ip & PSTORE_CPU_IN_IP;
39#endif
40}
41
65f8c95e
AV
42#ifdef CONFIG_PSTORE_FTRACE
43extern void pstore_register_ftrace(void);
ee1d2674 44extern void pstore_unregister_ftrace(void);
65f8c95e
AV
45#else
46static inline void pstore_register_ftrace(void) {}
ee1d2674 47static inline void pstore_unregister_ftrace(void) {}
65f8c95e
AV
48#endif
49
9d5438f4
MS
50#ifdef CONFIG_PSTORE_PMSG
51extern void pstore_register_pmsg(void);
ee1d2674 52extern void pstore_unregister_pmsg(void);
9d5438f4
MS
53#else
54static inline void pstore_register_pmsg(void) {}
ee1d2674 55static inline void pstore_unregister_pmsg(void) {}
9d5438f4
MS
56#endif
57
060287b8
AV
58extern struct pstore_info *psinfo;
59
366f7e7a 60extern void pstore_set_kmsg_bytes(int);
6dda9266 61extern void pstore_get_records(int);
ca01d6dd 62extern int pstore_mkfile(enum pstore_type_id, char *psname, u64 id,
9ad2cbe0
AB
63 int count, char *data, bool compressed,
64 size_t size, struct timespec time,
65 struct pstore_info *psi);
7e26e9ff 66extern bool pstore_is_mounted(void);
060287b8
AV
67
68#endif