1 # SPDX-License-Identifier: GPL-2.0-only << 2 config PSTORE 1 config PSTORE 3 tristate "Persistent store support" 2 tristate "Persistent store support" 4 default n 3 default n 5 help 4 help 6 This option enables generic access 5 This option enables generic access to platform level 7 persistent storage via "pstore" fil 6 persistent storage via "pstore" filesystem that can 8 be mounted as /dev/pstore. Only us 7 be mounted as /dev/pstore. Only useful if you have 9 a platform level driver that regist 8 a platform level driver that registers with pstore to 10 provide the data, so you probably s 9 provide the data, so you probably should just go say "Y" 11 (or "M") to a platform specific per 10 (or "M") to a platform specific persistent store driver 12 (e.g. ACPI_APEI on X86) which will 11 (e.g. ACPI_APEI on X86) which will select this for you. 13 If you don't have a platform persis 12 If you don't have a platform persistent store driver, 14 say N. 13 say N. 15 14 16 config PSTORE_DEFAULT_KMSG_BYTES !! 15 choice 17 int "Default kernel log storage space" !! 16 prompt "Choose compression algorithm" 18 depends on PSTORE !! 17 depends on PSTORE 19 default "10240" !! 18 default PSTORE_ZLIB_COMPRESS 20 help !! 19 help 21 Defines default size of pstore kerne !! 20 This option chooses compression algorithm. 22 Can be enlarged if needed, not recom !! 21 23 !! 22 config PSTORE_ZLIB_COMPRESS 24 config PSTORE_COMPRESS !! 23 bool "ZLIB" 25 bool "Pstore compression (deflate)" !! 24 select ZLIB_DEFLATE 26 depends on PSTORE !! 25 select ZLIB_INFLATE 27 select ZLIB_INFLATE !! 26 help 28 select ZLIB_DEFLATE !! 27 This option enables ZLIB compression algorithm support. 29 default y !! 28 30 help !! 29 config PSTORE_LZO_COMPRESS 31 Whether pstore records should be com !! 30 bool "LZO" 32 the backing store. This is implement !! 31 select LZO_COMPRESS 33 algorithm, using the library impleme !! 32 select LZO_DECOMPRESS 34 blown crypto API. This reduces the r !! 33 help 35 problems while pstore is recording p !! 34 This option enables LZO compression algorithm support. >> 35 >> 36 config PSTORE_LZ4_COMPRESS >> 37 bool "LZ4" >> 38 select LZ4_COMPRESS >> 39 select LZ4_DECOMPRESS >> 40 help >> 41 This option enables LZ4 compression algorithm support. >> 42 endchoice 36 43 37 config PSTORE_CONSOLE 44 config PSTORE_CONSOLE 38 bool "Log kernel console messages" 45 bool "Log kernel console messages" 39 depends on PSTORE 46 depends on PSTORE 40 help 47 help 41 When the option is enabled, pstore w 48 When the option is enabled, pstore will log all kernel 42 messages, even if no oops or panic h 49 messages, even if no oops or panic happened. 43 50 44 config PSTORE_PMSG 51 config PSTORE_PMSG 45 bool "Log user space messages" 52 bool "Log user space messages" 46 depends on PSTORE 53 depends on PSTORE 47 select RT_MUTEXES 54 select RT_MUTEXES 48 help 55 help 49 When the option is enabled, pstore w 56 When the option is enabled, pstore will export a character 50 interface /dev/pmsg0 to log user spa 57 interface /dev/pmsg0 to log user space messages. On reboot 51 data can be retrieved from /sys/fs/p 58 data can be retrieved from /sys/fs/pstore/pmsg-ramoops-[ID]. 52 59 53 If unsure, say N. 60 If unsure, say N. 54 61 55 config PSTORE_FTRACE 62 config PSTORE_FTRACE 56 bool "Persistent function tracer" 63 bool "Persistent function tracer" 57 depends on PSTORE 64 depends on PSTORE 58 depends on FUNCTION_TRACER 65 depends on FUNCTION_TRACER 59 depends on DEBUG_FS 66 depends on DEBUG_FS 60 help 67 help 61 With this option kernel traces funct 68 With this option kernel traces function calls into a persistent 62 ram buffer that can be decoded and d 69 ram buffer that can be decoded and dumped after reboot through 63 pstore filesystem. It can be used to 70 pstore filesystem. It can be used to determine what function 64 was last called before a reset or pa 71 was last called before a reset or panic. 65 72 66 If unsure, say N. 73 If unsure, say N. 67 74 68 config PSTORE_RAM 75 config PSTORE_RAM 69 tristate "Log panic/oops to a RAM buff 76 tristate "Log panic/oops to a RAM buffer" 70 depends on PSTORE 77 depends on PSTORE 71 depends on HAS_IOMEM 78 depends on HAS_IOMEM >> 79 depends on HAVE_MEMBLOCK 72 select REED_SOLOMON 80 select REED_SOLOMON 73 select REED_SOLOMON_ENC8 81 select REED_SOLOMON_ENC8 74 select REED_SOLOMON_DEC8 82 select REED_SOLOMON_DEC8 75 help 83 help 76 This enables panic and oops messages 84 This enables panic and oops messages to be logged to a circular 77 buffer in RAM where it can be read b 85 buffer in RAM where it can be read back at some later point. 78 86 79 Note that for historical reasons, th 87 Note that for historical reasons, the module will be named 80 "ramoops.ko". 88 "ramoops.ko". 81 89 82 For more information, see Documentat 90 For more information, see Documentation/admin-guide/ramoops.rst. 83 << 84 config PSTORE_ZONE << 85 tristate << 86 depends on PSTORE << 87 help << 88 The common layer for pstore/blk (and << 89 to manage storage in zones. << 90 << 91 config PSTORE_BLK << 92 tristate "Log panic/oops to a block de << 93 depends on PSTORE << 94 depends on BLOCK << 95 select PSTORE_ZONE << 96 default n << 97 help << 98 This enables panic and oops message << 99 where it can be read back at some la << 100 << 101 For more information, see Documentat << 102 << 103 If unsure, say N. << 104 << 105 config PSTORE_BLK_BLKDEV << 106 string "block device identifier" << 107 depends on PSTORE_BLK << 108 default "" << 109 help << 110 Which block device should be used fo << 111 << 112 It accepts the following variants: << 113 1) <hex_major><hex_minor> device num << 114 with no leading 0x, for example b << 115 2) /dev/<disk_name> represents the d << 116 3) /dev/<disk_name><decimal> represe << 117 of partition - device number of d << 118 4) /dev/<disk_name>p<decimal> - same << 119 used when disk name of partitione << 120 5) PARTUUID=00112233-4455-6677-8899- << 121 unique id of a partition if the p << 122 The UUID may be either an EFI/GPT << 123 partition using the format SSSSSS << 124 filled hex representation of the << 125 is a zero-filled hex representati << 126 6) PARTUUID=<UUID>/PARTNROFF=<int> t << 127 to a partition with a known uniqu << 128 7) <major>:<minor> major and minor n << 129 a colon. << 130 << 131 NOTE that, both Kconfig and module p << 132 pstore/blk, but module parameters ha << 133 << 134 config PSTORE_BLK_KMSG_SIZE << 135 int "Size in Kbytes of kmsg dump log t << 136 depends on PSTORE_BLK << 137 default 64 << 138 help << 139 This just sets size of kmsg dump (oo << 140 pstore/blk. The size is in KB and mu << 141 << 142 NOTE that, both Kconfig and module p << 143 pstore/blk, but module parameters ha << 144 << 145 config PSTORE_BLK_MAX_REASON << 146 int "Maximum kmsg dump reason to store << 147 depends on PSTORE_BLK << 148 default 2 << 149 help << 150 The maximum reason for kmsg dumps to << 151 2 (KMSG_DUMP_OOPS), see include/linu << 152 enum kmsg_dump_reason for more detai << 153 << 154 NOTE that, both Kconfig and module p << 155 pstore/blk, but module parameters ha << 156 << 157 config PSTORE_BLK_PMSG_SIZE << 158 int "Size in Kbytes of pmsg to store" << 159 depends on PSTORE_BLK << 160 depends on PSTORE_PMSG << 161 default 64 << 162 help << 163 This just sets size of pmsg (pmsg_si << 164 in KB and must be a multiple of 4. << 165 << 166 NOTE that, both Kconfig and module p << 167 pstore/blk, but module parameters ha << 168 << 169 config PSTORE_BLK_CONSOLE_SIZE << 170 int "Size in Kbytes of console log to << 171 depends on PSTORE_BLK << 172 depends on PSTORE_CONSOLE << 173 default 64 << 174 help << 175 This just sets size of console log ( << 176 pstore/blk. The size is in KB and mu << 177 << 178 NOTE that, both Kconfig and module p << 179 pstore/blk, but module parameters ha << 180 << 181 config PSTORE_BLK_FTRACE_SIZE << 182 int "Size in Kbytes of ftrace log to s << 183 depends on PSTORE_BLK << 184 depends on PSTORE_FTRACE << 185 default 64 << 186 help << 187 This just sets size of ftrace log (f << 188 size is in KB and must be a multiple << 189 << 190 NOTE that, both Kconfig and module p << 191 pstore/blk, but module parameters ha <<
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.