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 | |
Jeff Layton | d68e3c4 | 2014-09-12 16:40:20 -0400 | [diff] [blame] | 9 | #if IS_ENABLED(CONFIG_PROC_FS) |
| 10 | int lockd_create_procfs(void); |
| 11 | void lockd_remove_procfs(void); |
| 12 | #else |
| 13 | static inline int |
| 14 | lockd_create_procfs(void) |
| 15 | { |
| 16 | return 0; |
| 17 | } |
| 18 | |
| 19 | static inline void |
| 20 | lockd_remove_procfs(void) |
| 21 | { |
| 22 | return; |
| 23 | } |
| 24 | #endif /* IS_ENABLED(CONFIG_PROC_FS) */ |
| 25 | |
| 26 | #endif /* _LOCKD_PROCFS_H */ |