1/*
2 * include/linux/nfsd/const.h
3 *
4 * Various constants related to NFS.
5 *
6 * Copyright (C) 1995-1997 Olaf Kirch <okir@monad.swb.de>
7 */
8
9#ifndef _LINUX_NFSD_CONST_H
10#define _LINUX_NFSD_CONST_H
11
12#include <linux/nfs.h>
13#include <linux/nfs2.h>
14#include <linux/nfs3.h>
15
16/*
17 * Maximum protocol version supported by knfsd
18 */
19#define NFSSVC_MAXVERS		3
20
21/*
22 * Maximum blocksize supported by daemon currently at 8K
23 */
24#define NFSSVC_MAXBLKSIZE	8192
25
26#ifdef __KERNEL__
27
28#ifndef NFS_SUPER_MAGIC
29# define NFS_SUPER_MAGIC	0x6969
30#endif
31
32#endif /* __KERNEL__ */
33
34#endif /* _LINUX_NFSD_CONST_H */
35