/* * Procfs support for lockd * * Copyright (c) 2014 Jeff Layton */ #ifndef _LOCKD_PROCFS_H #define _LOCKD_PROCFS_H #if IS_ENABLED(CONFIG_PROC_FS) int lockd_create_procfs(void); void lockd_remove_procfs(void); #else static inline int lockd_create_procfs(void) { return 0; } static inline void lockd_remove_procfs(void) { return; } #endif /* IS_ENABLED(CONFIG_PROC_FS) */ #endif /* _LOCKD_PROCFS_H */ >
summaryrefslogtreecommitdiff
path: root/net/l2tp
AgeCommit message (Expand)AuthorFilesLines
2017-02-11Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/netDavid S. Miller