Jeff Layton | d68e3c4 | 2014-09-12 16:40:20 -0400 | [diff] [blame] | 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 */ |