DragonFly BSD
DragonFly commits List (threaded) for 2003-07
[Date Prev][Date Next]  [Thread Prev][Thread Next]  [Date Index][Thread Index]

cvs commit: src/sys/kern lwkt_thread.c


From: Matthew Dillon <dillon@xxxxxxxxxxxxxxxxxxxxxxx>
Date: Thu, 24 Jul 2003 22:51:19 -0700 (PDT)

dillon      2003/07/24 22:51:19 PDT

  Modified files:
    sys/kern             lwkt_thread.c 
  Log:
  Performance cleanup.  Greatly reduce the number of %fs prefixed globaldata
  lookups by taking advantage of the fact that DragonFly does not preemptively
  switch threads to other cpus to cache the globaldata pointer, to pass the
  current thread to certain inlines rather then force them to reload it from
  %fs, and to use td->td_gd to access the globaldata pointer when td is
  available rather then mycpu.
  
  This coupled with the curthread optimization done in a prior commit improved
  syscall overheads by 60-100ns (about 7%).
  
  Revision  Changes    Path
  1.28      +5 -4      src/sys/kern/lwkt_thread.c




[Date Prev][Date Next]  [Thread Prev][Thread Next]  [Date Index][Thread Index]