Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 6 Aug 2010 15:36:59 +0000 (UTC)
From:      John Baldwin <jhb@FreeBSD.org>
To:        cvs-src-old@freebsd.org
Subject:   cvs commit: src/sys/amd64/amd64 mp_machdep.c src/sys/amd64/include smp.h src/sys/i386/i386 mp_machdep.c src/sys/i386/include smp.h src/sys/i386/xen mp_machdep.c src/sys/ia64/ia64 mp_machdep.c src/sys/ia64/include smp.h src/sys/kern sched_4bsd.c sched_ule.c ...
Message-ID:  <201008061538.o76FcEJI006856@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
jhb         2010-08-06 15:36:59 UTC

  FreeBSD src repository

  Modified files:
    sys/amd64/amd64      mp_machdep.c 
    sys/amd64/include    smp.h 
    sys/i386/i386        mp_machdep.c 
    sys/i386/include     smp.h 
    sys/i386/xen         mp_machdep.c 
    sys/ia64/ia64        mp_machdep.c 
    sys/ia64/include     smp.h 
    sys/kern             sched_4bsd.c sched_ule.c subr_smp.c 
    sys/mips/include     smp.h 
    sys/mips/mips        mp_machdep.c 
    sys/powerpc/include  smp.h 
    sys/powerpc/powerpc  mp_machdep.c 
    sys/sparc64/include  smp.h 
    sys/sun4v/include    smp.h 
    sys/sun4v/sun4v      mp_machdep.c 
  Log:
  SVN rev 210939 on 2010-08-06 15:36:59Z by jhb
  
  Add a new ipi_cpu() function to the MI IPI API that can be used to send an
  IPI to a specific CPU by its cpuid.  Replace calls to ipi_selected() that
  constructed a mask for a single CPU with calls to ipi_cpu() instead.  This
  will matter more in the future when we transition from cpumask_t to
  cpuset_t for CPU masks in which case building a CPU mask is more expensive.
  
  Submitted by:   peter, sbruno
  Reviewed by:    rookie
  Obtained from:  Yahoo! (x86)
  MFC after:      1 month
  
  Revision  Changes    Path
  1.322     +39 -3     src/sys/amd64/amd64/mp_machdep.c
  1.99      +3 -2      src/sys/amd64/include/smp.h
  1.310     +39 -3     src/sys/i386/i386/mp_machdep.c
  1.101     +3 -2      src/sys/i386/include/smp.h
  1.26      +41 -7     src/sys/i386/xen/mp_machdep.c
  1.87      +10 -0     src/sys/ia64/ia64/mp_machdep.c
  1.14      +1 -0      src/sys/ia64/include/smp.h
  1.140     +4 -4      src/sys/kern/sched_4bsd.c
  1.272     +3 -3      src/sys/kern/sched_ule.c
  1.220     +1 -1      src/sys/kern/subr_smp.c
  1.8       +1 -0      src/sys/mips/include/smp.h
  1.15      +9 -0      src/sys/mips/mips/mp_machdep.c
  1.9       +1 -0      src/sys/powerpc/include/smp.h
  1.29      +8 -0      src/sys/powerpc/powerpc/mp_machdep.c
  1.30      +11 -0     src/sys/sparc64/include/smp.h
  1.9       +2 -1      src/sys/sun4v/include/smp.h
  1.14      +26 -4     src/sys/sun4v/sun4v/mp_machdep.c



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201008061538.o76FcEJI006856>