/* Copyright (C) 1998 by Transarc Corporation */ #ifndef AFS_PARAM_H #define AFS_PARAM_H /* In user space the AFS_LINUX20_ENV should be sufficient. In the kernel, * it's a judgment call. If something is obviously sparc specific, use that * #define instead. Note that "20" refers to the linux 2.0 kernel. The "2" * in the sysname is the current version of the client. This takes into * account the perferred OS user space configuration as well as the kernel. */ #define AFS_LINUX20_ENV 1 #define AFS_LINUX22_ENV 1 #define AFS_LINUX24_ENV 1 #define AFS_SPARC_LINUX20_ENV 1 #define AFS_SPARC_LINUX22_ENV 1 #define AFS_SPARC_LINUX24_ENV 1 #define AFS_NONFSTRANS 1 #define AFS_MOUNT_AFS "afs" /* The name of the filesystem type. */ #define AFS_SYSCALL 227 #define AFS_64BIT_IOPS_ENV 1 #define AFS_NAMEI_ENV 1 /* User space interface to file system */ #if defined(__KERNEL__) && !defined(KDUMP_KERNEL) #include #ifdef CONFIG_SMP #undef CONFIG_SMP #endif /* Using "AFS_SMP" to map to however many #define's are required to get * MP to compile for Linux */ #ifdef AFS_SMP #define CONFIG_SMP 1 #ifndef __SMP__ #define __SMP__ #endif #define AFS_GLOBAL_SUNLOCK #endif #if defined(MODULE) && defined(CONFIG_MODVERSIONS) #define MODVERSIONS #include #endif #endif /* __KERNEL__ && !DUMP_KERNEL*/ #include #define AFS_USERSPACE_IP_ADDR 1 #define RXK_LISTENER_ENV 1 #define AFS_GCPAGS 2 /* Set to Userdisabled, allow sysctl to override */ /* Machine / Operating system information */ #define SYS_NAME "sparc_linux24" #define SYS_NAME_ID SYS_NAME_ID_sparc_linux24 #define AFSBIG_ENDIAN 1 #define AFS_HAVE_FFS 1 /* Use system's ffs. */ #define AFS_HAVE_STATVFS 0 /* System doesn't support statvfs */ #define AFS_VM_RDWR_ENV 1 /* read/write implemented via VM */ #ifdef KERNEL #ifndef MIN #define MIN(A,B) ((A) < (B) ? (A) : (B)) #endif #ifndef MAX #define MAX(A,B) ((A) > (B) ? (A) : (B)) #endif #endif /* KERNEL */ #if defined(AFS_SMP) && defined(CONFIG_MODVERSIONS) /* hack, I don't know what else with theese symbols */ #define _do_spin_lock _do_spin_lock_R__ver__do_spin_lock #define _do_spin_unlock _do_spin_unlock_R__ver__do_spin_unlock #define kernel_flag kernel_flag_R__ver_kernel_flag #endif /* on sparclinux is O_LARGEFILE defined but there is not off64_t, so small hack to get usd_file.c work */ #ifndef KERNEL #define __USE_FILE_OFFSET64 1 #define __USE_LARGEFILE64 1 #if !defined off64_t #define off64_t __off64_t #endif #endif #endif /* AFS_PARAM_H */