Jack F Vogel | 1 Jun 2007 01:36
Picon
Favicon

cvs commit: src/sys/dev/em if_em.c

jfv         2007-05-31 23:36:21 UTC

  FreeBSD src repository

  Modified files:
    sys/dev/em           if_em.c 
  Log:
  Couple of the fixes needed revising. The ICH8 autoneg was still broken,
  this change both simplifies the code and plugs a hole where the devise
  was reset without keeping the management controller at bay :) Second,
  the 82571 LAA reset problem was incomplete, this addition is necessary.
  Just one of those days :)

  Revision  Changes    Path
  1.181     +14 -15    src/sys/dev/em/if_em.c
_______________________________________________
cvs-src <at> freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-src
To unsubscribe, send any mail to "cvs-src-unsubscribe <at> freebsd.org"

Hidetoshi Shimokawa | 1 Jun 2007 02:23
Picon
Favicon

cvs commit: src/sys/modules/dcons Makefile

simokawa    2007-06-01 00:23:34 UTC

  FreeBSD src repository

  Modified files:
    sys/modules/dcons    Makefile 
  Log:
  Fix a breakage with "MODULES_WITH_WORLD=true make buildworld".

  PR: kern/11320

  Revision  Changes    Path
  1.5       +5 -2      src/sys/modules/dcons/Makefile
_______________________________________________
cvs-src <at> freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-src
To unsubscribe, send any mail to "cvs-src-unsubscribe <at> freebsd.org"

Hidetoshi Shimokawa | 1 Jun 2007 02:50
Picon
Favicon

cvs commit: src/sys/modules/dcons Makefile

simokawa    2007-06-01 00:50:59 UTC

  FreeBSD src repository

  Modified files:        (Branch: RELENG_6)
    sys/modules/dcons    Makefile 
  Log:
  Fix a breakage with "MODULES_WITH_WORLD=true make buildworld".

  PR: kern/113204

  Revision  Changes    Path
  1.3.2.2   +5 -2      src/sys/modules/dcons/Makefile
_______________________________________________
cvs-src <at> freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-src
To unsubscribe, send any mail to "cvs-src-unsubscribe <at> freebsd.org"

Jeff Roberson | 1 Jun 2007 03:12
Picon
Favicon

cvs commit: src/sys/gnu/fs/ext2fs ext2_bmap.c src/sys/kern init_main.c kern_acct.c kern_clock.c kern_exit.c kern_fork.c kern_proc.c kern_resource.c kern_sig.c kern_synch.c kern_thread.c subr_trap.c uipc_socket.c vfs_aio.c vfs_bio.c vfs_cluster.c ...

jeff        2007-06-01 01:12:45 UTC

  FreeBSD src repository

  Modified files:
    sys/gnu/fs/ext2fs    ext2_bmap.c 
    sys/kern             init_main.c kern_acct.c kern_clock.c 
                         kern_exit.c kern_fork.c kern_proc.c 
                         kern_resource.c kern_sig.c kern_synch.c 
                         kern_thread.c subr_trap.c uipc_socket.c 
                         vfs_aio.c vfs_bio.c vfs_cluster.c 
    sys/netinet          sctp_output.c 
    sys/nfs4client       nfs4_vnops.c 
    sys/nfsclient        nfs_vnops.c 
    sys/sys              proc.h resource.h resourcevar.h 
    sys/ufs/ffs          ffs_inode.c 
    sys/ufs/ufs          ufs_bmap.c 
    sys/vm               vm_fault.c vm_glue.c 
  Log:
   - Move rusage from being per-process in struct pstats to per-thread in
     td_ru.  This removes the requirement for per-process synchronization in
     statclock() and mi_switch().  This was previously supported by
     sched_lock which is going away.  All modifications to rusage are now
     done in the context of the owning thread.  reads proceed without locks.
   - Aggregate exiting threads rusage in thread_exit() such that the exiting
     thread's rusage is not lost.
   - Provide a new routine, rufetch() to fetch an aggregate of all rusage
     structures from all threads in a process.  This routine must be used
     in any place requiring a rusage from a process prior to it's exit.  The
     exited process's rusage is still available via p_ru.
(Continue reading)

Hidetoshi Shimokawa | 1 Jun 2007 02:53
Picon
Favicon

Re: cvs commit: src/sys/modules/dcons Makefile

