MIPS: smp-cps: Add support for CPU hotplug of MIPSr6 processors
[deliverable/linux.git] / fs / lockd / procfs.h
1 /*
2 * Procfs support for lockd
3 *
4 * Copyright (c) 2014 Jeff Layton <jlayton@primarydata.com>
5 */
6 #ifndef _LOCKD_PROCFS_H
7 #define _LOCKD_PROCFS_H
8
9 #include <linux/kconfig.h>
10
11 #if IS_ENABLED(CONFIG_PROC_FS)
12 int lockd_create_procfs(void);
13 void lockd_remove_procfs(void);
14 #else
15 static inline int
16 lockd_create_procfs(void)
17 {
18 return 0;
19 }
20
21 static inline void
22 lockd_remove_procfs(void)
23 {
24 return;
25 }
26 #endif /* IS_ENABLED(CONFIG_PROC_FS) */
27
28 #endif /* _LOCKD_PROCFS_H */
This page took 0.031304 seconds and 5 git commands to generate.