Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Persistent Storage - platform driver interface parts. |
| 3 | * |
Anton Vorontsov | f29e595 | 2012-05-26 06:20:19 -0700 | [diff] [blame] | 4 | * Copyright (C) 2007-2008 Google, Inc. |
Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 5 | * Copyright (C) 2010 Intel Corporation <tony.luck@intel.com> |
| 6 | * |
| 7 | * This program is free software; you can redistribute it and/or modify |
| 8 | * it under the terms of the GNU General Public License version 2 as |
| 9 | * published by the Free Software Foundation. |
| 10 | * |
| 11 | * This program is distributed in the hope that it will be useful, |
| 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 14 | * GNU General Public License for more details. |
| 15 | * |
| 16 | * You should have received a copy of the GNU General Public License |
| 17 | * along with this program; if not, write to the Free Software |
| 18 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 19 | */ |
| 20 | |
| 21 | #include <linux/atomic.h> |
| 22 | #include <linux/types.h> |
| 23 | #include <linux/errno.h> |
| 24 | #include <linux/init.h> |
| 25 | #include <linux/kmsg_dump.h> |
Anton Vorontsov | f29e595 | 2012-05-26 06:20:19 -0700 | [diff] [blame] | 26 | #include <linux/console.h> |
Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 27 | #include <linux/module.h> |
| 28 | #include <linux/pstore.h> |
| 29 | #include <linux/string.h> |
Luck, Tony | 6dda926 | 2011-08-11 15:14:39 -0700 | [diff] [blame] | 30 | #include <linux/timer.h> |
Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 31 | #include <linux/slab.h> |
| 32 | #include <linux/uaccess.h> |
Don Zickus | abd4d55 | 2011-08-12 10:54:51 -0700 | [diff] [blame] | 33 | #include <linux/hardirq.h> |
Anton Vorontsov | a3f5f07 | 2012-05-26 06:20:28 -0700 | [diff] [blame] | 34 | #include <linux/jiffies.h> |
Luck, Tony | 6dda926 | 2011-08-11 15:14:39 -0700 | [diff] [blame] | 35 | #include <linux/workqueue.h> |
Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 36 | |
| 37 | #include "internal.h" |
| 38 | |
| 39 | /* |
Luck, Tony | 6dda926 | 2011-08-11 15:14:39 -0700 | [diff] [blame] | 40 | * We defer making "oops" entries appear in pstore - see |
| 41 | * whether the system is actually still running well enough |
| 42 | * to let someone see the entry |
| 43 | */ |
Anton Vorontsov | 521f7288 | 2012-05-26 06:20:29 -0700 | [diff] [blame] | 44 | static int pstore_update_ms = -1; |
Anton Vorontsov | a3f5f07 | 2012-05-26 06:20:28 -0700 | [diff] [blame] | 45 | module_param_named(update_ms, pstore_update_ms, int, 0600); |
| 46 | MODULE_PARM_DESC(update_ms, "milliseconds before pstore updates its content " |
Anton Vorontsov | 521f7288 | 2012-05-26 06:20:29 -0700 | [diff] [blame] | 47 | "(default is -1, which means runtime updates are disabled; " |
| 48 | "enabling this option is not safe, it may lead to further " |
| 49 | "corruption on Oopses)"); |
Luck, Tony | 6dda926 | 2011-08-11 15:14:39 -0700 | [diff] [blame] | 50 | |
| 51 | static int pstore_new_entry; |
| 52 | |
| 53 | static void pstore_timefunc(unsigned long); |
| 54 | static DEFINE_TIMER(pstore_timer, pstore_timefunc, 0, 0); |
| 55 | |
| 56 | static void pstore_dowork(struct work_struct *); |
| 57 | static DECLARE_WORK(pstore_work, pstore_dowork); |
| 58 | |
| 59 | /* |
Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 60 | * pstore_lock just protects "psinfo" during |
| 61 | * calls to pstore_register() |
| 62 | */ |
| 63 | static DEFINE_SPINLOCK(pstore_lock); |
Anton Vorontsov | 060287b | 2012-07-09 17:10:41 -0700 | [diff] [blame] | 64 | struct pstore_info *psinfo; |
Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 65 | |
Matthew Garrett | dee28e7 | 2011-07-21 16:57:55 -0400 | [diff] [blame] | 66 | static char *backend; |
| 67 | |
Luck, Tony | 366f7e7 | 2011-03-18 15:33:43 -0700 | [diff] [blame] | 68 | /* How much of the console log to snapshot */ |
Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 69 | static unsigned long kmsg_bytes = 10240; |
| 70 | |
Luck, Tony | 366f7e7 | 2011-03-18 15:33:43 -0700 | [diff] [blame] | 71 | void pstore_set_kmsg_bytes(int bytes) |
Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 72 | { |
Luck, Tony | 366f7e7 | 2011-03-18 15:33:43 -0700 | [diff] [blame] | 73 | kmsg_bytes = bytes; |
Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 74 | } |
| 75 | |
Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 76 | /* Tag each group of saved records with a sequence number */ |
| 77 | static int oopscount; |
| 78 | |
Seiji Aguchi | 381b872 | 2012-03-16 15:36:59 -0700 | [diff] [blame] | 79 | static const char *get_reason_str(enum kmsg_dump_reason reason) |
| 80 | { |
| 81 | switch (reason) { |
| 82 | case KMSG_DUMP_PANIC: |
| 83 | return "Panic"; |
| 84 | case KMSG_DUMP_OOPS: |
| 85 | return "Oops"; |
| 86 | case KMSG_DUMP_EMERG: |
| 87 | return "Emergency"; |
| 88 | case KMSG_DUMP_RESTART: |
| 89 | return "Restart"; |
| 90 | case KMSG_DUMP_HALT: |
| 91 | return "Halt"; |
| 92 | case KMSG_DUMP_POWEROFF: |
| 93 | return "Poweroff"; |
| 94 | default: |
| 95 | return "Unknown"; |
| 96 | } |
| 97 | } |
Tony Luck | 9f6af27 | 2011-03-22 16:01:49 -0700 | [diff] [blame] | 98 | |
Seiji Aguchi | 9f244e9 | 2013-01-11 18:09:41 +0000 | [diff] [blame] | 99 | bool pstore_cannot_block_path(enum kmsg_dump_reason reason) |
| 100 | { |
| 101 | /* |
| 102 | * In case of NMI path, pstore shouldn't be blocked |
| 103 | * regardless of reason. |
| 104 | */ |
| 105 | if (in_nmi()) |
| 106 | return true; |
| 107 | |
| 108 | switch (reason) { |
| 109 | /* In panic case, other cpus are stopped by smp_send_stop(). */ |
| 110 | case KMSG_DUMP_PANIC: |
| 111 | /* Emergency restart shouldn't be blocked by spin lock. */ |
| 112 | case KMSG_DUMP_EMERG: |
| 113 | return true; |
| 114 | default: |
| 115 | return false; |
| 116 | } |
| 117 | } |
| 118 | EXPORT_SYMBOL_GPL(pstore_cannot_block_path); |
| 119 | |
Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 120 | /* |
| 121 | * callback from kmsg_dump. (s2,l2) has the most recently |
| 122 | * written bytes, older bytes are in (s1,l1). Save as much |
| 123 | * as we can from the end of the buffer. |
| 124 | */ |
| 125 | static void pstore_dump(struct kmsg_dumper *dumper, |
Kay Sievers | e2ae715 | 2012-06-15 14:07:51 +0200 | [diff] [blame] | 126 | enum kmsg_dump_reason reason) |
Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 127 | { |
Kay Sievers | e2ae715 | 2012-06-15 14:07:51 +0200 | [diff] [blame] | 128 | unsigned long total = 0; |
Seiji Aguchi | 381b872 | 2012-03-16 15:36:59 -0700 | [diff] [blame] | 129 | const char *why; |
Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 130 | u64 id; |
Matthew Garrett | b94fdd0 | 2011-07-21 16:57:54 -0400 | [diff] [blame] | 131 | unsigned int part = 1; |
Don Zickus | abd4d55 | 2011-08-12 10:54:51 -0700 | [diff] [blame] | 132 | unsigned long flags = 0; |
| 133 | int is_locked = 0; |
Kay Sievers | e2ae715 | 2012-06-15 14:07:51 +0200 | [diff] [blame] | 134 | int ret; |
Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 135 | |
Seiji Aguchi | 381b872 | 2012-03-16 15:36:59 -0700 | [diff] [blame] | 136 | why = get_reason_str(reason); |
Tony Luck | 9f6af27 | 2011-03-22 16:01:49 -0700 | [diff] [blame] | 137 | |
Seiji Aguchi | 9f244e9 | 2013-01-11 18:09:41 +0000 | [diff] [blame] | 138 | if (pstore_cannot_block_path(reason)) { |
| 139 | is_locked = spin_trylock_irqsave(&psinfo->buf_lock, flags); |
| 140 | if (!is_locked) { |
| 141 | pr_err("pstore dump routine blocked in %s path, may corrupt error record\n" |
| 142 | , in_nmi() ? "NMI" : why); |
| 143 | } |
Don Zickus | abd4d55 | 2011-08-12 10:54:51 -0700 | [diff] [blame] | 144 | } else |
| 145 | spin_lock_irqsave(&psinfo->buf_lock, flags); |
Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 146 | oopscount++; |
| 147 | while (total < kmsg_bytes) { |
Kay Sievers | e2ae715 | 2012-06-15 14:07:51 +0200 | [diff] [blame] | 148 | char *dst; |
| 149 | unsigned long size; |
| 150 | int hsize; |
| 151 | size_t len; |
| 152 | |
Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 153 | dst = psinfo->buf; |
Matthew Garrett | 5628068 | 2011-07-21 16:57:53 -0400 | [diff] [blame] | 154 | hsize = sprintf(dst, "%s#%d Part%d\n", why, oopscount, part); |
Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 155 | size = psinfo->bufsize - hsize; |
| 156 | dst += hsize; |
| 157 | |
Kay Sievers | e2ae715 | 2012-06-15 14:07:51 +0200 | [diff] [blame] | 158 | if (!kmsg_dump_get_buffer(dumper, true, dst, size, &len)) |
Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 159 | break; |
| 160 | |
Kees Cook | 3d6d8d2 | 2011-11-17 13:13:29 -0800 | [diff] [blame] | 161 | ret = psinfo->write(PSTORE_TYPE_DMESG, reason, &id, part, |
Seiji Aguchi | 755d4fe | 2012-11-26 16:07:44 -0800 | [diff] [blame] | 162 | oopscount, hsize + len, psinfo); |
Chen Gong | b238b8f | 2011-10-12 09:17:24 -0700 | [diff] [blame] | 163 | if (ret == 0 && reason == KMSG_DUMP_OOPS && pstore_is_mounted()) |
Luck, Tony | 6dda926 | 2011-08-11 15:14:39 -0700 | [diff] [blame] | 164 | pstore_new_entry = 1; |
Kay Sievers | e2ae715 | 2012-06-15 14:07:51 +0200 | [diff] [blame] | 165 | |
| 166 | total += hsize + len; |
Matthew Garrett | 5628068 | 2011-07-21 16:57:53 -0400 | [diff] [blame] | 167 | part++; |
Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 168 | } |
Seiji Aguchi | 9f244e9 | 2013-01-11 18:09:41 +0000 | [diff] [blame] | 169 | if (pstore_cannot_block_path(reason)) { |
Don Zickus | abd4d55 | 2011-08-12 10:54:51 -0700 | [diff] [blame] | 170 | if (is_locked) |
Seiji Aguchi | 9f244e9 | 2013-01-11 18:09:41 +0000 | [diff] [blame] | 171 | spin_unlock_irqrestore(&psinfo->buf_lock, flags); |
Don Zickus | abd4d55 | 2011-08-12 10:54:51 -0700 | [diff] [blame] | 172 | } else |
| 173 | spin_unlock_irqrestore(&psinfo->buf_lock, flags); |
Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 174 | } |
| 175 | |
| 176 | static struct kmsg_dumper pstore_dumper = { |
| 177 | .dump = pstore_dump, |
| 178 | }; |
| 179 | |
Anton Vorontsov | f29e595 | 2012-05-26 06:20:19 -0700 | [diff] [blame] | 180 | #ifdef CONFIG_PSTORE_CONSOLE |
| 181 | static void pstore_console_write(struct console *con, const char *s, unsigned c) |
| 182 | { |
| 183 | const char *e = s + c; |
| 184 | |
| 185 | while (s < e) { |
| 186 | unsigned long flags; |
Colin Ian King | 70a6f46 | 2012-11-14 11:49:53 +0000 | [diff] [blame] | 187 | u64 id; |
Anton Vorontsov | f29e595 | 2012-05-26 06:20:19 -0700 | [diff] [blame] | 188 | |
| 189 | if (c > psinfo->bufsize) |
| 190 | c = psinfo->bufsize; |
Chuansheng Liu | 80c9d03 | 2012-09-18 01:43:44 +0800 | [diff] [blame] | 191 | |
| 192 | if (oops_in_progress) { |
| 193 | if (!spin_trylock_irqsave(&psinfo->buf_lock, flags)) |
| 194 | break; |
| 195 | } else { |
| 196 | spin_lock_irqsave(&psinfo->buf_lock, flags); |
| 197 | } |
Anton Vorontsov | f29e595 | 2012-05-26 06:20:19 -0700 | [diff] [blame] | 198 | memcpy(psinfo->buf, s, c); |
Seiji Aguchi | 755d4fe | 2012-11-26 16:07:44 -0800 | [diff] [blame] | 199 | psinfo->write(PSTORE_TYPE_CONSOLE, 0, &id, 0, 0, c, psinfo); |
Anton Vorontsov | f29e595 | 2012-05-26 06:20:19 -0700 | [diff] [blame] | 200 | spin_unlock_irqrestore(&psinfo->buf_lock, flags); |
| 201 | s += c; |
| 202 | c = e - s; |
| 203 | } |
| 204 | } |
| 205 | |
| 206 | static struct console pstore_console = { |
| 207 | .name = "pstore", |
| 208 | .write = pstore_console_write, |
| 209 | .flags = CON_PRINTBUFFER | CON_ENABLED | CON_ANYTIME, |
| 210 | .index = -1, |
| 211 | }; |
| 212 | |
| 213 | static void pstore_register_console(void) |
| 214 | { |
| 215 | register_console(&pstore_console); |
| 216 | } |
| 217 | #else |
| 218 | static void pstore_register_console(void) {} |
| 219 | #endif |
| 220 | |
Anton Vorontsov | 897dba0 | 2012-07-09 17:10:40 -0700 | [diff] [blame] | 221 | static int pstore_write_compat(enum pstore_type_id type, |
| 222 | enum kmsg_dump_reason reason, |
Seiji Aguchi | 755d4fe | 2012-11-26 16:07:44 -0800 | [diff] [blame] | 223 | u64 *id, unsigned int part, int count, |
Anton Vorontsov | 897dba0 | 2012-07-09 17:10:40 -0700 | [diff] [blame] | 224 | size_t size, struct pstore_info *psi) |
| 225 | { |
| 226 | return psi->write_buf(type, reason, id, part, psinfo->buf, size, psi); |
| 227 | } |
| 228 | |
Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 229 | /* |
| 230 | * platform specific persistent storage driver registers with |
| 231 | * us here. If pstore is already mounted, call the platform |
| 232 | * read function right away to populate the file system. If not |
| 233 | * then the pstore mount code will call us later to fill out |
| 234 | * the file system. |
| 235 | * |
| 236 | * Register with kmsg_dump to save last part of console log on panic. |
| 237 | */ |
| 238 | int pstore_register(struct pstore_info *psi) |
| 239 | { |
| 240 | struct module *owner = psi->owner; |
| 241 | |
| 242 | spin_lock(&pstore_lock); |
| 243 | if (psinfo) { |
| 244 | spin_unlock(&pstore_lock); |
| 245 | return -EBUSY; |
| 246 | } |
Matthew Garrett | dee28e7 | 2011-07-21 16:57:55 -0400 | [diff] [blame] | 247 | |
| 248 | if (backend && strcmp(backend, psi->name)) { |
| 249 | spin_unlock(&pstore_lock); |
| 250 | return -EINVAL; |
| 251 | } |
| 252 | |
Anton Vorontsov | 897dba0 | 2012-07-09 17:10:40 -0700 | [diff] [blame] | 253 | if (!psi->write) |
| 254 | psi->write = pstore_write_compat; |
Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 255 | psinfo = psi; |
Kees Cook | f6f8285 | 2011-11-17 12:58:07 -0800 | [diff] [blame] | 256 | mutex_init(&psinfo->read_mutex); |
Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 257 | spin_unlock(&pstore_lock); |
| 258 | |
| 259 | if (owner && !try_module_get(owner)) { |
| 260 | psinfo = NULL; |
| 261 | return -EINVAL; |
| 262 | } |
| 263 | |
| 264 | if (pstore_is_mounted()) |
Luck, Tony | 6dda926 | 2011-08-11 15:14:39 -0700 | [diff] [blame] | 265 | pstore_get_records(0); |
Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 266 | |
| 267 | kmsg_dump_register(&pstore_dumper); |
Anton Vorontsov | f29e595 | 2012-05-26 06:20:19 -0700 | [diff] [blame] | 268 | pstore_register_console(); |
Anton Vorontsov | 65f8c95 | 2012-07-17 14:26:15 -0700 | [diff] [blame] | 269 | pstore_register_ftrace(); |
Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 270 | |
Anton Vorontsov | a3f5f07 | 2012-05-26 06:20:28 -0700 | [diff] [blame] | 271 | if (pstore_update_ms >= 0) { |
| 272 | pstore_timer.expires = jiffies + |
| 273 | msecs_to_jiffies(pstore_update_ms); |
| 274 | add_timer(&pstore_timer); |
| 275 | } |
Luck, Tony | 6dda926 | 2011-08-11 15:14:39 -0700 | [diff] [blame] | 276 | |
Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 277 | return 0; |
| 278 | } |
| 279 | EXPORT_SYMBOL_GPL(pstore_register); |
| 280 | |
| 281 | /* |
Luck, Tony | 6dda926 | 2011-08-11 15:14:39 -0700 | [diff] [blame] | 282 | * Read all the records from the persistent store. Create |
| 283 | * files in our filesystem. Don't warn about -EEXIST errors |
| 284 | * when we are re-scanning the backing store looking to add new |
| 285 | * error records. |
Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 286 | */ |
Luck, Tony | 6dda926 | 2011-08-11 15:14:39 -0700 | [diff] [blame] | 287 | void pstore_get_records(int quiet) |
Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 288 | { |
| 289 | struct pstore_info *psi = psinfo; |
Kees Cook | f6f8285 | 2011-11-17 12:58:07 -0800 | [diff] [blame] | 290 | char *buf = NULL; |
Chen Gong | 8d38d74 | 2011-05-16 10:58:57 -0700 | [diff] [blame] | 291 | ssize_t size; |
Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 292 | u64 id; |
Seiji Aguchi | 755d4fe | 2012-11-26 16:07:44 -0800 | [diff] [blame] | 293 | int count; |
Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 294 | enum pstore_type_id type; |
| 295 | struct timespec time; |
Chen Gong | 06cf91b | 2011-05-16 11:00:27 -0700 | [diff] [blame] | 296 | int failed = 0, rc; |
Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 297 | |
| 298 | if (!psi) |
| 299 | return; |
| 300 | |
Kees Cook | f6f8285 | 2011-11-17 12:58:07 -0800 | [diff] [blame] | 301 | mutex_lock(&psi->read_mutex); |
Kees Cook | 2174f6d | 2011-11-18 13:49:00 -0800 | [diff] [blame] | 302 | if (psi->open && psi->open(psi)) |
Chen Gong | 06cf91b | 2011-05-16 11:00:27 -0700 | [diff] [blame] | 303 | goto out; |
| 304 | |
Seiji Aguchi | 755d4fe | 2012-11-26 16:07:44 -0800 | [diff] [blame] | 305 | while ((size = psi->read(&id, &type, &count, &time, &buf, psi)) > 0) { |
| 306 | rc = pstore_mkfile(type, psi->name, id, count, buf, |
| 307 | (size_t)size, time, psi); |
Kees Cook | f6f8285 | 2011-11-17 12:58:07 -0800 | [diff] [blame] | 308 | kfree(buf); |
| 309 | buf = NULL; |
Luck, Tony | 6dda926 | 2011-08-11 15:14:39 -0700 | [diff] [blame] | 310 | if (rc && (rc != -EEXIST || !quiet)) |
Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 311 | failed++; |
| 312 | } |
Kees Cook | 2174f6d | 2011-11-18 13:49:00 -0800 | [diff] [blame] | 313 | if (psi->close) |
| 314 | psi->close(psi); |
Chen Gong | 06cf91b | 2011-05-16 11:00:27 -0700 | [diff] [blame] | 315 | out: |
Kees Cook | f6f8285 | 2011-11-17 12:58:07 -0800 | [diff] [blame] | 316 | mutex_unlock(&psi->read_mutex); |
Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 317 | |
| 318 | if (failed) |
| 319 | printk(KERN_WARNING "pstore: failed to load %d record(s) from '%s'\n", |
| 320 | failed, psi->name); |
| 321 | } |
| 322 | |
Luck, Tony | 6dda926 | 2011-08-11 15:14:39 -0700 | [diff] [blame] | 323 | static void pstore_dowork(struct work_struct *work) |
| 324 | { |
| 325 | pstore_get_records(1); |
| 326 | } |
| 327 | |
| 328 | static void pstore_timefunc(unsigned long dummy) |
| 329 | { |
| 330 | if (pstore_new_entry) { |
| 331 | pstore_new_entry = 0; |
| 332 | schedule_work(&pstore_work); |
| 333 | } |
| 334 | |
Anton Vorontsov | a3f5f07 | 2012-05-26 06:20:28 -0700 | [diff] [blame] | 335 | mod_timer(&pstore_timer, jiffies + msecs_to_jiffies(pstore_update_ms)); |
Luck, Tony | 6dda926 | 2011-08-11 15:14:39 -0700 | [diff] [blame] | 336 | } |
| 337 | |
Matthew Garrett | dee28e7 | 2011-07-21 16:57:55 -0400 | [diff] [blame] | 338 | module_param(backend, charp, 0444); |
| 339 | MODULE_PARM_DESC(backend, "Pstore backend to use"); |