Now that efivarfs uses the efivar API, move it out of efivars.c and
into fs/efivarfs where it belongs. This move will eventually allow us
to enable the efivarfs code without having to also enable
CONFIG_EFI_VARS built, and vice versa.
Furthermore, things like,
    mount -t efivarfs none /sys/firmware/efi/efivars
will now work if efivarfs is built as a module without requiring the
use of MODULE_ALIAS(), which would have been necessary when the
efivarfs code was part of efivars.c.
Cc: Matthew Garrett <matthew.garrett@nebula.com>
Cc: Jeremy Kerr <jk@ozlabs.org>
Reviewed-by: Tom Gundersen <teg@jklm.no>
Tested-by: Tom Gundersen <teg@jklm.no>
Signed-off-by: Matt Fleming <matt.fleming@intel.com>
		
	
			
		
			
				
	
	
		
			22 lines
		
	
	
	
		
			757 B
			
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
	
		
			757 B
			
		
	
	
	
		
			C
		
	
	
	
	
	
/*
 | 
						|
 * Copyright (C) 2012 Red Hat, Inc.
 | 
						|
 * Copyright (C) 2012 Jeremy Kerr <jeremy.kerr@canonical.com>
 | 
						|
 *
 | 
						|
 * This program is free software; you can redistribute it and/or modify
 | 
						|
 * it under the terms of the GNU General Public License version 2 as
 | 
						|
 * published by the Free Software Foundation.
 | 
						|
 */
 | 
						|
#ifndef EFIVAR_FS_INTERNAL_H
 | 
						|
#define EFIVAR_FS_INTERNAL_H
 | 
						|
 | 
						|
#include <linux/list.h>
 | 
						|
 | 
						|
extern const struct file_operations efivarfs_file_operations;
 | 
						|
extern const struct inode_operations efivarfs_dir_inode_operations;
 | 
						|
extern bool efivarfs_valid_name(const char *str, int len);
 | 
						|
extern struct inode *efivarfs_get_inode(struct super_block *sb,
 | 
						|
			const struct inode *dir, int mode, dev_t dev);
 | 
						|
 | 
						|
extern struct list_head efivarfs_list;
 | 
						|
 | 
						|
#endif /* EFIVAR_FS_INTERNAL_H */
 |