mirror of
https://git.openafs.org/openafs.git
synced 2025-01-18 15:00:12 +00:00
freebsd-5-update-20030213
FIXES 1297 fix issue with header needed for malloc(), and make us freebsd 5-ready
This commit is contained in:
parent
8ad0977e0c
commit
b6f04d5564
5
README
5
README
@ -32,8 +32,9 @@ A. Creating the proper directory structure.
|
||||
|
||||
alpha_dux40
|
||||
alpha_dux50 (only tested on 5.0A, does not work with 5.1)
|
||||
i386_fbsd42, i386_fbsd43, i386_fbsd44, i386_fbsd45,
|
||||
i386_fbsd46 (gmake is required to build for FreeBSD)
|
||||
i386_fbsd_42, i386_fbsd_43, i386_fbsd_44, i386_fbsd_45,
|
||||
i386_fbsd_46, i386_fbsd_47, i386_fbsd_50
|
||||
(gnu make is required for building on FreeBSD)
|
||||
i386_linux22
|
||||
i386_linux24
|
||||
rs_aix42
|
||||
|
@ -348,6 +348,9 @@ else
|
||||
i?86-*-freebsd4.7*)
|
||||
AFS_SYSNAME="i386_fbsd_47"
|
||||
;;
|
||||
i?86-*-freebsd5.0*)
|
||||
AFS_SYSNAME="i386_fbsd_50"
|
||||
;;
|
||||
i?86-*-netbsd*1.5*)
|
||||
AFS_PARAM_COMMON=param.nbsd15.h
|
||||
AFS_SYSNAME="i386_nbsd15"
|
||||
|
@ -164,6 +164,18 @@ case $AFS_SYSNAME in
|
||||
YACC="byacc"
|
||||
;;
|
||||
|
||||
*fbsd_5*)
|
||||
LEX="flex -l"
|
||||
MT_CFLAGS='-DAFS_PTHREAD_ENV -pthread -D_REENTRANT ${XCFLAGS}'
|
||||
MT_LIBS="-pthread"
|
||||
PAM_CFLAGS="-O2 -pipe -fPIC"
|
||||
SHLIB_LDFLAGS="-shared -Xlinker -x"
|
||||
TXLIBS="/usr/lib/libncurses.so"
|
||||
XCFLAGS="-O2 -pipe"
|
||||
XLIBS="${LIB_AFSDB} -lcompat"
|
||||
YACC="byacc"
|
||||
;;
|
||||
|
||||
*nbsd20)
|
||||
LEX="flex -l"
|
||||
MT_CFLAGS='${XCFLAGS} -DAFS_PTHREAD_ENV -D_REENTRANT '
|
||||
|
@ -13,12 +13,10 @@
|
||||
*/
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <sys/types.h>
|
||||
#include <sys/stat.h>
|
||||
#include <errno.h>
|
||||
#ifndef __APPLE_CC__
|
||||
#include <malloc.h>
|
||||
#endif
|
||||
#include <assert.h>
|
||||
#include <string.h>
|
||||
|
||||
|
200
src/config/param.i386_fbsd_50.h
Normal file
200
src/config/param.i386_fbsd_50.h
Normal file
@ -0,0 +1,200 @@
|
||||
#ifndef UKERNEL
|
||||
/* This section for kernel libafs compiles only */
|
||||
|
||||
#ifndef AFS_PARAM_H
|
||||
#define AFS_PARAM_H
|
||||
|
||||
#include <sys/param.h>
|
||||
|
||||
#define AFS_XBSD_ENV 1 /* {Free,Open,Net}BSD */
|
||||
#define AFS_X86_XBSD_ENV 1
|
||||
|
||||
#define AFS_NAMEI_ENV 1 /* User space interface to file system */
|
||||
#define AFS_64BIT_IOPS_ENV 1 /* Needed for NAMEI */
|
||||
#define AFS_FBSD_ENV 1
|
||||
#define AFS_FBSD40_ENV 1
|
||||
#define AFS_FBSD42_ENV 1
|
||||
#define AFS_FBSD43_ENV 1
|
||||
#define AFS_FBSD44_ENV 1
|
||||
#define AFS_FBSD45_ENV 1
|
||||
#define AFS_FBSD46_ENV 1
|
||||
#define AFS_FBSD47_ENV 1
|
||||
#define AFS_FBSD50_ENV 1
|
||||
#define AFS_X86_FBSD_ENV 1
|
||||
#define AFS_X86_FBSD40_ENV 1
|
||||
#define AFS_X86_FBSD42_ENV 1
|
||||
#define AFS_X86_FBSD43_ENV 1
|
||||
#define AFS_X86_FBSD46_ENV 1
|
||||
#define AFS_X86_FBSD47_ENV 1
|
||||
#define AFS_X86_FBSD50_ENV 1
|
||||
#define AFS_X86_ENV 1
|
||||
#define AFS_NONFSTRANS 1
|
||||
#define O_SYNC O_FSYNC
|
||||
#define FTRUNC O_TRUNC
|
||||
|
||||
#define IUPD 0x0010
|
||||
#define IACC 0x0020
|
||||
#define ICHG 0x0040
|
||||
#define IMOD 0x0080
|
||||
|
||||
#define IN_LOCK(ip) lockmgr(&ip->i_lock, LK_EXCLUSIVE, \
|
||||
NULL, curproc)
|
||||
#define IN_UNLOCK(ip) lockmgr(&ip->i_lock, LK_RELEASE, \
|
||||
NULL, curproc)
|
||||
|
||||
#include <afs/afs_sysnames.h>
|
||||
|
||||
#define AFS_VM_RDWR_ENV 1
|
||||
#define AFS_VFS_ENV 1
|
||||
#define AFS_VFSINCL_ENV 1
|
||||
#define AFS_GREEDY43_ENV 1
|
||||
#define AFS_ENV 1
|
||||
|
||||
#define AFS_SYSCALL 339
|
||||
#define AFS_MOUNT_AFS "afs"
|
||||
|
||||
#ifndef MOUNT_UFS
|
||||
#define MOUNT_UFS "ufs"
|
||||
#endif
|
||||
|
||||
#ifndef MOUNT_AFS
|
||||
#define MOUNT_AFS AFS_MOUNT_AFS
|
||||
#endif
|
||||
#define SYS_NAME "i386_fbsd_50"
|
||||
#define SYS_NAME_ID SYS_NAME_ID_i386_fbsd_50
|
||||
|
||||
#define AFS_HAVE_FFS 1 /* Use system's ffs. */
|
||||
#define AFS_HAVE_STATVFS 0 /* System doesn't supports statvfs */
|
||||
|
||||
#define RXK_LISTENER_ENV 1
|
||||
#define AFS_GCPAGS 0 /* if nonzero, garbage collect PAGs */
|
||||
#define AFS_USE_GETTIMEOFDAY 1 /* use gettimeofday to implement rx clock */
|
||||
|
||||
#define AFSLITTLE_ENDIAN 1
|
||||
|
||||
/* Extra kernel definitions (from kdefs file) */
|
||||
#ifdef _KERNEL
|
||||
#define AFS_GLOBAL_SUNLOCK 1
|
||||
#define AFS_VFS34 1 /* What is VFS34??? */
|
||||
#define AFS_SHORTGID 1 /* are group id's short? */
|
||||
#define afsio_iov uio_iov
|
||||
#define afsio_iovcnt uio_iovcnt
|
||||
#define afsio_offset uio_offset
|
||||
#define afsio_seg uio_segflg
|
||||
#define afsio_resid uio_resid
|
||||
#define AFS_UIOSYS UIO_SYSSPACE
|
||||
#define AFS_UIOUSER UIO_USERSPACE
|
||||
#define AFS_CLBYTES CLBYTES
|
||||
#define osi_GetTime(x) microtime(x)
|
||||
#define AFS_KALLOC(x) malloc(x, M_AFS, M_WAITOK)
|
||||
#define AFS_KFREE(x,y) free(x,M_AFS)
|
||||
#define v_count v_usecount
|
||||
#define v_vfsp v_mount
|
||||
#define vfs_bsize mnt_stat.f_bsize
|
||||
#define vfs_fsid mnt_stat.f_fsid
|
||||
#define va_nodeid va_fileid
|
||||
#define vfs_vnodecovered mnt_vnodecovered
|
||||
#define direct dirent
|
||||
#define vnode_t struct vnode
|
||||
|
||||
#ifndef MUTEX_DEFAULT
|
||||
#define MUTEX_DEFAULT 0
|
||||
#endif /* MUTEX_DEFAULT */
|
||||
|
||||
#ifndef SSYS
|
||||
#define SSYS 0x00002
|
||||
#endif /* SSYS */
|
||||
|
||||
#define p_rcred p_ucred
|
||||
|
||||
#define VN_RELE(vp) vrele(((struct vnode *)(vp)))
|
||||
#define VN_HOLD(vp) VREF(((struct vnode *)(vp)))
|
||||
|
||||
#if !defined(ASSEMBLER) && !defined(__LANGUAGE_ASSEMBLY__)
|
||||
enum vcexcl {NONEXCL, EXCL};
|
||||
|
||||
#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 */
|
||||
|
||||
#endif /* ! ASSEMBLER & ! __LANGUAGE_ASSEMBLY__ */
|
||||
#endif /* _KERNEL */
|
||||
|
||||
#endif /* AFS_PARAM_H */
|
||||
|
||||
#else /* !defined(UKERNEL) */
|
||||
|
||||
/* This section for user space compiles only */
|
||||
|
||||
#ifndef AFS_PARAM_H
|
||||
#define AFS_PARAM_H
|
||||
|
||||
|
||||
#define UKERNEL 1 /* user space kernel */
|
||||
#define AFS_ENV 1
|
||||
#define AFS_VFSINCL_ENV 1
|
||||
#define AFS_USR_FBSD40_ENV 1
|
||||
#define AFS_USR_FBSD42_ENV 1
|
||||
#define AFS_USR_FBSD43_ENV 1
|
||||
#define AFS_USR_FBSD44_ENV 1
|
||||
#define AFS_USR_FBSD45_ENV 1
|
||||
#define AFS_USR_FBSD46_ENV 1
|
||||
#define AFS_USR_FBSD47_ENV 1
|
||||
#define AFS_USR_FBSD50_ENV 1
|
||||
#define AFS_USR_FBSD_ENV 1
|
||||
#define AFS_NONFSTRANS 1
|
||||
|
||||
#define O_SYNC O_FSYNC
|
||||
|
||||
#define AFS_MOUNT_AFS "afs" /* The name of the filesystem type. */
|
||||
#define AFS_SYSCALL 339
|
||||
#define AFS_NAMEI_ENV 1 /* User space interface to file system */
|
||||
#define AFS_64BIT_IOPS_ENV 1 /* Needed for NAMEI */
|
||||
#include <afs/afs_sysnames.h>
|
||||
|
||||
#define AFS_USERSPACE_IP_ADDR 1
|
||||
#define RXK_LISTENER_ENV 1
|
||||
#define AFS_GCPAGS 0 /* if nonzero, garbage collect PAGs */
|
||||
|
||||
/* Machine / Operating system information */
|
||||
#define SYS_NAME "i386_fbsd_50"
|
||||
#define SYS_NAME_ID SYS_NAME_ID_i386_fbsd_50
|
||||
#define AFSLITTLE_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 */
|
||||
|
||||
#define afsio_iov uio_iov
|
||||
#define afsio_iovcnt uio_iovcnt
|
||||
#define afsio_offset uio_offset
|
||||
#define afsio_seg uio_segflg
|
||||
#define afsio_fmode uio_fmode
|
||||
#define afsio_resid uio_resid
|
||||
#define AFS_UIOSYS 1
|
||||
#define AFS_UIOUSER UIO_USERSPACE
|
||||
#define AFS_CLBYTES MCLBYTES
|
||||
#define AFS_MINCHANGE 2
|
||||
#define VATTR_NULL usr_vattr_null
|
||||
|
||||
#define AFS_DIRENT
|
||||
#ifndef CMSERVERPREF
|
||||
#define CMSERVERPREF
|
||||
#endif
|
||||
|
||||
#include <limits.h>
|
||||
#include <sys/param.h>
|
||||
#include <sys/types.h>
|
||||
#include <sys/mount.h>
|
||||
#include <sys/fcntl.h>
|
||||
#include <netinet/in.h>
|
||||
#include <sys/uio.h>
|
||||
#include <sys/socket.h>
|
||||
|
||||
#endif /* AFS_PARAM_H */
|
||||
|
||||
#endif /* !defined(UKERNEL) */
|
@ -90,7 +90,7 @@ RCSID("$Header$");
|
||||
static struct stat istat, ostat;
|
||||
static int stripcalled = 0;
|
||||
|
||||
#if !defined(AFS_DARWIN60_ENV)
|
||||
#if !defined(AFS_DARWIN60_ENV) && !defined(AFS_FBSD50_ENV)
|
||||
extern int sys_nerr;
|
||||
#endif
|
||||
#if !defined(AFS_LINUX20_ENV) && !defined(AFS_DARWIN_ENV) && !defined(AFS_XBSD_ENV)
|
||||
|
Loading…
Reference in New Issue
Block a user