mirror of
https://github.com/torvalds/linux
synced 2026-07-22 10:10:47 +09: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 */
|