From 1114ae6ae74a287478cd8a34770fc4a907f84134 Mon Sep 17 00:00:00 2001 From: Brian Behlendorf Date: Fri, 11 Nov 2011 09:03:31 -0800 Subject: Prepend spl_ to all init/fini functions This is a bit of cleanup I'd been meaning to get to for a while to reduce the chance of a type conflict. Well that conflict finally occurred with the kstat_init() function which conflicts with a function in the 2.6.32-6-pve kernel. Signed-off-by: Brian Behlendorf Closes #56 --- include/linux/proc_compat.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/linux') diff --git a/include/linux/proc_compat.h b/include/linux/proc_compat.h index 97d3c6c5a..3d8eda108 100644 --- a/include/linux/proc_compat.h +++ b/include/linux/proc_compat.h @@ -47,7 +47,7 @@ struct proc_dir_entry *proc_dir_entry_find(struct proc_dir_entry *root, const char *str); int proc_dir_entries(struct proc_dir_entry *root); -int proc_init(void); -void proc_fini(void); +int spl_proc_init(void); +void spl_proc_fini(void); #endif /* SPL_PROC_H */ -- cgit v1.2.3