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/pcpu.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) 2001 Wind River Systems, Inc.
    3  * All rights reserved.
    4  * Written by: John Baldwin <jhb@FreeBSD.org>
    5  *
    6  * Redistribution and use in source and binary forms, with or without
    7  * modification, are permitted provided that the following conditions
    8  * are met:
    9  * 1. Redistributions of source code must retain the above copyright
   10  *    notice, this list of conditions and the following disclaimer.
   11  * 2. Redistributions in binary form must reproduce the above copyright
   12  *    notice, this list of conditions and the following disclaimer in the
   13  *    documentation and/or other materials provided with the distribution.
   14  * 4. Neither the name of the author nor the names of any co-contributors
   15  *    may be used to endorse or promote products derived from this software
   16  *    without specific prior written permission.
   17  *
   18  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
   19  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   20  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
   21  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
   22  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
   23  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
   24  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
   25  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
   26  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
   27  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
   28  * SUCH DAMAGE.
   29  *
   30  * $FreeBSD: src/sys/sys/pcpu.h,v 1.13.2.2 2005/06/10 08:47:05 rwatson Exp $
   31  */
   32 
   33 #ifndef _SYS_PCPU_H_
   34 #define _SYS_PCPU_H_
   35 
   36 #ifndef _KERNEL
   37 #error "no user-serviceable parts inside"
   38 #endif
   39 
   40 #ifdef LOCORE
   41 #error "no assembler-serviceable parts inside"
   42 #endif
   43 
   44 #include <sys/queue.h>
   45 #include <sys/vmmeter.h>
   46 #include <machine/pcpu.h>
   47 
   48 struct pcb;
   49 struct thread;
   50 
   51 /*
   52  * This structure maps out the global data that needs to be kept on a
   53  * per-cpu basis.  The members are accessed via the PCPU_GET/SET/PTR
   54  * macros defined in <machine/pcpu.h>.  Machine dependent fields are
   55  * defined in the PCPU_MD_FIELDS macro defined in <machine/pcpu.h>.
   56  */
   57 struct pcpu {
   58         struct thread   *pc_curthread;          /* Current thread */
   59         struct thread   *pc_idlethread;         /* Idle thread */
   60         struct thread   *pc_fpcurthread;        /* Fp state owner */
   61         struct thread   *pc_deadthread;         /* Zombie thread or NULL */
   62         struct pcb      *pc_curpcb;             /* Current pcb */
   63         struct bintime  pc_switchtime;  
   64         int             pc_switchticks;
   65         u_int           pc_cpuid;               /* This cpu number */
   66         cpumask_t       pc_cpumask;             /* This cpu mask */
   67         cpumask_t       pc_other_cpus;          /* Mask of all other cpus */
   68         SLIST_ENTRY(pcpu) pc_allcpu;
   69         struct lock_list_entry *pc_spinlocks;
   70 #ifdef KTR_PERCPU
   71         int             pc_ktr_idx;             /* Index into trace table */
   72         char            *pc_ktr_buf;
   73 #endif
   74         PCPU_MD_FIELDS;
   75         struct vmmeter  pc_cnt;                 /* VM stats counters */
   76         struct device   *pc_device;
   77 };
   78 
   79 SLIST_HEAD(cpuhead, pcpu);
   80 
   81 extern struct cpuhead cpuhead;
   82 
   83 #define CURPROC         (curthread->td_proc)
   84 #define curcpu          PCPU_GET(cpuid)
   85 #define curkse          (curthread->td_kse)
   86 #define curksegrp       (curthread->td_ksegrp)
   87 #define curproc         (curthread->td_proc)
   88 #ifndef curthread
   89 #define curthread       PCPU_GET(curthread)
   90 #endif
   91 
   92 /*
   93  * MI PCPU support functions
   94  *
   95  * PCPU_LAZY_INC() -    Lazily increment a per-cpu stats counter, without
   96  *                      guarenteeing atomicity or even necessarily consistency.
   97  *
   98  *                      XXX we need to create MD primitives to support
   99  *                      this to guarentee at least some level of consistency,
  100  *                      i.e., to prevent us from totally corrupting the 
  101  *                      counters due to preemption in a multi-instruction
  102  *                      increment sequence for architectures that do not
  103  *                      support single-instruction memory increments.
  104  */
  105 #define PCPU_LAZY_INC(var)      (++*PCPU_PTR(var))
  106 
  107 /*
  108  * Machine dependent callouts.  cpu_pcpu_init() is responsible for
  109  * initializing machine dependent fields of struct pcpu, and
  110  * db_show_mdpcpu() is responsible for handling machine dependent
  111  * fields for the DDB 'show pcpu' command.
  112  */
  113 void    cpu_pcpu_init(struct pcpu *pcpu, int cpuid, size_t size);
  114 void    db_show_mdpcpu(struct pcpu *pcpu);
  115 
  116 void    pcpu_destroy(struct pcpu *pcpu);
  117 struct  pcpu *pcpu_find(u_int cpuid);
  118 void    pcpu_init(struct pcpu *pcpu, int cpuid, size_t size);
  119 
  120 #endif /* !_SYS_PCPU_H_ */

Cache object: 879a56d4a03e78eb1269ee76f1f4ea74


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