sl@0: /*- sl@0: * Copyright (c) 1982, 1986, 1989, 1993 sl@0: * The Regents of the University of California. All rights reserved. sl@0: * (c) UNIX System Laboratories, Inc. sl@0: * All or some portions of this file are derived from material licensed sl@0: * to the University of California by American Telephone and Telegraph sl@0: * Co. or Unix System Laboratories, Inc. and are reproduced herein with sl@0: * the permission of UNIX System Laboratories, Inc. sl@0: * sl@0: * Redistribution and use in source and binary forms, with or without sl@0: * modification, are permitted provided that the following conditions sl@0: * are met: sl@0: * 1. Redistributions of source code must retain the above copyright sl@0: * notice, this list of conditions and the following disclaimer. sl@0: * 2. Redistributions in binary form must reproduce the above copyright sl@0: * notice, this list of conditions and the following disclaimer in the sl@0: * documentation and/or other materials provided with the distribution. sl@0: * 4. Neither the name of the University nor the names of its contributors sl@0: * may be used to endorse or promote products derived from this software sl@0: * without specific prior written permission. sl@0: * sl@0: * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND sl@0: * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE sl@0: * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE sl@0: * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE sl@0: * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL sl@0: * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS sl@0: * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) sl@0: * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT sl@0: * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY sl@0: * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF sl@0: * SUCH DAMAGE. sl@0: * sl@0: * @(#)param.h 8.3 (Berkeley) 4/4/95 sl@0: * $FreeBSD: src/sys/sys/param.h,v 1.244.2.2 2005/08/13 21:27:58 rwatson Exp $ sl@0: */ sl@0: sl@0: #ifndef _SYS_PARAM_H_ sl@0: #define _SYS_PARAM_H_ sl@0: sl@0: #include sl@0: sl@0: #define BSD 199506 /* System version (year & month). */ sl@0: #define BSD4_3 1 sl@0: #define BSD4_4 1 sl@0: sl@0: /* sl@0: * __FreeBSD_version numbers are documented in the Porter's Handbook. sl@0: * If you bump the version for any reason, you should update the documentation sl@0: * there. sl@0: * Currently this lives here: sl@0: * sl@0: * doc/en_US.ISO8859-1/books/porters-handbook/book.sgml sl@0: * sl@0: * scheme is: Rxx sl@0: * 'R' is 0 if release branch or x.0-CURRENT before RELENG_*_0 sl@0: * is created, otherwise 1. sl@0: */ sl@0: #undef __FreeBSD_version sl@0: #define __FreeBSD_version 600034 /* Master, propagated to newvers */ sl@0: sl@0: #ifndef LOCORE sl@0: #include sl@0: #endif sl@0: sl@0: /* sl@0: * Machine-independent constants (some used in following include files). sl@0: * Redefined constants are from POSIX 1003.1 limits file. sl@0: * sl@0: * MAXCOMLEN should be >= sizeof(ac_comm) (see ) sl@0: * MAXLOGNAME should be == UT_NAMESIZE+1 (see ) sl@0: */ sl@0: #include sl@0: sl@0: #define MAXCOMLEN 19 /* max command name remembered */ sl@0: #define MAXINTERP 32 /* max interpreter file name length */ sl@0: #define MAXLOGNAME 17 /* max login name length (incl. NUL) */ sl@0: #define MAXUPRC CHILD_MAX /* max simultaneous processes */ sl@0: #define NCARGS ARG_MAX /* max bytes for an exec function */ sl@0: #define NGROUPS NGROUPS_MAX /* max number groups */ sl@0: #define NOFILE OPEN_MAX /* max open files per process */ sl@0: #define NOGROUP 65535 /* marker for empty group set member */ sl@0: #define MAXHOSTNAMELEN 256 /* max hostname size */ sl@0: #define SPECNAMELEN 63 /* max length of devicename */ sl@0: sl@0: /* More types and definitions used throughout the kernel. */ sl@0: #ifdef _KERNEL sl@0: #if 0 sl@0: #if (defined(BURN_BRIDGES) || __FreeBSD_version >= 600000) \ sl@0: && defined(OBSOLETE_IN_6) sl@0: #error "This file contains obsolete code to be removed in 6.0-current" sl@0: #endif sl@0: #endif sl@0: #include sl@0: #include sl@0: #include sl@0: sl@0: #ifndef __SYMBIAN32__ sl@0: #include sl@0: #endif //__SYMBIAN32__ sl@0: sl@0: #define FALSE 0 sl@0: #define TRUE 1 sl@0: #endif sl@0: sl@0: #ifndef _KERNEL sl@0: /* Signals. */ sl@0: #ifndef __SYMBIAN32__ sl@0: #include sl@0: #endif //__SYMBIAN32__ sl@0: #endif sl@0: sl@0: /* Machine type dependent parameters. */ sl@0: #include sl@0: #ifndef _KERNEL sl@0: #include sl@0: #endif sl@0: sl@0: #ifndef _NO_NAMESPACE_POLLUTION sl@0: sl@0: #ifndef DEV_BSHIFT sl@0: #define DEV_BSHIFT 9 /* log2(DEV_BSIZE) */ sl@0: #endif sl@0: #define DEV_BSIZE (1<>PAGE_SHIFT) sl@0: #endif sl@0: sl@0: /* sl@0: * btodb() is messy and perhaps slow because `bytes' may be an off_t. We sl@0: * want to shift an unsigned type to avoid sign extension and we don't sl@0: * want to widen `bytes' unnecessarily. Assume that the result fits in sl@0: * a daddr_t. sl@0: */ sl@0: #ifndef btodb sl@0: #define btodb(bytes) /* calculates (bytes / DEV_BSIZE) */ \ sl@0: (sizeof (bytes) > sizeof(long) \ sl@0: ? (daddr_t)((unsigned long long)(bytes) >> DEV_BSHIFT) \ sl@0: : (daddr_t)((unsigned long)(bytes) >> DEV_BSHIFT)) sl@0: #endif sl@0: sl@0: #ifndef dbtob sl@0: #define dbtob(db) /* calculates (db * DEV_BSIZE) */ \ sl@0: ((off_t)(db) << DEV_BSHIFT) sl@0: #endif sl@0: sl@0: #endif /* _NO_NAMESPACE_POLLUTION */ sl@0: sl@0: #define PRIMASK 0x0ff sl@0: #define PCATCH 0x100 /* OR'd with pri for tsleep to check signals */ sl@0: #define PDROP 0x200 /* OR'd with pri to stop re-entry of interlock mutex */ sl@0: sl@0: #define NZERO 0 /* default "nice" */ sl@0: sl@0: #define NBBY 8 /* number of bits in a byte */ sl@0: #define NBPW sizeof(int) /* number of bytes per word (integer) */ sl@0: sl@0: #define CMASK 022 /* default file mask: S_IWGRP|S_IWOTH */ sl@0: sl@0: #define NODEV (dev_t)(-1) /* non-existent device */ sl@0: sl@0: #define CBLOCK 128 /* Clist block size, must be a power of 2. */ sl@0: #define CBQSIZE (CBLOCK/NBBY) /* Quote bytes/cblock - can do better. */ sl@0: /* Data chars/clist. */ sl@0: #define CBSIZE (CBLOCK - sizeof(struct cblock *) - CBQSIZE) sl@0: #define CROUND (CBLOCK - 1) /* Clist rounding. */ sl@0: sl@0: /* sl@0: * File system parameters and macros. sl@0: * sl@0: * MAXBSIZE - Filesystems are made out of blocks of at most MAXBSIZE bytes sl@0: * per block. MAXBSIZE may be made larger without effecting sl@0: * any existing filesystems as long as it does not exceed MAXPHYS, sl@0: * and may be made smaller at the risk of not being able to use sl@0: * filesystems which require a block size exceeding MAXBSIZE. sl@0: * sl@0: * BKVASIZE - Nominal buffer space per buffer, in bytes. BKVASIZE is the sl@0: * minimum KVM memory reservation the kernel is willing to make. sl@0: * Filesystems can of course request smaller chunks. Actual sl@0: * backing memory uses a chunk size of a page (PAGE_SIZE). sl@0: * sl@0: * If you make BKVASIZE too small you risk seriously fragmenting sl@0: * the buffer KVM map which may slow things down a bit. If you sl@0: * make it too big the kernel will not be able to optimally use sl@0: * the KVM memory reserved for the buffer cache and will wind sl@0: * up with too-few buffers. sl@0: * sl@0: * The default is 16384, roughly 2x the block size used by a sl@0: * normal UFS filesystem. sl@0: */ sl@0: #define MAXBSIZE 65536 /* must be power of 2 */ sl@0: #define BKVASIZE 16384 /* must be power of 2 */ sl@0: #define BKVAMASK (BKVASIZE-1) sl@0: sl@0: /* sl@0: * MAXPATHLEN defines the longest permissible path length after expanding sl@0: * symbolic links. It is used to allocate a temporary buffer from the buffer sl@0: * pool in which to do the name expansion, hence should be a power of two, sl@0: * and must be less than or equal to MAXBSIZE. MAXSYMLINKS defines the sl@0: * maximum number of symbolic links that may be expanded in a path name. sl@0: * It should be set high enough to allow all legitimate uses, but halt sl@0: * infinite loops reasonably quickly. sl@0: */ sl@0: #define MAXPATHLEN PATH_MAX sl@0: #define MAXSYMLINKS 32 sl@0: sl@0: /* Bit map related macros. */ sl@0: #define setbit(a,i) ((a)[(i)/NBBY] |= 1<<((i)%NBBY)) sl@0: #define clrbit(a,i) ((a)[(i)/NBBY] &= ~(1<<((i)%NBBY))) sl@0: #define isset(a,i) ((a)[(i)/NBBY] & (1<<((i)%NBBY))) sl@0: #define isclr(a,i) (((a)[(i)/NBBY] & (1<<((i)%NBBY))) == 0) sl@0: sl@0: /* Macros for counting and rounding. */ sl@0: #ifndef howmany sl@0: #define howmany(x, y) (((x)+((y)-1))/(y)) sl@0: #endif sl@0: #define rounddown(x, y) (((x)/(y))*(y)) sl@0: #define roundup(x, y) ((((x)+((y)-1))/(y))*(y)) /* to any y */ sl@0: #define roundup2(x, y) (((x)+((y)-1))&(~((y)-1))) /* if y is powers of two */ sl@0: #define powerof2(x) ((((x)-1)&(x))==0) sl@0: sl@0: /* Macros for min/max. */ sl@0: #define MIN(a,b) (((a)<(b))?(a):(b)) sl@0: #define MAX(a,b) (((a)>(b))?(a):(b)) sl@0: sl@0: #ifdef _KERNEL sl@0: /* sl@0: * Basic byte order function prototypes for non-inline functions. sl@0: */ sl@0: #ifndef _BYTEORDER_PROTOTYPED sl@0: #define _BYTEORDER_PROTOTYPED sl@0: __BEGIN_DECLS sl@0: __uint32_t htonl(__uint32_t); sl@0: __uint16_t htons(__uint16_t); sl@0: __uint32_t ntohl(__uint32_t); sl@0: __uint16_t ntohs(__uint16_t); sl@0: __END_DECLS sl@0: #endif sl@0: sl@0: #ifndef lint sl@0: #ifndef _BYTEORDER_FUNC_DEFINED sl@0: #define _BYTEORDER_FUNC_DEFINED sl@0: #define htonl(x) __htonl(x) sl@0: #define htons(x) __htons(x) sl@0: #define ntohl(x) __ntohl(x) sl@0: #define ntohs(x) __ntohs(x) sl@0: #endif /* !_BYTEORDER_FUNC_DEFINED */ sl@0: #endif /* lint */ sl@0: #endif /* _KERNEL */ sl@0: sl@0: /* sl@0: * Constants for setting the parameters of the kernel memory allocator. sl@0: * sl@0: * 2 ** MINBUCKET is the smallest unit of memory that will be sl@0: * allocated. It must be at least large enough to hold a pointer. sl@0: * sl@0: * Units of memory less or equal to MAXALLOCSAVE will permanently sl@0: * allocate physical memory; requests for these size pieces of sl@0: * memory are quite fast. Allocations greater than MAXALLOCSAVE must sl@0: * always allocate and free physical memory; requests for these sl@0: * size allocations should be done infrequently as they will be slow. sl@0: * sl@0: * Constraints: PAGE_SIZE <= MAXALLOCSAVE <= 2 ** (MINBUCKET + 14), and sl@0: * MAXALLOCSIZE must be a power of two. sl@0: */ sl@0: #if defined(__alpha__) || defined(__ia64__) || defined(__sparc64__) sl@0: #define MINBUCKET 5 /* 5 => min allocation of 32 bytes */ sl@0: #else sl@0: #define MINBUCKET 4 /* 4 => min allocation of 16 bytes */ sl@0: #endif sl@0: #define MAXALLOCSAVE (2 * PAGE_SIZE) sl@0: sl@0: /* sl@0: * Scale factor for scaled integers used to count %cpu time and load avgs. sl@0: * sl@0: * The number of CPU `tick's that map to a unique `%age' can be expressed sl@0: * by the formula (1 / (2 ^ (FSHIFT - 11))). The maximum load average that sl@0: * can be calculated (assuming 32 bits) can be closely approximated using sl@0: * the formula (2 ^ (2 * (16 - FSHIFT))) for (FSHIFT < 15). sl@0: * sl@0: * For the scheduler to maintain a 1:1 mapping of CPU `tick' to `%age', sl@0: * FSHIFT must be at least 11; this gives us a maximum load avg of ~1024. sl@0: */ sl@0: #define FSHIFT 11 /* bits to right of fixed binary point */ sl@0: #define FSCALE (1<> (PAGE_SHIFT - DEV_BSHIFT)) sl@0: sl@0: #define ctodb(db) /* calculates pages to devblks */ \ sl@0: ((db) << (PAGE_SHIFT - DEV_BSHIFT)) sl@0: sl@0: #endif /* _SYS_PARAM_H_ */