On 6/1/07, Hidetoshi Shimokawa <simokawa <at> freebsd.org> wrote:
> simokawa    2007-06-01 00:23:34 UTC
>
>   FreeBSD src repository
>
>   Modified files:
>     sys/modules/dcons    Makefile
>   Log:
>   Fix a breakage with "MODULES_WITH_WORLD=true make buildworld".
>
>   PR: kern/11320

Oops, it should be kern/113204.

--

-- 
/\ Hidetoshi Shimokawa
\/  simokawa <at> FreeBSD.ORG
_______________________________________________
cvs-src <at> freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-src
To unsubscribe, send any mail to "cvs-src-unsubscribe <at> freebsd.org"

Jeff Roberson | 1 Jun 2007 03:20
Picon
Favicon

cvs commit: src/sys/kern kern_resource.c kern_synch.c subr_trap.c

jeff        2007-06-01 01:20:12 UTC

  FreeBSD src repository

  Modified files:
    sys/kern             kern_resource.c kern_synch.c subr_trap.c 
  Log:
  Forced commit to describe changes in the last revision.

   - Move cpu limit handling to a callout that runs once per-second and sums
     up all threads tick times to check for violations.  This removes all code
     from mi_switch() that touches the proc.  This also cleans up ast() a bit
     by removing one large case.

  Revision  Changes    Path
  1.173     +0 -0      src/sys/kern/kern_resource.c
  1.298     +0 -0      src/sys/kern/kern_synch.c
  1.295     +0 -0      src/sys/kern/subr_trap.c
_______________________________________________
cvs-src <at> freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-src
To unsubscribe, send any mail to "cvs-src-unsubscribe <at> freebsd.org"

Yar Tikhiy | 1 Jun 2007 04:02
Picon
Favicon

cvs commit: src/sys/dev/bge if_bge.c

yar         2007-06-01 02:02:39 UTC

  FreeBSD src repository

  Modified files:
    sys/dev/bge          if_bge.c 
  Log:
  Add on/off controls for VLAN_MTU and VLAN_HWTAGGING to bge(4).

  Revision  Changes    Path
  1.196     +41 -2     src/sys/dev/bge/if_bge.c
_______________________________________________
cvs-src <at> freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-src
To unsubscribe, send any mail to "cvs-src-unsubscribe <at> freebsd.org"

David O'Brien | 1 Jun 2007 04:08
Picon
Favicon

Re: cvs commit: src/sys/i386/i386 identcpu.c

On Tue, May 29, 2007 at 07:25:50PM +0000, Dag-Erling Smorgrav wrote:
> des         2007-05-29 19:25:50 UTC
> 
>   FreeBSD src repository
> 
>   Modified files:
>     sys/i386/i386        identcpu.c 
>   Log:
>   Remove a pointless bootverbose message.

Why is this bogus?  Please revert your change.
With a verbose boot, you're told that HTT is cleared incase the user is
confused when they earlier see that HTT is detected.

--

-- 
-- David    (obrien <at> FreeBSD.org)
_______________________________________________
cvs-src <at> freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-src
To unsubscribe, send any mail to "cvs-src-unsubscribe <at> freebsd.org"

Xin LI | 1 Jun 2007 05:11
Picon
Favicon

cvs commit: src/share/man/man9 locking.9

delphij     2007-06-01 03:11:47 UTC

  FreeBSD src repository

  Modified files:
    share/man/man9       locking.9 
  Log:
  Markup fixes.

  Revision  Changes    Path
  1.9       +13 -12    src/share/man/man9/locking.9
_______________________________________________
cvs-src <at> freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-src
To unsubscribe, send any mail to "cvs-src-unsubscribe <at> freebsd.org"

Jeff Roberson | 1 Jun 2007 06:14
Picon
Favicon

cvs commit: src/lib/libkvm kvm_proc.c

jeff        2007-06-01 04:14:58 UTC

  FreeBSD src repository

  Modified files:
    lib/libkvm           kvm_proc.c 
  Log:
   - Work-around the already partially broken rusage support in kvm by
     completely disabling it until a full solution is agreed upon.

  Pointy hat to:  me

  Revision  Changes    Path
  1.92      +2 -0      src/lib/libkvm/kvm_proc.c
_______________________________________________
cvs-src <at> freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-src
To unsubscribe, send any mail to "cvs-src-unsubscribe <at> freebsd.org"


Gmane