LINUX2.6.15的源代码

源代码在线查看: const.h

软件大小: 10020 K
上传用户: lilacky
关键词: LINUX 15 源代码
下载地址: 免注册下载 普通下载 VIP

相关代码

				/*				 * include/linux/nfsd/const.h				 *				 * Various constants related to NFS.				 *				 * Copyright (C) 1995-1997 Olaf Kirch 				 */								#ifndef _LINUX_NFSD_CONST_H				#define _LINUX_NFSD_CONST_H								#include 				#include 				#include 				#include 								/*				 * Maximum protocol version supported by knfsd				 */				#define NFSSVC_MAXVERS		3								/*				 * Maximum blocksize supported by daemon currently at 32K				 */				#define NFSSVC_MAXBLKSIZE	(32*1024)								#ifdef __KERNEL__								#ifndef NFS_SUPER_MAGIC				# define NFS_SUPER_MAGIC	0x6969				#endif								#define NFSD_BUFSIZE		(1024 + NFSSVC_MAXBLKSIZE)								#ifdef CONFIG_NFSD_V4				# define NFSSVC_XDRSIZE		NFS4_SVC_XDRSIZE				#elif defined(CONFIG_NFSD_V3)				# define NFSSVC_XDRSIZE		NFS3_SVC_XDRSIZE				#else				# define NFSSVC_XDRSIZE		NFS2_SVC_XDRSIZE				#endif								#endif /* __KERNEL__ */								#endif /* _LINUX_NFSD_CONST_H */							

相关资源