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/10.1/sys/sys/systm.h 266347 2014-05-17 20:10:12Z ian $
   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 compiler_version[]; /* compiler version */
   53 extern char copyright[];        /* system copyright */
   54 extern int kstack_pages;        /* number of kernel stack pages */
   55 
   56 extern u_long pagesizes[];      /* supported page sizes */
   57 extern long physmem;            /* physical memory */
   58 extern long realmem;            /* 'real' memory */
   59 
   60 extern char *rootdevnames[2];   /* names of possible root devices */
   61 
   62 extern int boothowto;           /* reboot flags, from console subsystem */
   63 extern int bootverbose;         /* nonzero to print verbose messages */
   64 
   65 extern int maxusers;            /* system tune hint */
   66 extern int ngroups_max;         /* max # of supplemental groups */
   67 extern int vm_guest;            /* Running as virtual machine guest? */
   68 
   69 /*
   70  * Detected virtual machine guest types. The intention is to expand
   71  * and/or add to the VM_GUEST_VM type if specific VM functionality is
   72  * ever implemented (e.g. vendor-specific paravirtualization features).
   73  * Keep in sync with vm_guest_sysctl_names[].
   74  */
   75 enum VM_GUEST { VM_GUEST_NO = 0, VM_GUEST_VM, VM_GUEST_XEN, VM_GUEST_HV,
   76                 VM_LAST };
   77 
   78 #if defined(WITNESS) || defined(INVARIANTS)
   79 void    kassert_panic(const char *fmt, ...)  __printflike(1, 2);
   80 #endif
   81 
   82 #ifdef  INVARIANTS              /* The option is always available */
   83 #define KASSERT(exp,msg) do {                                           \
   84         if (__predict_false(!(exp)))                                    \
   85                 kassert_panic msg;                                              \
   86 } while (0)
   87 #define VNASSERT(exp, vp, msg) do {                                     \
   88         if (__predict_false(!(exp))) {                                  \
   89                 vn_printf(vp, "VNASSERT failed\n");                     \
   90                 kassert_panic msg;                                              \
   91         }                                                               \
   92 } while (0)
   93 #else
   94 #define KASSERT(exp,msg) do { \
   95 } while (0)
   96 
   97 #define VNASSERT(exp, vp, msg) do { \
   98 } while (0)
   99 #endif
  100 
  101 #ifndef CTASSERT        /* Allow lint to override */
  102 #define CTASSERT(x)     _Static_assert(x, "compile-time assertion failed")
  103 #endif
  104 
  105 /*
  106  * Assert that a pointer can be loaded from memory atomically.
  107  *
  108  * This assertion enforces stronger alignment than necessary.  For example,
  109  * on some architectures, atomicity for unaligned loads will depend on
  110  * whether or not the load spans multiple cache lines.
  111  */
  112 #define ASSERT_ATOMIC_LOAD_PTR(var, msg)                                \
  113         KASSERT(sizeof(var) == sizeof(void *) &&                        \
  114             ((uintptr_t)&(var) & (sizeof(void *) - 1)) == 0, msg)
  115 
  116 /*
  117  * Assert that a thread is in critical(9) section.
  118  */
  119 #define CRITICAL_ASSERT(td)                                             \
  120         KASSERT((td)->td_critnest >= 1, ("Not in critical section"));
  121  
  122 /*
  123  * If we have already panic'd and this is the thread that called
  124  * panic(), then don't block on any mutexes but silently succeed.
  125  * Otherwise, the kernel will deadlock since the scheduler isn't
  126  * going to run the thread that holds any lock we need.
  127  */
  128 #define SCHEDULER_STOPPED() __predict_false(curthread->td_stopsched)
  129 
  130 /*
  131  * XXX the hints declarations are even more misplaced than most declarations
  132  * in this file, since they are needed in one file (per arch) and only used
  133  * in two files.
  134  * XXX most of these variables should be const.
  135  */
  136 extern int osreldate;
  137 extern int envmode;
  138 extern int hintmode;            /* 0 = off. 1 = config, 2 = fallback */
  139 extern int dynamic_kenv;
  140 extern struct mtx kenv_lock;
  141 extern char *kern_envp;
  142 extern char static_env[];
  143 extern char static_hints[];     /* by config for now */
  144 
  145 extern char **kenvp;
  146 
  147 extern const void *zero_region; /* address space maps to a zeroed page  */
  148 
  149 extern int unmapped_buf_allowed;
  150 extern int iosize_max_clamp;
  151 extern int devfs_iosize_max_clamp;
  152 #define IOSIZE_MAX      (iosize_max_clamp ? INT_MAX : SSIZE_MAX)
  153 #define DEVFS_IOSIZE_MAX        (devfs_iosize_max_clamp ? INT_MAX : SSIZE_MAX)
  154 
  155 /*
  156  * General function declarations.
  157  */
  158 
  159 struct inpcb;
  160 struct lock_object;
  161 struct malloc_type;
  162 struct mtx;
  163 struct proc;
  164 struct socket;
  165 struct thread;
  166 struct tty;
  167 struct ucred;
  168 struct uio;
  169 struct _jmp_buf;
  170 struct trapframe;
  171 struct eventtimer;
  172 
  173 int     setjmp(struct _jmp_buf *) __returns_twice;
  174 void    longjmp(struct _jmp_buf *, int) __dead2;
  175 int     dumpstatus(vm_offset_t addr, off_t count);
  176 int     nullop(void);
  177 int     eopnotsupp(void);
  178 int     ureadc(int, struct uio *);
  179 void    hashdestroy(void *, struct malloc_type *, u_long);
  180 void    *hashinit(int count, struct malloc_type *type, u_long *hashmask);
  181 void    *hashinit_flags(int count, struct malloc_type *type,
  182     u_long *hashmask, int flags);
  183 #define HASH_NOWAIT     0x00000001
  184 #define HASH_WAITOK     0x00000002
  185 
  186 void    *phashinit(int count, struct malloc_type *type, u_long *nentries);
  187 void    g_waitidle(void);
  188 
  189 void    panic(const char *, ...) __dead2 __printflike(1, 2);
  190 
  191 void    cpu_boot(int);
  192 void    cpu_flush_dcache(void *, size_t);
  193 void    cpu_rootconf(void);
  194 void    critical_enter(void);
  195 void    critical_exit(void);
  196 void    init_param1(void);
  197 void    init_param2(long physpages);
  198 void    init_static_kenv(char *, size_t);
  199 void    tablefull(const char *);
  200 #ifdef  EARLY_PRINTF
  201 typedef void early_putc_t(int ch);
  202 extern early_putc_t *early_putc;
  203 #endif
  204 int     kvprintf(char const *, void (*)(int, void*), void *, int,
  205             __va_list) __printflike(1, 0);
  206 void    log(int, const char *, ...) __printflike(2, 3);
  207 void    log_console(struct uio *);
  208 int     printf(const char *, ...) __printflike(1, 2);
  209 int     snprintf(char *, size_t, const char *, ...) __printflike(3, 4);
  210 int     sprintf(char *buf, const char *, ...) __printflike(2, 3);
  211 int     uprintf(const char *, ...) __printflike(1, 2);
  212 int     vprintf(const char *, __va_list) __printflike(1, 0);
  213 int     vsnprintf(char *, size_t, const char *, __va_list) __printflike(3, 0);
  214 int     vsnrprintf(char *, size_t, int, const char *, __va_list) __printflike(4, 0);
  215 int     vsprintf(char *buf, const char *, __va_list) __printflike(2, 0);
  216 int     ttyprintf(struct tty *, const char *, ...) __printflike(2, 3);
  217 int     sscanf(const char *, char const *, ...) __nonnull(1) __nonnull(2);
  218 int     vsscanf(const char *, char const *, __va_list) __nonnull(1) __nonnull(2);
  219 long    strtol(const char *, char **, int) __nonnull(1);
  220 u_long  strtoul(const char *, char **, int) __nonnull(1);
  221 quad_t  strtoq(const char *, char **, int) __nonnull(1);
  222 u_quad_t strtouq(const char *, char **, int) __nonnull(1);
  223 void    tprintf(struct proc *p, int pri, const char *, ...) __printflike(3, 4);
  224 void    vtprintf(struct proc *, int, const char *, __va_list) __printflike(3, 0);
  225 void    hexdump(const void *ptr, int length, const char *hdr, int flags);
  226 #define HD_COLUMN_MASK  0xff
  227 #define HD_DELIM_MASK   0xff00
  228 #define HD_OMIT_COUNT   (1 << 16)
  229 #define HD_OMIT_HEX     (1 << 17)
  230 #define HD_OMIT_CHARS   (1 << 18)
  231 
  232 #define ovbcopy(f, t, l) bcopy((f), (t), (l))
  233 void    bcopy(const void *from, void *to, size_t len) __nonnull(1) __nonnull(2);
  234 void    bzero(void *buf, size_t len) __nonnull(1);
  235 
  236 void    *memcpy(void *to, const void *from, size_t len) __nonnull(1) __nonnull(2);
  237 void    *memmove(void *dest, const void *src, size_t n) __nonnull(1) __nonnull(2);
  238 
  239 int     copystr(const void * __restrict kfaddr, void * __restrict kdaddr,
  240             size_t len, size_t * __restrict lencopied)
  241             __nonnull(1) __nonnull(2);
  242 int     copyinstr(const void * __restrict udaddr, void * __restrict kaddr,
  243             size_t len, size_t * __restrict lencopied)
  244             __nonnull(1) __nonnull(2);
  245 int     copyin(const void * __restrict udaddr, void * __restrict kaddr,
  246             size_t len) __nonnull(1) __nonnull(2);
  247 int     copyin_nofault(const void * __restrict udaddr, void * __restrict kaddr,
  248             size_t len) __nonnull(1) __nonnull(2);
  249 int     copyout(const void * __restrict kaddr, void * __restrict udaddr,
  250             size_t len) __nonnull(1) __nonnull(2);
  251 int     copyout_nofault(const void * __restrict kaddr, void * __restrict udaddr,
  252             size_t len) __nonnull(1) __nonnull(2);
  253 
  254 int     fubyte(const void *base);
  255 long    fuword(const void *base);
  256 int     fuword16(void *base);
  257 int32_t fuword32(const void *base);
  258 int64_t fuword64(const void *base);
  259 int     subyte(void *base, int byte);
  260 int     suword(void *base, long word);
  261 int     suword16(void *base, int word);
  262 int     suword32(void *base, int32_t word);
  263 int     suword64(void *base, int64_t word);
  264 uint32_t casuword32(volatile uint32_t *base, uint32_t oldval, uint32_t newval);
  265 u_long   casuword(volatile u_long *p, u_long oldval, u_long newval);
  266 
  267 void    realitexpire(void *);
  268 
  269 int     sysbeep(int hertz, int period);
  270 
  271 void    hardclock(int usermode, uintfptr_t pc);
  272 void    hardclock_cnt(int cnt, int usermode);
  273 void    hardclock_cpu(int usermode);
  274 void    hardclock_sync(int cpu);
  275 void    softclock(void *);
  276 void    statclock(int usermode);
  277 void    statclock_cnt(int cnt, int usermode);
  278 void    profclock(int usermode, uintfptr_t pc);
  279 void    profclock_cnt(int cnt, int usermode, uintfptr_t pc);
  280 
  281 int     hardclockintr(void);
  282 
  283 void    startprofclock(struct proc *);
  284 void    stopprofclock(struct proc *);
  285 void    cpu_startprofclock(void);
  286 void    cpu_stopprofclock(void);
  287 sbintime_t      cpu_idleclock(void);
  288 void    cpu_activeclock(void);
  289 void    cpu_new_callout(int cpu, sbintime_t bt, sbintime_t bt_opt);
  290 void    cpu_et_frequency(struct eventtimer *et, uint64_t newfreq);
  291 extern int      cpu_can_deep_sleep;
  292 extern int      cpu_disable_deep_sleep;
  293 
  294 int     cr_cansee(struct ucred *u1, struct ucred *u2);
  295 int     cr_canseesocket(struct ucred *cred, struct socket *so);
  296 int     cr_canseeinpcb(struct ucred *cred, struct inpcb *inp);
  297 
  298 char    *getenv(const char *name);
  299 void    freeenv(char *env);
  300 int     getenv_int(const char *name, int *data);
  301 int     getenv_uint(const char *name, unsigned int *data);
  302 int     getenv_long(const char *name, long *data);
  303 int     getenv_ulong(const char *name, unsigned long *data);
  304 int     getenv_string(const char *name, char *data, int size);
  305 int     getenv_quad(const char *name, quad_t *data);
  306 int     setenv(const char *name, const char *value);
  307 int     unsetenv(const char *name);
  308 int     testenv(const char *name);
  309 
  310 typedef uint64_t (cpu_tick_f)(void);
  311 void set_cputicker(cpu_tick_f *func, uint64_t freq, unsigned var);
  312 extern cpu_tick_f *cpu_ticks;
  313 uint64_t cpu_tickrate(void);
  314 uint64_t cputick2usec(uint64_t tick);
  315 
  316 #ifdef APM_FIXUP_CALLTODO
  317 struct timeval;
  318 void    adjust_timeout_calltodo(struct timeval *time_change);
  319 #endif /* APM_FIXUP_CALLTODO */
  320 
  321 #include <sys/libkern.h>
  322 
  323 /* Initialize the world */
  324 void    consinit(void);
  325 void    cpu_initclocks(void);
  326 void    cpu_initclocks_bsp(void);
  327 void    cpu_initclocks_ap(void);
  328 void    usrinfoinit(void);
  329 
  330 /* Finalize the world */
  331 void    kern_reboot(int) __dead2;
  332 void    shutdown_nice(int);
  333 
  334 /* Timeouts */
  335 typedef void timeout_t(void *); /* timeout function type */
  336 #define CALLOUT_HANDLE_INITIALIZER(handle)      \
  337         { NULL }
  338 
  339 void    callout_handle_init(struct callout_handle *);
  340 struct  callout_handle timeout(timeout_t *, void *, int);
  341 void    untimeout(timeout_t *, void *, struct callout_handle);
  342 
  343 /* Stubs for obsolete functions that used to be for interrupt management */
  344 static __inline intrmask_t      splbio(void)            { return 0; }
  345 static __inline intrmask_t      splcam(void)            { return 0; }
  346 static __inline intrmask_t      splclock(void)          { return 0; }
  347 static __inline intrmask_t      splhigh(void)           { return 0; }
  348 static __inline intrmask_t      splimp(void)            { return 0; }
  349 static __inline intrmask_t      splnet(void)            { return 0; }
  350 static __inline intrmask_t      spltty(void)            { return 0; }
  351 static __inline intrmask_t      splvm(void)             { return 0; }
  352 static __inline void            splx(intrmask_t ipl __unused)   { return; }
  353 
  354 /*
  355  * Common `proc' functions are declared here so that proc.h can be included
  356  * less often.
  357  */
  358 int     _sleep(void *chan, struct lock_object *lock, int pri, const char *wmesg,
  359            sbintime_t sbt, sbintime_t pr, int flags) __nonnull(1);
  360 #define msleep(chan, mtx, pri, wmesg, timo)                             \
  361         _sleep((chan), &(mtx)->lock_object, (pri), (wmesg),             \
  362             tick_sbt * (timo), 0, C_HARDCLOCK)
  363 #define msleep_sbt(chan, mtx, pri, wmesg, bt, pr, flags)                \
  364         _sleep((chan), &(mtx)->lock_object, (pri), (wmesg), (bt), (pr), \
  365             (flags))
  366 int     msleep_spin_sbt(void *chan, struct mtx *mtx, const char *wmesg,
  367             sbintime_t sbt, sbintime_t pr, int flags) __nonnull(1);
  368 #define msleep_spin(chan, mtx, wmesg, timo)                             \
  369         msleep_spin_sbt((chan), (mtx), (wmesg), tick_sbt * (timo),      \
  370             0, C_HARDCLOCK)
  371 int     pause_sbt(const char *wmesg, sbintime_t sbt, sbintime_t pr,
  372             int flags);
  373 #define pause(wmesg, timo)                                              \
  374         pause_sbt((wmesg), tick_sbt * (timo), 0, C_HARDCLOCK)
  375 #define tsleep(chan, pri, wmesg, timo)                                  \
  376         _sleep((chan), NULL, (pri), (wmesg), tick_sbt * (timo),         \
  377             0, C_HARDCLOCK)
  378 #define tsleep_sbt(chan, pri, wmesg, bt, pr, flags)                     \
  379         _sleep((chan), NULL, (pri), (wmesg), (bt), (pr), (flags))
  380 void    wakeup(void *chan) __nonnull(1);
  381 void    wakeup_one(void *chan) __nonnull(1);
  382 
  383 /*
  384  * Common `struct cdev *' stuff are declared here to avoid #include poisoning
  385  */
  386 
  387 struct cdev;
  388 dev_t dev2udev(struct cdev *x);
  389 const char *devtoname(struct cdev *cdev);
  390 
  391 int poll_no_poll(int events);
  392 
  393 /* XXX: Should be void nanodelay(u_int nsec); */
  394 void    DELAY(int usec);
  395 
  396 /* Root mount holdback API */
  397 struct root_hold_token;
  398 
  399 struct root_hold_token *root_mount_hold(const char *identifier);
  400 void root_mount_rel(struct root_hold_token *h);
  401 void root_mount_wait(void);
  402 int root_mounted(void);
  403 
  404 
  405 /*
  406  * Unit number allocation API. (kern/subr_unit.c)
  407  */
  408 struct unrhdr;
  409 struct unrhdr *new_unrhdr(int low, int high, struct mtx *mutex);
  410 void init_unrhdr(struct unrhdr *uh, int low, int high, struct mtx *mutex);
  411 void delete_unrhdr(struct unrhdr *uh);
  412 void clean_unrhdr(struct unrhdr *uh);
  413 void clean_unrhdrl(struct unrhdr *uh);
  414 int alloc_unr(struct unrhdr *uh);
  415 int alloc_unr_specific(struct unrhdr *uh, u_int item);
  416 int alloc_unrl(struct unrhdr *uh);
  417 void free_unr(struct unrhdr *uh, u_int item);
  418 
  419 /*
  420  * Population count algorithm using SWAR approach
  421  * - "SIMD Within A Register".
  422  */
  423 static __inline uint32_t
  424 bitcount32(uint32_t x)
  425 {
  426 
  427         x = (x & 0x55555555) + ((x & 0xaaaaaaaa) >> 1);
  428         x = (x & 0x33333333) + ((x & 0xcccccccc) >> 2);
  429         x = (x + (x >> 4)) & 0x0f0f0f0f;
  430         x = (x + (x >> 8));
  431         x = (x + (x >> 16)) & 0x000000ff;
  432         return (x);
  433 }
  434 
  435 static __inline uint16_t
  436 bitcount16(uint32_t x)
  437 {
  438 
  439         x = (x & 0x5555) + ((x & 0xaaaa) >> 1);
  440         x = (x & 0x3333) + ((x & 0xcccc) >> 2);
  441         x = (x + (x >> 4)) & 0x0f0f;
  442         x = (x + (x >> 8)) & 0x00ff;
  443         return (x);
  444 }
  445 
  446 #endif /* !_SYS_SYSTM_H_ */

Cache object: 52bb55a0a68b6b99e91c735f5e8374c8


[ 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.