QortalOS Brooklyn for Raspberry Pi 4
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

27 lines
474 B

/* SPDX-License-Identifier: GPL-2.0 */
/*
* Procfs support for lockd
*
* Copyright (c) 2014 Jeff Layton <[email protected]>
*/
#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 */