The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/sys/systm.h

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 /*-
    2  * Copyright (c) 1982, 1988, 1991, 1993
    3  *      The Regents of the University of California.  All rights reserved.
    4  * (c) UNIX System Laboratories, Inc.
    5  * All or some portions of this file are derived from material licensed
    6  * to the University of California by American Telephone and Telegraph
    7  * Co. or Unix System Laboratories, Inc. and are reproduced herein with
    8  * the permission of UNIX System Laboratories, Inc.
    9  *
   10  * Redistribution and use in source and binary forms, with or without
   11  * modification, are permitted provided that the following conditions
   12  * are met:
   13  * 1. Redistributions of source code must retain the above copyright
   14  *    notice, this list of conditions and the following disclaimer.
   15  * 2. Redistributions in binary form must reproduce the above copyright
   16  *    notice, this list of conditions and the following disclaimer in the
   17  *    documentation and/or other materials provided with the distribution.
   18  * 4. Neither the name of the University nor the names of its contributors
   19  *    may be used to endorse or promote products derived from this software
   20  *    without specific prior written permission.
   21  *
   22  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
   23  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   24  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
   25  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
   26  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
   27  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
   28  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
   29  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
   30  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
   31  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
   32  * SUCH DAMAGE.
   33  *
   34  *      @(#)systm.h     8.7 (Berkeley) 3/29/95
   35  * $FreeBSD: releng/9.0/sys/sys/systm.h 224307 2011-07-25 09:12:48Z avg $
   36  */
   37 
   38 #ifndef _SYS_SYSTM_H_
   39 #define _SYS_SYSTM_H_
   40 
   41 #include <machine/atomic.h>
   42 #include <machine/cpufunc.h>
   43 #include <sys/callout.h>
   44 #include <sys/cdefs.h>
   45 #include <sys/queue.h>
   46 #include <sys/stdint.h>         /* for people using printf mainly */
   47 
   48 extern int cold;                /* nonzero if we are doing a cold boot */
   49 extern int rebooting;           /* kern_reboot() has been called. */
   50 extern const char *panicstr;    /* panic message */
   51 extern char version[];          /* system version */
   52 extern char copyright[];        /* system copyright */
   53 extern int kstack_pages;        /* number of kernel stack pages */
   54 
   55 extern u_long pagesizes[];      /* supported page sizes */
   56 extern long physmem;            /* physical memory */
   57 extern long realmem;            /* 'real' memory */
   58 
   59 extern char *rootdevnames[2];   /* names of possible root devices */
   60 
   61 extern int boothowto;           /* reboot flags, from console subsystem */
   62 extern int bootverbose;         /* nonzero to print verbose messages */
   63 
   64 extern int maxusers;            /* system tune hint */
   65 extern int ngroups_max;         /* max # of supplemental groups */
   66 extern int vm_guest;            /* Running as virtual machine guest? */
   67 
   68 /*
   69  * Detected virtual machine guest types. The intention is to expand
   70  * and/or add to the VM_GUEST_VM type if specific VM functionality is
   71  * ever implemented (e.g. vendor-specific paravirtualization features).
   72  */
   73 enum VM_GUEST { VM_GUEST_NO = 0, VM_GUEST_VM, VM_GUEST_XEN };
   74 
   75 #ifdef  INVARIANTS              /* The option is always available */
   76 #define KASSERT(exp,msg) do {                                           \
   77         if (__predict_false(!(exp)))                                    \
   78                 panic msg;                                              \
   79 } while (0)
   80 #define VNASSERT(exp, vp, msg) do {                                     \
   81         if (__predict_false(!(exp))) {                                  \
   82                 vn_printf(vp, "VNASSERT failed\n");                     \
   83                 panic msg;                                              \
   84         }                                                               \
   85 } while (0)
   86 #else
   87 #define KASSERT(exp,msg) do { \
   88 } while (0)
   89 
   90 #define VNASSERT(exp, vp, msg) do { \
   91 } while (0)
   92 #endif
   93 
   94 #ifndef CTASSERT                /* Allow lint to override */
   95 #define CTASSERT(x)             _CTASSERT(x, __LINE__)
   96 #define _CTASSERT(x, y)         __CTASSERT(x, y)
   97 #define __CTASSERT(x, y)        typedef char __assert ## y[(x) ? 1 : -1]
   98 #endif
   99 
  100 /*
  101  * Assert that a pointer can be loaded from memory atomically.
  102  *
  103  * This assertion enforces stronger alignment than necessary.  For example,
  104  * on some architectures, atomicity for unaligned loads will depend on
  105  * whether or not the load spans multiple cache lines.
  106  */
  107 #define ASSERT_ATOMIC_LOAD_PTR(var, msg)                                \
  108         KASSERT(sizeof(var) == sizeof(void *) &&                        \
  109             ((uintptr_t)&(var) & (sizeof(void *) - 1)) == 0, msg)
  110 
  111 /*
  112  * XXX the hints declarations are even more misplaced than most declarations
  113  * in this file, since they are needed in one file (per arch) and only used
  114  * in two files.
  115  * XXX most of these variables should be const.
  116  */
  117 extern int osreldate;
  118 extern int envmode;
  119 extern int hintmode;            /* 0 = off. 1 = config, 2 = fallback */
  120 extern int dynamic_kenv;
  121 extern struct mtx kenv_lock;
  122 extern char *kern_envp;
  123 extern char static_env[];
  124 extern char static_hints[];     /* by config for now */
  125 
  126 extern char **kenvp;
  127 
  128 extern const void *zero_region; /* address space maps to a zeroed page  */
  129 
  130 /*
  131  * General function declarations.
  132  */
  133 
  134 struct inpcb;
  135 struct lock_object;
  136 struct malloc_type;
  137 struct mtx;
  138 struct proc;
  139 struct socket;
  140 struct thread;
  141 struct tty;
  142 struct ucred;
  143 struct uio;
  144 struct _jmp_buf;
  145 struct trapframe;
  146 
  147 int     setjmp(struct _jmp_buf *);
  148 void    longjmp(struct _jmp_buf *, int) __dead2;
  149 int     dumpstatus(vm_offset_t addr, off_t count);
  150 int     nullop(void);
  151 int     eopnotsupp(void);
  152 int     ureadc(int, struct uio *);
  153 void    hashdestroy(void *, struct malloc_type *, u_long);
  154 void    *hashinit(int count, struct malloc_type *type, u_long *hashmask);
  155 void    *hashinit_flags(int count, struct malloc_type *type,
  156     u_long *hashmask, int flags);
  157 #define HASH_NOWAIT     0x00000001
  158 #define HASH_WAITOK     0x00000002
  159 
  160 void    *phashinit(int count, struct malloc_type *type, u_long *nentries);
  161 void    g_waitidle(void);
  162 
  163 void    panic(const char *, ...) __dead2 __printflike(1, 2);
  164 
  165 void    cpu_boot(int);
  166 void    cpu_flush_dcache(void *, size_t);
  167 void    cpu_rootconf(void);
  168 void    critical_enter(void);
  169 void    critical_exit(void);
  170 void    init_param1(void);
  171 void    init_param2(long physpages);
  172 void    init_static_kenv(char *, size_t);
  173 void    tablefull(const char *);
  174 int     kvprintf(char const *, void (*)(int, void*), void *, int,
  175             __va_list) __printflike(1, 0);
  176 void    log(int, const char *, ...) __printflike(2, 3);
  177 void    log_console(struct uio *);
  178 int     printf(const char *, ...) __printflike(1, 2);
  179 int     snprintf(char *, size_t, const char *, ...) __printflike(3, 4);
  180 int     sprintf(char *buf, const char *, ...) __printflike(2, 3);
  181 int     uprintf(const char *, ...) __printflike(1, 2);
  182 int     vprintf(const char *, __va_list) __printflike(1, 0);
  183 int     vsnprintf(char *, size_t, const char *, __va_list) __printflike(3, 0);
  184 int     vsnrprintf(char *, size_t, int, const char *, __va_list) __printflike(4, 0);
  185 int     vsprintf(char *buf, const char *, __va_list) __printflike(2, 0);
  186 int     ttyprintf(struct tty *, const char *, ...) __printflike(2, 3);
  187 int     sscanf(const char *, char const *, ...) __nonnull(1) __nonnull(2);
  188 int     vsscanf(const char *, char const *, __va_list) __nonnull(1) __nonnull(2);
  189 long    strtol(const char *, char **, int) __nonnull(1);
  190 u_long  strtoul(const char *, char **, int) __nonnull(1);
  191 quad_t  strtoq(const char *, char **, int) __nonnull(1);
  192 u_quad_t strtouq(const char *, char **, int) __nonnull(1);
  193 void    tprintf(struct proc *p, int pri, const char *, ...) __printflike(3, 4);
  194 void    hexdump(const void *ptr, int length, const char *hdr, int flags);
  195 #define HD_COLUMN_MASK  0xff
  196 #define HD_DELIM_MASK   0xff00
  197 #define HD_OMIT_COUNT   (1 << 16)
  198 #define HD_OMIT_HEX     (1 << 17)
  199 #define HD_OMIT_CHARS   (1 << 18)
  200 
  201 #define ovbcopy(f, t, l) bcopy((f), (t), (l))
  202 void    bcopy(const void *from, void *to, size_t len) __nonnull(1) __nonnull(2);
  203 void    bzero(void *buf, size_t len) __nonnull(1);
  204 
  205 void    *memcpy(void *to, const void *from, size_t len) __nonnull(1) __nonnull(2);
  206 void    *memmove(void *dest, const void *src, size_t n) __nonnull(1) __nonnull(2);
  207 
  208 int     copystr(const void * __restrict kfaddr, void * __restrict kdaddr,
  209             size_t len, size_t * __restrict lencopied)
  210             __nonnull(1) __nonnull(2);
  211 int     copyinstr(const void * __restrict udaddr, void * __restrict kaddr,
  212             size_t len, size_t * __restrict lencopied)
  213             __nonnull(1) __nonnull(2);
  214 int     copyin(const void * __restrict udaddr, void * __restrict kaddr,
  215             size_t len) __nonnull(1) __nonnull(2);
  216 int     copyin_nofault(const void * __restrict udaddr, void * __restrict kaddr,
  217             size_t len) __nonnull(1) __nonnull(2);
  218 int     copyout(const void * __restrict kaddr, void * __restrict udaddr,
  219             size_t len) __nonnull(1) __nonnull(2);
  220 int     copyout_nofault(const void * __restrict kaddr, void * __restrict udaddr,
  221             size_t len) __nonnull(1) __nonnull(2);
  222 
  223 int     fubyte(const void *base);
  224 long    fuword(const void *base);
  225 int     fuword16(void *base);
  226 int32_t fuword32(const void *base);
  227 int64_t fuword64(const void *base);
  228 int     subyte(void *base, int byte);
  229 int     suword(void *base, long word);
  230 int     suword16(void *base, int word);
  231 int     suword32(void *base, int32_t word);
  232 int     suword64(void *base, int64_t word);
  233 uint32_t casuword32(volatile uint32_t *base, uint32_t oldval, uint32_t newval);
  234 u_long   casuword(volatile u_long *p, u_long oldval, u_long newval);
  235 
  236 void    realitexpire(void *);
  237 
  238 int     sysbeep(int hertz, int period);
  239 
  240 void    hardclock(int usermode, uintfptr_t pc);
  241 void    hardclock_anycpu(int cnt, int usermode);
  242 void    hardclock_cpu(int usermode);
  243 void    hardclock_sync(int cpu);
  244 void    softclock(void *);
  245 void    statclock(int usermode);
  246 void    profclock(int usermode, uintfptr_t pc);
  247 
  248 int     hardclockintr(void);
  249 
  250 void    startprofclock(struct proc *);
  251 void    stopprofclock(struct proc *);
  252 void    cpu_startprofclock(void);
  253 void    cpu_stopprofclock(void);
  254 void    cpu_idleclock(void);
  255 void    cpu_activeclock(void);
  256 extern int      cpu_can_deep_sleep;
  257 extern int      cpu_disable_deep_sleep;
  258 
  259 int     cr_cansee(struct ucred *u1, struct ucred *u2);
  260 int     cr_canseesocket(struct ucred *cred, struct socket *so);
  261 int     cr_canseeinpcb(struct ucred *cred, struct inpcb *inp);
  262 
  263 char    *getenv(const char *name);
  264 void    freeenv(char *env);
  265 int     getenv_int(const char *name, int *data);
  266 int     getenv_uint(const char *name, unsigned int *data);
  267 int     getenv_long(const char *name, long *data);
  268 int     getenv_ulong(const char *name, unsigned long *data);
  269 int     getenv_string(const char *name, char *data, int size);
  270 int     getenv_quad(const char *name, quad_t *data);
  271 int     setenv(const char *name, const char *value);
  272 int     unsetenv(const char *name);
  273 int     testenv(const char *name);
  274 
  275 typedef uint64_t (cpu_tick_f)(void);
  276 void set_cputicker(cpu_tick_f *func, uint64_t freq, unsigned var);
  277 extern cpu_tick_f *cpu_ticks;
  278 uint64_t cpu_tickrate(void);
  279 uint64_t cputick2usec(uint64_t tick);
  280 
  281 #ifdef APM_FIXUP_CALLTODO
  282 struct timeval;
  283 void    adjust_timeout_calltodo(struct timeval *time_change);
  284 #endif /* APM_FIXUP_CALLTODO */
  285 
  286 #include <sys/libkern.h>
  287 
  288 /* Initialize the world */
  289 void    consinit(void);
  290 void    cpu_initclocks(void);
  291 void    cpu_initclocks_bsp(void);
  292 void    cpu_initclocks_ap(void);
  293 void    usrinfoinit(void);
  294 
  295 /* Finalize the world */
  296 void    kern_reboot(int) __dead2;
  297 void    shutdown_nice(int);
  298 
  299 /* Timeouts */
  300 typedef void timeout_t(void *); /* timeout function type */
  301 #define CALLOUT_HANDLE_INITIALIZER(handle)      \
  302         { NULL }
  303 
  304 void    callout_handle_init(struct callout_handle *);
  305 struct  callout_handle timeout(timeout_t *, void *, int);
  306 void    untimeout(timeout_t *, void *, struct callout_handle);
  307 caddr_t kern_timeout_callwheel_alloc(caddr_t v);
  308 void    kern_timeout_callwheel_init(void);
  309 
  310 /* Stubs for obsolete functions that used to be for interrupt management */
  311 static __inline void            spl0(void)              { return; }
  312 static __inline intrmask_t      splbio(void)            { return 0; }
  313 static __inline intrmask_t      splcam(void)            { return 0; }
  314 static __inline intrmask_t      splclock(void)          { return 0; }
  315 static __inline intrmask_t      splhigh(void)           { return 0; }
  316 static __inline intrmask_t      splimp(void)            { return 0; }
  317 static __inline intrmask_t      splnet(void)            { return 0; }
  318 static __inline intrmask_t      splsoftcam(void)        { return 0; }
  319 static __inline intrmask_t      splsoftclock(void)      { return 0; }
  320 static __inline intrmask_t      splsofttty(void)        { return 0; }
  321 static __inline intrmask_t      splsoftvm(void)         { return 0; }
  322 static __inline intrmask_t      splsofttq(void)         { return 0; }
  323 static __inline intrmask_t      splstatclock(void)      { return 0; }
  324 static __inline intrmask_t      spltty(void)            { return 0; }
  325 static __inline intrmask_t      splvm(void)             { return 0; }
  326 static __inline void            splx(intrmask_t ipl __unused)   { return; }
  327 
  328 /*
  329  * Common `proc' functions are declared here so that proc.h can be included
  330  * less often.
  331  */
  332 int     _sleep(void *chan, struct lock_object *lock, int pri, const char *wmesg,
  333             int timo) __nonnull(1);
  334 #define msleep(chan, mtx, pri, wmesg, timo)                             \
  335         _sleep((chan), &(mtx)->lock_object, (pri), (wmesg), (timo))
  336 int     msleep_spin(void *chan, struct mtx *mtx, const char *wmesg, int timo)
  337             __nonnull(1);
  338 int     pause(const char *wmesg, int timo);
  339 #define tsleep(chan, pri, wmesg, timo)                                  \
  340         _sleep((chan), NULL, (pri), (wmesg), (timo))
  341 void    wakeup(void *chan) __nonnull(1);
  342 void    wakeup_one(void *chan) __nonnull(1);
  343 
  344 /*
  345  * Common `struct cdev *' stuff are declared here to avoid #include poisoning
  346  */
  347 
  348 struct cdev;
  349 dev_t dev2udev(struct cdev *x);
  350 const char *devtoname(struct cdev *cdev);
  351 
  352 int poll_no_poll(int events);
  353 
  354 /* XXX: Should be void nanodelay(u_int nsec); */
  355 void    DELAY(int usec);
  356 
  357 /* Root mount holdback API */
  358 struct root_hold_token;
  359 
  360 struct root_hold_token *root_mount_hold(const char *identifier);
  361 void root_mount_rel(struct root_hold_token *h);
  362 void root_mount_wait(void);
  363 int root_mounted(void);
  364 
  365 
  366 /*
  367  * Unit number allocation API. (kern/subr_unit.c)
  368  */
  369 struct unrhdr;
  370 struct unrhdr *new_unrhdr(int low, int high, struct mtx *mutex);
  371 void delete_unrhdr(struct unrhdr *uh);
  372 void clean_unrhdr(struct unrhdr *uh);
  373 void clean_unrhdrl(struct unrhdr *uh);
  374 int alloc_unr(struct unrhdr *uh);
  375 int alloc_unr_specific(struct unrhdr *uh, u_int item);
  376 int alloc_unrl(struct unrhdr *uh);
  377 void free_unr(struct unrhdr *uh, u_int item);
  378 
  379 /*
  380  * Population count algorithm using SWAR approach
  381  * - "SIMD Within A Register".
  382  */
  383 static __inline uint32_t
  384 bitcount32(uint32_t x)
  385 {
  386 
  387         x = (x & 0x55555555) + ((x & 0xaaaaaaaa) >> 1);
  388         x = (x & 0x33333333) + ((x & 0xcccccccc) >> 2);
  389         x = (x + (x >> 4)) & 0x0f0f0f0f;
  390         x = (x + (x >> 8));
  391         x = (x + (x >> 16)) & 0x000000ff;
  392         return (x);
  393 }
  394 
  395 static __inline uint16_t
  396 bitcount16(uint32_t x)
  397 {
  398 
  399         x = (x & 0x5555) + ((x & 0xaaaa) >> 1);
  400         x = (x & 0x3333) + ((x & 0xcccc) >> 2);
  401         x = (x + (x >> 4)) & 0x0f0f;
  402         x = (x + (x >> 8)) & 0x00ff;
  403         return (x);
  404 }
  405 
  406 #endif /* !_SYS_SYSTM_H_ */

Cache object: 15f96b8208da553c0b4bb57b2b4d1e21


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.