mirror of
https://git.openafs.org/openafs.git
synced 2025-01-18 15:00:12 +00:00
amd64-linux-port-20030428
first cut at an opteron port
This commit is contained in:
parent
1c67a70709
commit
509c965d0a
@ -266,6 +266,8 @@ login: cmd comerr kauth rxkad
|
||||
${COMPILE_PART1} login ${COMPILE_PART2} ;; \
|
||||
parisc_linux24) \
|
||||
echo Skipping pam/login for parisc_linux24 ;; \
|
||||
amd64_linux24) \
|
||||
echo Skipping pam/login for amd64_linux24 ;; \
|
||||
sun4x_* | sunx86_* | hp_ux11* | ia64_hpux* | *linux* | *fbsd* ) \
|
||||
${COMPILE_PART1} pam ${COMPILE_PART2} ;; \
|
||||
ppc_darwin* | *_obsd* | *_nbsd* | hp_ux* | rs_aix5* ) \
|
||||
@ -428,6 +430,8 @@ libafsauthent: ubik auth kauth libafsrpc
|
||||
# pthread based user space RX library
|
||||
shlibafsrpc: rx rxkad des
|
||||
case ${SYS_NAME} in \
|
||||
amd64_linux24) \
|
||||
echo Skipping shlibafsrpc for amd64_linux24 ;; \
|
||||
alpha_dux*|sgi_*|sun4x_*|sunx86_*|rs_aix*|*linux*|hp_ux11*|ia64_hpux*) \
|
||||
${COMPILE_PART1} shlibafsrpc ${COMPILE_PART2} ;; \
|
||||
*) \
|
||||
@ -436,6 +440,8 @@ shlibafsrpc: rx rxkad des
|
||||
|
||||
shlibafsauthent: ubik auth kauth shlibafsrpc
|
||||
case ${SYS_NAME} in \
|
||||
amd64_linux24) \
|
||||
echo Skipping shlibafsauthent for amd64_linux24 ;; \
|
||||
alpha_dux*|sgi_*|sun4x_*|sunx86_*|rs_aix*|*linux*|hp_ux11*|ia64_hpux*) \
|
||||
${COMPILE_PART1} shlibafsauthent ${COMPILE_PART2} ;; \
|
||||
*) \
|
||||
|
@ -520,6 +520,9 @@ else
|
||||
power*-ibm-aix4.3*)
|
||||
AFS_SYSNAME="rs_aix42"
|
||||
;;
|
||||
x86_64-*-linux-gnu)
|
||||
AFS_SYSNAME="amd64_linuxXX"
|
||||
;;
|
||||
*)
|
||||
AC_MSG_ERROR(An AFS sysname is required)
|
||||
exit 1
|
||||
|
@ -428,7 +428,7 @@ module_exit(afs_cleanup);
|
||||
|
||||
static long get_page_offset(void)
|
||||
{
|
||||
#if defined(AFS_PPC_LINUX22_ENV) || defined(AFS_SPARC64_LINUX20_ENV) || defined(AFS_SPARC_LINUX20_ENV) || defined(AFS_ALPHA_LINUX20_ENV) || defined(AFS_S390_LINUX22_ENV) || defined(AFS_IA64_LINUX20_ENV) || defined(AFS_PARISC_LINUX24_ENV)
|
||||
#if defined(AFS_PPC_LINUX22_ENV) || defined(AFS_SPARC64_LINUX20_ENV) || defined(AFS_SPARC_LINUX20_ENV) || defined(AFS_ALPHA_LINUX20_ENV) || defined(AFS_S390_LINUX22_ENV) || defined(AFS_IA64_LINUX20_ENV) || defined(AFS_PARISC_LINUX24_ENV) || defined(AFS_AMD64_LINUX20_ENV)
|
||||
return PAGE_OFFSET;
|
||||
#else
|
||||
struct task_struct *p, *q;
|
||||
|
@ -1071,7 +1071,7 @@ copyin_iparam(caddr_t cmarg, struct iparam *dst)
|
||||
}
|
||||
#endif /* AFS_SUN57_64BIT_ENV */
|
||||
|
||||
#if defined(AFS_LINUX_64BIT_KERNEL) && !defined(AFS_ALPHA_LINUX20_ENV) && !defined(AFS_IA64_LINUX20_ENV)
|
||||
#if defined(AFS_LINUX_64BIT_KERNEL) && !defined(AFS_ALPHA_LINUX20_ENV) && !defined(AFS_IA64_LINUX20_ENV) && !defined(AFS_AMD64_LINUX20_ENV)
|
||||
struct iparam32 dst32;
|
||||
|
||||
#ifdef AFS_SPARC64_LINUX24_ENV
|
||||
|
@ -229,7 +229,7 @@ copyin_afs_ioctl(caddr_t cmarg, struct afs_ioctl *dst)
|
||||
}
|
||||
#endif /* defined(AFS_SGI_ENV) && (_MIPS_SZLONG==64) */
|
||||
|
||||
#if defined(AFS_LINUX_64BIT_KERNEL) && !defined(AFS_ALPHA_LINUX20_ENV) && !defined(AFS_IA64_LINUX20_ENV)
|
||||
#if defined(AFS_LINUX_64BIT_KERNEL) && !defined(AFS_ALPHA_LINUX20_ENV) && !defined(AFS_IA64_LINUX20_ENV) && !defined(AFS_AMD64_LINUX20_ENV)
|
||||
struct afs_ioctl32 dst32;
|
||||
|
||||
#ifdef AFS_SPARC64_LINUX24_ENV
|
||||
|
@ -243,6 +243,18 @@ case $AFS_SYSNAME in
|
||||
SHLIB_LINKER="${MT_CC} -shared"
|
||||
;;
|
||||
|
||||
amd64_linux24)
|
||||
KERN_OPTMZ=-O2
|
||||
LEX="flex -l"
|
||||
MT_CFLAGS='-DAFS_PTHREAD_ENV -pthread -D_REENTRANT ${XCFLAGS}'
|
||||
MT_LIBS="-lpthread"
|
||||
PAM_CFLAGS="-g -O2 -Dlinux -DLINUX_PAM -fPIC"
|
||||
SHLIB_LDFLAGS="-shared -Xlinker -x"
|
||||
TXLIBS="-lncurses"
|
||||
XCFLAGS="-g -O2 -D_LARGEFILE64_SOURCE"
|
||||
SHLIB_LINKER="${MT_CC} -shared"
|
||||
;;
|
||||
|
||||
i386_linux22)
|
||||
CC="gcc -pipe"
|
||||
MT_CC="gcc -pipe"
|
||||
|
@ -185,6 +185,9 @@
|
||||
#define SYS_NAME_ID_i386_obsd32 2601
|
||||
#define SYS_NAME_ID_i386_obsd33 2602
|
||||
|
||||
#define SYS_NAME_ID_amd64_linux2 2700
|
||||
#define SYS_NAME_ID_amd64_linux22 2701
|
||||
#define SYS_NAME_ID_amd64_linux24 2702
|
||||
/*
|
||||
* Placeholder to keep system-wide standard flags since this file is included by all
|
||||
* files (i.e in afs/param.h)
|
||||
|
165
src/config/param.amd64_linux24.h
Normal file
165
src/config/param.amd64_linux24.h
Normal file
@ -0,0 +1,165 @@
|
||||
#ifndef UKERNEL
|
||||
/* This section for kernel libafs compiles only */
|
||||
|
||||
/*
|
||||
* Copyright 2000, International Business Machines Corporation and others.
|
||||
* All Rights Reserved.
|
||||
*
|
||||
* This software has been released under the terms of the IBM Public
|
||||
* License. For details, see the LICENSE file in the top-level source
|
||||
* directory or online at http://www.openafs.org/dl/license10.html
|
||||
*/
|
||||
|
||||
|
||||
#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 amd64 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_AMD64_LINUX20_ENV 1
|
||||
#define AFS_AMD64_LINUX22_ENV 1
|
||||
#define AFS_AMD64_LINUX24_ENV 1
|
||||
#define AFS_LINUX_64BIT_KERNEL 1
|
||||
#define AFS_NONFSTRANS 1
|
||||
|
||||
#define AFS_MOUNT_AFS "afs" /* The name of the filesystem type. */
|
||||
#define AFS_SYSCALL 183
|
||||
#define AFS_64BIT_IOPS_ENV 1
|
||||
#define AFS_NAMEI_ENV 1 /* User space interface to file system */
|
||||
|
||||
#define AFS_64BIT_ENV 1 /* Defines afs_int32 as int, not long. */
|
||||
|
||||
#define AFS_64BITPOINTER_ENV 1 /* pointers are 64 bits. */
|
||||
|
||||
#if defined(__KERNEL__) && !defined(KDUMP_KERNEL)
|
||||
#include <linux/threads.h>
|
||||
|
||||
#include <linux/config.h>
|
||||
#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 <linux/modversions.h>
|
||||
#endif
|
||||
|
||||
#endif /* __KERNEL__ && !DUMP_KERNEL*/
|
||||
|
||||
#include <afs/afs_sysnames.h>
|
||||
|
||||
#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 "amd64_linux24"
|
||||
#define SYS_NAME_ID SYS_NAME_ID_amd64_linux24
|
||||
#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 */
|
||||
|
||||
#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 */
|
||||
|
||||
#define USE_UCONTEXT /* should be in afsconfig.h */
|
||||
|
||||
#endif /* _PARAM_AMD64_LINUX20_H_ */
|
||||
|
||||
#else /* !defined(UKERNEL) */
|
||||
|
||||
/* This section for user space compiles only */
|
||||
|
||||
/*
|
||||
* Copyright 2000, International Business Machines Corporation and others.
|
||||
* All Rights Reserved.
|
||||
*
|
||||
* This software has been released under the terms of the IBM Public
|
||||
* License. For details, see the LICENSE file in the top-level source
|
||||
* directory or online at http://www.openafs.org/dl/license10.html
|
||||
*/
|
||||
|
||||
|
||||
#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 amd64 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 UKERNEL 1 /* user space kernel */
|
||||
#define AFS_ENV 1
|
||||
#define AFS_USR_LINUX20_ENV 1
|
||||
#define AFS_USR_LINUX22_ENV 1
|
||||
#define AFS_USR_LINUX24_ENV 1
|
||||
#define AFS_NONFSTRANS 1
|
||||
|
||||
#define AFS_MOUNT_AFS "afs" /* The name of the filesystem type. */
|
||||
#define AFS_SYSCALL 183
|
||||
#define AFS_64BIT_IOPS_ENV 1
|
||||
#define AFS_NAMEI_ENV 1 /* User space interface to file system */
|
||||
#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 "amd64_linux24"
|
||||
#define SYS_NAME_ID SYS_NAME_ID_amd64_linux24
|
||||
#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
|
||||
|
||||
#define USE_UCONTEXT /* should be in afsconfig.h */
|
||||
|
||||
#endif /* AFS_PARAM_H */
|
||||
|
||||
#endif /* !defined(UKERNEL) */
|
@ -76,7 +76,11 @@
|
||||
#ifdef AFS_IA64_LINUX20_ENV
|
||||
#include "conf-ia64-linux.h"
|
||||
#else
|
||||
#ifdef AFS_AMD64_LINUX20_ENV
|
||||
#include "conf-amd64-linux.h"
|
||||
#else
|
||||
#include "conf-i386-linux.h"
|
||||
#endif /* AFS_AMD64_LINUX20_ENV */
|
||||
#endif /* AFS_IA64_LINUX20_ENV */
|
||||
#endif /* AFS_ALPHA_LINUX20_ENV */
|
||||
#endif /* AFS_S390_LINUX20_ENV */
|
||||
|
13
src/des/conf-amd64-linux.h
Normal file
13
src/des/conf-amd64-linux.h
Normal file
@ -0,0 +1,13 @@
|
||||
/*
|
||||
* Copyright 1988 by the Massachusetts Institute of Technology.
|
||||
*
|
||||
* For copying and distribution information, please see the file
|
||||
* <mit-copyright.h>.
|
||||
*
|
||||
*/
|
||||
|
||||
#include <mit-cpyright.h>
|
||||
|
||||
#define BITS32
|
||||
#define BIG
|
||||
#define LSBFIRST
|
@ -88,7 +88,9 @@ RCSID("$Header$");
|
||||
* define "LONG_IS_32_BITS" only if sizeof(long)==4.
|
||||
* This avoids use of bit fields (your compiler may be sloppy with them).
|
||||
*/
|
||||
#if !defined(cray) && !defined(AFS_ALPHA_LINUX20_ENV) && !defined(AFS_IA64_LINUX20_ENV)
|
||||
|
||||
/* XXX shouldn't this be !AFS_64BIT_ENV ? */
|
||||
#if !defined(cray) && !defined(AFS_ALPHA_LINUX20_ENV) && !defined(AFS_IA64_LINUX20_ENV) && !defined(AFS_AMD64_LINUX20_ENV)
|
||||
#define LONG_IS_32_BITS
|
||||
#endif
|
||||
|
||||
|
@ -37,6 +37,10 @@ COMMON_DEFINES=-D__KERNEL__ -DKERNEL -D_KERNEL -DMODULE ${SMP_DEF}
|
||||
CCFLAGS = $(COMMON_KERN_CFLAGS) @P5PLUS_KOPTS@
|
||||
DEFINES = $(COMMON_DEFINES) -DCPU=586
|
||||
|
||||
<amd64_linux24>
|
||||
CCFLAGS = $(COMMON_KERN_CFLAGS) -mcmodel=kernel
|
||||
DEFINES = $(COMMON_DEFINES)
|
||||
|
||||
<alpha_linux_22 alpha_linux_24>
|
||||
CCFLAGS = $(COMMON_KERN_CFLAGS) -mno-fp-regs -ffixed-8
|
||||
DEFINES = $(COMMON_DEFINES)
|
||||
@ -124,6 +128,8 @@ ${COMPDIRS} ${INSTDIRS} ${DESTDIRS}:
|
||||
ln -fs ${LINUX_KERNEL_PATH}/include/asm-alpha asm
|
||||
<i386_linux22 i386_linux24>
|
||||
ln -fs ${LINUX_KERNEL_PATH}/include/asm-i386 asm
|
||||
<amd64_linux24>
|
||||
ln -fs ${LINUX_KERNEL_PATH}/include/asm-x86_64 asm
|
||||
<s390_linux22 s390_linux24>
|
||||
ln -fs ${LINUX_KERNEL_PATH}/include/asm-s390 asm
|
||||
<ppc_linux22 ppc_linux24>
|
||||
|
@ -37,6 +37,8 @@ char* newsp;
|
||||
{
|
||||
#if defined(AFS_IA64_LINUX20_ENV)
|
||||
register unsigned long sp __asm__("r12");
|
||||
#elif defined(AFS_AMD64_LINUX24_ENV)
|
||||
register unsigned long sp __asm__("sp");
|
||||
#elif defined(AFS_HPUX1122_ENV)
|
||||
/* don't need anything special, will use
|
||||
* ucontext.uc_stack.ss_sp as it matches r12.
|
||||
|
Loading…
Reference in New Issue
Block a user