mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-07-22 03:27:30 -04:00
This marks the first step in cleanly separating the transport layer from the filesystem layer. Add "dev.h", which will contain the interface definition for the transport layer. Signed-off-by: Miklos Szeredi <mszeredi@redhat.com>
10 lines
213 B
C
10 lines
213 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
|
|
#ifndef _FS_FUSE_SYSCTL_H
|
|
#define _FS_FUSE_SYSCTL_H
|
|
|
|
extern unsigned int fuse_default_req_timeout;
|
|
extern unsigned int fuse_max_req_timeout;
|
|
|
|
#endif /* _FS_FUSE_SYSCTL_H */
|