Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Persistent Storage - ramfs parts. |
| 3 | * |
| 4 | * Copyright (C) 2010 Intel Corporation <tony.luck@intel.com> |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License version 2 as |
| 8 | * published by the Free Software Foundation. |
| 9 | * |
| 10 | * This program is distributed in the hope that it will be useful, |
| 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 13 | * GNU General Public License for more details. |
| 14 | * |
| 15 | * You should have received a copy of the GNU General Public License |
| 16 | * along with this program; if not, write to the Free Software |
| 17 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 18 | */ |
| 19 | |
| 20 | #include <linux/module.h> |
| 21 | #include <linux/fs.h> |
| 22 | #include <linux/fsnotify.h> |
| 23 | #include <linux/pagemap.h> |
| 24 | #include <linux/highmem.h> |
| 25 | #include <linux/time.h> |
| 26 | #include <linux/init.h> |
Luck, Tony | 6dda926 | 2011-08-11 15:14:39 -0700 | [diff] [blame] | 27 | #include <linux/list.h> |
Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 28 | #include <linux/string.h> |
| 29 | #include <linux/mount.h> |
Anton Vorontsov | 060287b | 2012-07-09 17:10:41 -0700 | [diff] [blame] | 30 | #include <linux/seq_file.h> |
Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 31 | #include <linux/ramfs.h> |
Luck, Tony | 366f7e7 | 2011-03-18 15:33:43 -0700 | [diff] [blame] | 32 | #include <linux/parser.h> |
Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 33 | #include <linux/sched.h> |
| 34 | #include <linux/magic.h> |
| 35 | #include <linux/pstore.h> |
| 36 | #include <linux/slab.h> |
Luck, Tony | 6dda926 | 2011-08-11 15:14:39 -0700 | [diff] [blame] | 37 | #include <linux/spinlock.h> |
Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 38 | #include <linux/uaccess.h> |
| 39 | |
| 40 | #include "internal.h" |
| 41 | |
| 42 | #define PSTORE_NAMELEN 64 |
| 43 | |
Luck, Tony | 6dda926 | 2011-08-11 15:14:39 -0700 | [diff] [blame] | 44 | static DEFINE_SPINLOCK(allpstore_lock); |
| 45 | static LIST_HEAD(allpstore); |
| 46 | |
Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 47 | struct pstore_private { |
Luck, Tony | 6dda926 | 2011-08-11 15:14:39 -0700 | [diff] [blame] | 48 | struct list_head list; |
Matthew Garrett | 638c1fd | 2011-07-21 16:57:52 -0400 | [diff] [blame] | 49 | struct pstore_info *psi; |
Matthew Garrett | 5628068 | 2011-07-21 16:57:53 -0400 | [diff] [blame] | 50 | enum pstore_type_id type; |
| 51 | u64 id; |
Tony Luck | fbe0aa1 | 2011-03-17 16:29:15 -0700 | [diff] [blame] | 52 | ssize_t size; |
| 53 | char data[]; |
Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 54 | }; |
| 55 | |
Anton Vorontsov | 060287b | 2012-07-09 17:10:41 -0700 | [diff] [blame] | 56 | struct pstore_ftrace_seq_data { |
| 57 | const void *ptr; |
| 58 | size_t off; |
| 59 | size_t size; |
| 60 | }; |
| 61 | |
| 62 | #define REC_SIZE sizeof(struct pstore_ftrace_record) |
| 63 | |
| 64 | static void *pstore_ftrace_seq_start(struct seq_file *s, loff_t *pos) |
| 65 | { |
| 66 | struct pstore_private *ps = s->private; |
| 67 | struct pstore_ftrace_seq_data *data; |
| 68 | |
| 69 | data = kzalloc(sizeof(*data), GFP_KERNEL); |
| 70 | if (!data) |
| 71 | return NULL; |
| 72 | |
| 73 | data->off = ps->size % REC_SIZE; |
| 74 | data->off += *pos * REC_SIZE; |
| 75 | if (data->off + REC_SIZE > ps->size) { |
| 76 | kfree(data); |
| 77 | return NULL; |
| 78 | } |
| 79 | |
| 80 | return data; |
| 81 | |
| 82 | } |
| 83 | |
| 84 | static void pstore_ftrace_seq_stop(struct seq_file *s, void *v) |
| 85 | { |
| 86 | kfree(v); |
| 87 | } |
| 88 | |
| 89 | static void *pstore_ftrace_seq_next(struct seq_file *s, void *v, loff_t *pos) |
| 90 | { |
| 91 | struct pstore_private *ps = s->private; |
| 92 | struct pstore_ftrace_seq_data *data = v; |
| 93 | |
| 94 | data->off += REC_SIZE; |
| 95 | if (data->off + REC_SIZE > ps->size) |
| 96 | return NULL; |
| 97 | |
| 98 | (*pos)++; |
| 99 | return data; |
| 100 | } |
| 101 | |
| 102 | static int pstore_ftrace_seq_show(struct seq_file *s, void *v) |
| 103 | { |
| 104 | struct pstore_private *ps = s->private; |
| 105 | struct pstore_ftrace_seq_data *data = v; |
| 106 | struct pstore_ftrace_record *rec = (void *)(ps->data + data->off); |
| 107 | |
| 108 | seq_printf(s, "%d %08lx %08lx %pf <- %pF\n", |
| 109 | pstore_ftrace_decode_cpu(rec), rec->ip, rec->parent_ip, |
| 110 | (void *)rec->ip, (void *)rec->parent_ip); |
| 111 | |
| 112 | return 0; |
| 113 | } |
| 114 | |
| 115 | static const struct seq_operations pstore_ftrace_seq_ops = { |
| 116 | .start = pstore_ftrace_seq_start, |
| 117 | .next = pstore_ftrace_seq_next, |
| 118 | .stop = pstore_ftrace_seq_stop, |
| 119 | .show = pstore_ftrace_seq_show, |
| 120 | }; |
| 121 | |
Tony Luck | fbe0aa1 | 2011-03-17 16:29:15 -0700 | [diff] [blame] | 122 | static ssize_t pstore_file_read(struct file *file, char __user *userbuf, |
| 123 | size_t count, loff_t *ppos) |
| 124 | { |
Anton Vorontsov | 060287b | 2012-07-09 17:10:41 -0700 | [diff] [blame] | 125 | struct seq_file *sf = file->private_data; |
| 126 | struct pstore_private *ps = sf->private; |
Tony Luck | fbe0aa1 | 2011-03-17 16:29:15 -0700 | [diff] [blame] | 127 | |
Anton Vorontsov | 060287b | 2012-07-09 17:10:41 -0700 | [diff] [blame] | 128 | if (ps->type == PSTORE_TYPE_FTRACE) |
| 129 | return seq_read(file, userbuf, count, ppos); |
Tony Luck | fbe0aa1 | 2011-03-17 16:29:15 -0700 | [diff] [blame] | 130 | return simple_read_from_buffer(userbuf, count, ppos, ps->data, ps->size); |
| 131 | } |
| 132 | |
Anton Vorontsov | 060287b | 2012-07-09 17:10:41 -0700 | [diff] [blame] | 133 | static int pstore_file_open(struct inode *inode, struct file *file) |
| 134 | { |
| 135 | struct pstore_private *ps = inode->i_private; |
| 136 | struct seq_file *sf; |
| 137 | int err; |
| 138 | const struct seq_operations *sops = NULL; |
| 139 | |
| 140 | if (ps->type == PSTORE_TYPE_FTRACE) |
| 141 | sops = &pstore_ftrace_seq_ops; |
| 142 | |
| 143 | err = seq_open(file, sops); |
| 144 | if (err < 0) |
| 145 | return err; |
| 146 | |
| 147 | sf = file->private_data; |
| 148 | sf->private = ps; |
| 149 | |
| 150 | return 0; |
| 151 | } |
| 152 | |
| 153 | static loff_t pstore_file_llseek(struct file *file, loff_t off, int origin) |
| 154 | { |
| 155 | struct seq_file *sf = file->private_data; |
| 156 | |
| 157 | if (sf->op) |
| 158 | return seq_lseek(file, off, origin); |
| 159 | return default_llseek(file, off, origin); |
| 160 | } |
| 161 | |
Tony Luck | fbe0aa1 | 2011-03-17 16:29:15 -0700 | [diff] [blame] | 162 | static const struct file_operations pstore_file_operations = { |
Anton Vorontsov | 060287b | 2012-07-09 17:10:41 -0700 | [diff] [blame] | 163 | .open = pstore_file_open, |
| 164 | .read = pstore_file_read, |
| 165 | .llseek = pstore_file_llseek, |
| 166 | .release = seq_release, |
Tony Luck | fbe0aa1 | 2011-03-17 16:29:15 -0700 | [diff] [blame] | 167 | }; |
Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 168 | |
| 169 | /* |
| 170 | * When a file is unlinked from our file system we call the |
| 171 | * platform driver to erase the record from persistent store. |
| 172 | */ |
| 173 | static int pstore_unlink(struct inode *dir, struct dentry *dentry) |
| 174 | { |
| 175 | struct pstore_private *p = dentry->d_inode->i_private; |
| 176 | |
Kees Cook | 2174f6d | 2011-11-18 13:49:00 -0800 | [diff] [blame] | 177 | if (p->psi->erase) |
| 178 | p->psi->erase(p->type, p->id, p->psi); |
Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 179 | |
| 180 | return simple_unlink(dir, dentry); |
| 181 | } |
| 182 | |
Tony Luck | a872d51 | 2011-03-18 11:44:48 -0700 | [diff] [blame] | 183 | static void pstore_evict_inode(struct inode *inode) |
| 184 | { |
Luck, Tony | 6dda926 | 2011-08-11 15:14:39 -0700 | [diff] [blame] | 185 | struct pstore_private *p = inode->i_private; |
| 186 | unsigned long flags; |
| 187 | |
Jan Kara | dbd5768 | 2012-05-03 14:48:02 +0200 | [diff] [blame] | 188 | clear_inode(inode); |
Luck, Tony | 6dda926 | 2011-08-11 15:14:39 -0700 | [diff] [blame] | 189 | if (p) { |
| 190 | spin_lock_irqsave(&allpstore_lock, flags); |
| 191 | list_del(&p->list); |
| 192 | spin_unlock_irqrestore(&allpstore_lock, flags); |
| 193 | kfree(p); |
| 194 | } |
Tony Luck | a872d51 | 2011-03-18 11:44:48 -0700 | [diff] [blame] | 195 | } |
| 196 | |
Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 197 | static const struct inode_operations pstore_dir_inode_operations = { |
| 198 | .lookup = simple_lookup, |
| 199 | .unlink = pstore_unlink, |
| 200 | }; |
| 201 | |
Al Viro | 22a71c3 | 2012-03-22 12:26:35 -0400 | [diff] [blame] | 202 | static struct inode *pstore_get_inode(struct super_block *sb) |
Tony Luck | fbe0aa1 | 2011-03-17 16:29:15 -0700 | [diff] [blame] | 203 | { |
| 204 | struct inode *inode = new_inode(sb); |
Tony Luck | fbe0aa1 | 2011-03-17 16:29:15 -0700 | [diff] [blame] | 205 | if (inode) { |
| 206 | inode->i_ino = get_next_ino(); |
Tony Luck | fbe0aa1 | 2011-03-17 16:29:15 -0700 | [diff] [blame] | 207 | inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME; |
Tony Luck | fbe0aa1 | 2011-03-17 16:29:15 -0700 | [diff] [blame] | 208 | } |
| 209 | return inode; |
| 210 | } |
| 211 | |
Luck, Tony | 366f7e7 | 2011-03-18 15:33:43 -0700 | [diff] [blame] | 212 | enum { |
| 213 | Opt_kmsg_bytes, Opt_err |
| 214 | }; |
| 215 | |
| 216 | static const match_table_t tokens = { |
| 217 | {Opt_kmsg_bytes, "kmsg_bytes=%u"}, |
| 218 | {Opt_err, NULL} |
| 219 | }; |
| 220 | |
| 221 | static void parse_options(char *options) |
| 222 | { |
| 223 | char *p; |
| 224 | substring_t args[MAX_OPT_ARGS]; |
| 225 | int option; |
| 226 | |
| 227 | if (!options) |
| 228 | return; |
| 229 | |
| 230 | while ((p = strsep(&options, ",")) != NULL) { |
| 231 | int token; |
| 232 | |
| 233 | if (!*p) |
| 234 | continue; |
| 235 | |
| 236 | token = match_token(p, tokens, args); |
| 237 | switch (token) { |
| 238 | case Opt_kmsg_bytes: |
| 239 | if (!match_int(&args[0], &option)) |
| 240 | pstore_set_kmsg_bytes(option); |
| 241 | break; |
| 242 | } |
| 243 | } |
| 244 | } |
| 245 | |
| 246 | static int pstore_remount(struct super_block *sb, int *flags, char *data) |
| 247 | { |
| 248 | parse_options(data); |
| 249 | |
| 250 | return 0; |
| 251 | } |
| 252 | |
Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 253 | static const struct super_operations pstore_ops = { |
| 254 | .statfs = simple_statfs, |
| 255 | .drop_inode = generic_delete_inode, |
Tony Luck | a872d51 | 2011-03-18 11:44:48 -0700 | [diff] [blame] | 256 | .evict_inode = pstore_evict_inode, |
Luck, Tony | 366f7e7 | 2011-03-18 15:33:43 -0700 | [diff] [blame] | 257 | .remount_fs = pstore_remount, |
Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 258 | .show_options = generic_show_options, |
| 259 | }; |
| 260 | |
| 261 | static struct super_block *pstore_sb; |
Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 262 | |
| 263 | int pstore_is_mounted(void) |
| 264 | { |
Tony Luck | fbe0aa1 | 2011-03-17 16:29:15 -0700 | [diff] [blame] | 265 | return pstore_sb != NULL; |
Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 266 | } |
| 267 | |
| 268 | /* |
| 269 | * Make a regular file in the root directory of our file system. |
| 270 | * Load it up with "size" bytes of data from "buf". |
| 271 | * Set the mtime & ctime to the date that this record was originally stored. |
| 272 | */ |
| 273 | int pstore_mkfile(enum pstore_type_id type, char *psname, u64 id, |
Matthew Garrett | 638c1fd | 2011-07-21 16:57:52 -0400 | [diff] [blame] | 274 | char *data, size_t size, struct timespec time, |
| 275 | struct pstore_info *psi) |
Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 276 | { |
| 277 | struct dentry *root = pstore_sb->s_root; |
| 278 | struct dentry *dentry; |
| 279 | struct inode *inode; |
Luck, Tony | 6dda926 | 2011-08-11 15:14:39 -0700 | [diff] [blame] | 280 | int rc = 0; |
Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 281 | char name[PSTORE_NAMELEN]; |
Luck, Tony | 6dda926 | 2011-08-11 15:14:39 -0700 | [diff] [blame] | 282 | struct pstore_private *private, *pos; |
| 283 | unsigned long flags; |
| 284 | |
| 285 | spin_lock_irqsave(&allpstore_lock, flags); |
| 286 | list_for_each_entry(pos, &allpstore, list) { |
| 287 | if (pos->type == type && |
| 288 | pos->id == id && |
| 289 | pos->psi == psi) { |
| 290 | rc = -EEXIST; |
| 291 | break; |
| 292 | } |
| 293 | } |
| 294 | spin_unlock_irqrestore(&allpstore_lock, flags); |
| 295 | if (rc) |
| 296 | return rc; |
Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 297 | |
| 298 | rc = -ENOMEM; |
Al Viro | 22a71c3 | 2012-03-22 12:26:35 -0400 | [diff] [blame] | 299 | inode = pstore_get_inode(pstore_sb); |
Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 300 | if (!inode) |
| 301 | goto fail; |
Al Viro | 22a71c3 | 2012-03-22 12:26:35 -0400 | [diff] [blame] | 302 | inode->i_mode = S_IFREG | 0444; |
| 303 | inode->i_fop = &pstore_file_operations; |
Tony Luck | fbe0aa1 | 2011-03-17 16:29:15 -0700 | [diff] [blame] | 304 | private = kmalloc(sizeof *private + size, GFP_KERNEL); |
Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 305 | if (!private) |
| 306 | goto fail_alloc; |
Matthew Garrett | 5628068 | 2011-07-21 16:57:53 -0400 | [diff] [blame] | 307 | private->type = type; |
Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 308 | private->id = id; |
Matthew Garrett | 638c1fd | 2011-07-21 16:57:52 -0400 | [diff] [blame] | 309 | private->psi = psi; |
Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 310 | |
| 311 | switch (type) { |
| 312 | case PSTORE_TYPE_DMESG: |
| 313 | sprintf(name, "dmesg-%s-%lld", psname, id); |
| 314 | break; |
Anton Vorontsov | f29e595 | 2012-05-26 06:20:19 -0700 | [diff] [blame] | 315 | case PSTORE_TYPE_CONSOLE: |
| 316 | sprintf(name, "console-%s", psname); |
| 317 | break; |
Anton Vorontsov | 060287b | 2012-07-09 17:10:41 -0700 | [diff] [blame] | 318 | case PSTORE_TYPE_FTRACE: |
| 319 | sprintf(name, "ftrace-%s", psname); |
| 320 | break; |
Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 321 | case PSTORE_TYPE_MCE: |
| 322 | sprintf(name, "mce-%s-%lld", psname, id); |
| 323 | break; |
| 324 | case PSTORE_TYPE_UNKNOWN: |
| 325 | sprintf(name, "unknown-%s-%lld", psname, id); |
| 326 | break; |
| 327 | default: |
| 328 | sprintf(name, "type%d-%s-%lld", type, psname, id); |
| 329 | break; |
| 330 | } |
| 331 | |
| 332 | mutex_lock(&root->d_inode->i_mutex); |
| 333 | |
| 334 | rc = -ENOSPC; |
| 335 | dentry = d_alloc_name(root, name); |
| 336 | if (IS_ERR(dentry)) |
| 337 | goto fail_lockedalloc; |
| 338 | |
Tony Luck | fbe0aa1 | 2011-03-17 16:29:15 -0700 | [diff] [blame] | 339 | memcpy(private->data, data, size); |
| 340 | inode->i_size = private->size = size; |
Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 341 | |
| 342 | inode->i_private = private; |
| 343 | |
| 344 | if (time.tv_sec) |
| 345 | inode->i_mtime = inode->i_ctime = time; |
| 346 | |
Tony Luck | fbe0aa1 | 2011-03-17 16:29:15 -0700 | [diff] [blame] | 347 | d_add(dentry, inode); |
Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 348 | |
Luck, Tony | 6dda926 | 2011-08-11 15:14:39 -0700 | [diff] [blame] | 349 | spin_lock_irqsave(&allpstore_lock, flags); |
| 350 | list_add(&private->list, &allpstore); |
| 351 | spin_unlock_irqrestore(&allpstore_lock, flags); |
| 352 | |
Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 353 | mutex_unlock(&root->d_inode->i_mutex); |
Tony Luck | fbe0aa1 | 2011-03-17 16:29:15 -0700 | [diff] [blame] | 354 | |
| 355 | return 0; |
Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 356 | |
| 357 | fail_lockedalloc: |
| 358 | mutex_unlock(&root->d_inode->i_mutex); |
| 359 | kfree(private); |
| 360 | fail_alloc: |
| 361 | iput(inode); |
| 362 | |
| 363 | fail: |
| 364 | return rc; |
| 365 | } |
| 366 | |
Anton Vorontsov | 364ed2f | 2012-05-26 06:07:53 -0700 | [diff] [blame] | 367 | static int pstore_fill_super(struct super_block *sb, void *data, int silent) |
Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 368 | { |
Al Viro | 318ceed | 2012-02-12 22:08:01 -0500 | [diff] [blame] | 369 | struct inode *inode; |
Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 370 | |
| 371 | save_mount_options(sb, data); |
| 372 | |
| 373 | pstore_sb = sb; |
| 374 | |
| 375 | sb->s_maxbytes = MAX_LFS_FILESIZE; |
| 376 | sb->s_blocksize = PAGE_CACHE_SIZE; |
| 377 | sb->s_blocksize_bits = PAGE_CACHE_SHIFT; |
| 378 | sb->s_magic = PSTOREFS_MAGIC; |
| 379 | sb->s_op = &pstore_ops; |
| 380 | sb->s_time_gran = 1; |
| 381 | |
Luck, Tony | 366f7e7 | 2011-03-18 15:33:43 -0700 | [diff] [blame] | 382 | parse_options(data); |
| 383 | |
Al Viro | 22a71c3 | 2012-03-22 12:26:35 -0400 | [diff] [blame] | 384 | inode = pstore_get_inode(sb); |
Al Viro | 318ceed | 2012-02-12 22:08:01 -0500 | [diff] [blame] | 385 | if (inode) { |
Al Viro | 22a71c3 | 2012-03-22 12:26:35 -0400 | [diff] [blame] | 386 | inode->i_mode = S_IFDIR | 0755; |
Al Viro | 318ceed | 2012-02-12 22:08:01 -0500 | [diff] [blame] | 387 | inode->i_op = &pstore_dir_inode_operations; |
Al Viro | 22a71c3 | 2012-03-22 12:26:35 -0400 | [diff] [blame] | 388 | inode->i_fop = &simple_dir_operations; |
| 389 | inc_nlink(inode); |
Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 390 | } |
Al Viro | 318ceed | 2012-02-12 22:08:01 -0500 | [diff] [blame] | 391 | sb->s_root = d_make_root(inode); |
| 392 | if (!sb->s_root) |
| 393 | return -ENOMEM; |
Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 394 | |
Luck, Tony | 6dda926 | 2011-08-11 15:14:39 -0700 | [diff] [blame] | 395 | pstore_get_records(0); |
Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 396 | |
| 397 | return 0; |
Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 398 | } |
| 399 | |
Tony Luck | fbe0aa1 | 2011-03-17 16:29:15 -0700 | [diff] [blame] | 400 | static struct dentry *pstore_mount(struct file_system_type *fs_type, |
| 401 | int flags, const char *dev_name, void *data) |
Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 402 | { |
Tony Luck | fbe0aa1 | 2011-03-17 16:29:15 -0700 | [diff] [blame] | 403 | return mount_single(fs_type, flags, data, pstore_fill_super); |
Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 404 | } |
| 405 | |
| 406 | static void pstore_kill_sb(struct super_block *sb) |
| 407 | { |
| 408 | kill_litter_super(sb); |
| 409 | pstore_sb = NULL; |
Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 410 | } |
| 411 | |
| 412 | static struct file_system_type pstore_fs_type = { |
| 413 | .name = "pstore", |
Tony Luck | fbe0aa1 | 2011-03-17 16:29:15 -0700 | [diff] [blame] | 414 | .mount = pstore_mount, |
Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 415 | .kill_sb = pstore_kill_sb, |
| 416 | }; |
| 417 | |
| 418 | static int __init init_pstore_fs(void) |
| 419 | { |
Luck, Tony | 366f7e7 | 2011-03-18 15:33:43 -0700 | [diff] [blame] | 420 | return register_filesystem(&pstore_fs_type); |
Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 421 | } |
| 422 | module_init(init_pstore_fs) |
| 423 | |
| 424 | MODULE_AUTHOR("Tony Luck <tony.luck@intel.com>"); |
| 425 | MODULE_LICENSE("GPL"); |