~ubuntu-branches/ubuntu/karmic/openafs/karmic-updates

« back to all changes in this revision

Viewing changes to src/config/param.i386_obsd41.h

  • Committer: Bazaar Package Importer
  • Author(s): Russ Allbery
  • Date: 2008-09-22 19:07:02 UTC
  • mfrom: (12.1.14 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080922190702-59m13d7kn6gkw32d
Tags: 1.4.7.dfsg1-6
* Apply upstream patch to free /proc entries in the correct order.
  Thanks, Marc Dionne.  (Closes: #493914)
* Apply upstream deltas to support 2.6.27 kernels and to stop using
  COMMON_KERN_CFLAGS for all 2.6 kernels uniformly, which fixes
  problems on amd64 with newer kernels.  Thanks, Björn Torkelsson.
  (LP: #267504)
* Translation updates:
  - Swedish, thanks Martin Bagge.  (Closes: #493120)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Jim Rees, University of Michigan CITI
 
3
 */
 
4
 
 
5
#ifndef AFS_PARAM_H
 
6
#define AFS_PARAM_H
 
7
 
 
8
#ifndef IGNORE_STDS_H
 
9
#include <sys/param.h>
 
10
#endif
 
11
 
 
12
#define SYS_NAME                "i386_obsd41"
 
13
#define SYS_NAME_ID             SYS_NAME_ID_i386_obsd41
 
14
 
 
15
#define AFS_XBSD_ENV            1       /* {Free,Open,Net}BSD */
 
16
#define AFS_X86_XBSD_ENV        1
 
17
 
 
18
#define AFS_NAMEI_ENV           1       /* User space interface to file system */
 
19
#define AFS_64BIT_ENV           1
 
20
#define AFS_64BIT_CLIENT        1
 
21
#define AFS_64BIT_IOPS_ENV      1       /* Needed for NAMEI */
 
22
#define AFS_OBSD_ENV            1
 
23
#define AFS_OBSD34_ENV          1
 
24
#define AFS_OBSD35_ENV          1
 
25
#define AFS_OBSD36_ENV          1
 
26
#define AFS_OBSD37_ENV          1
 
27
#define AFS_OBSD38_ENV          1
 
28
#define AFS_OBSD39_ENV          1
 
29
#define AFS_OBSD40_ENV          1
 
30
#define AFS_OBSD41_ENV          1
 
31
#define AFS_NONFSTRANS          1
 
32
#define AFS_VM_RDWR_ENV         1
 
33
#define AFS_VFS_ENV             1
 
34
#define AFS_VFSINCL_ENV         1
 
35
 
 
36
#define FTRUNC O_TRUNC
 
37
 
 
38
#define AFS_SYSCALL             208
 
39
#define AFS_MOUNT_AFS           "afs"
 
40
 
 
41
#define RXK_LISTENER_ENV        1
 
42
#define AFS_GCPAGS              0       /* if nonzero, garbage collect PAGs */
 
43
#define AFS_USE_GETTIMEOFDAY    1       /* use gettimeofday to implement rx clock */
 
44
 
 
45
#define AFSLITTLE_ENDIAN        1
 
46
 
 
47
#ifndef IGNORE_STDS_H
 
48
#include <afs/afs_sysnames.h>
 
49
#endif
 
50
 
 
51
/* Extra kernel definitions (from kdefs file) */
 
52
#ifdef _KERNEL
 
53
#ifdef MULTIPROCESSOR
 
54
#define AFS_GLOBAL_SUNLOCK      1
 
55
#endif
 
56
#define AFS_SHORTGID            0       /* are group id's short? */
 
57
 
 
58
#if     !defined(ASSEMBLER) && !defined(__LANGUAGE_ASSEMBLY__)
 
59
enum vcexcl { NONEXCL, EXCL };
 
60
 
 
61
#ifndef MIN
 
62
#define MIN(A,B) ((A) < (B) ? (A) : (B))
 
63
#endif
 
64
#ifndef MAX
 
65
#define MAX(A,B) ((A) > (B) ? (A) : (B))
 
66
#endif
 
67
 
 
68
#endif /* ! ASSEMBLER & ! __LANGUAGE_ASSEMBLY__ */
 
69
#endif /* _KERNEL */
 
70
 
 
71
#endif /* AFS_PARAM_H */