blob: b4505188e799b9f5f50b2f792090775fd4244127 [file] [log] [blame]
Matt Flemingd68772b2013-02-08 16:27:24 +00001/*
2 * Copyright (C) 2012 Red Hat, Inc.
3 * Copyright (C) 2012 Jeremy Kerr <jeremy.kerr@canonical.com>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
8 */
9#ifndef EFIVAR_FS_INTERNAL_H
10#define EFIVAR_FS_INTERNAL_H
11
12#include <linux/list.h>
13
14extern const struct file_operations efivarfs_file_operations;
15extern const struct inode_operations efivarfs_dir_inode_operations;
16extern bool efivarfs_valid_name(const char *str, int len);
17extern struct inode *efivarfs_get_inode(struct super_block *sb,
Peter Jonesed8b0de2016-02-08 14:48:15 -050018 const struct inode *dir, int mode, dev_t dev,
19 bool is_removable);
Matt Flemingd68772b2013-02-08 16:27:24 +000020
21extern struct list_head efivarfs_list;
22
23#endif /* EFIVAR_FS_INTERNAL_H */