cvs commit: src/sys/dev/usb if_aue.c if_auereg.h

2006-12-13 Thread Alfred Perlstein
alfred 2006-12-13 22:38:56 UTC FreeBSD src repository Modified files: sys/dev/usb if_aue.c if_auereg.h Log: Use callouts to prevent races. Cleanup debug code. Revision ChangesPath 1.103 +9 -6 src/sys/dev/usb/if_aue.c 1.25 +22 -14src/sys

Re: cvs commit: src/sys/amd64/conf GENERIC

2006-12-14 Thread Alfred Perlstein
* David O'Brien <[EMAIL PROTECTED]> [061214 08:00] wrote: > On Wed, Dec 13, 2006 at 08:13:24PM -0800, [EMAIL PROTECTED] wrote: > > Secondly, I would *like* to have SMP on as a default in RELENG_6 for > > amd64, as it would avoid doing what I've done twice already- fresh > > sysinstall may or may

Re: cvs commit: src/sys/i386/i386 apic_vector.s exception.s local_apic.c trap.c vm86.c vm86bios.s src/sys/i386/include apicvar.h src/sys/i386/isa atpic.c atpic_vector.s icu.h

2006-12-17 Thread Alfred Perlstein
I think that reliance on this dates back to before FreeBSD. It's interesting to see it gone. * Kip Macy <[EMAIL PROTECTED]> [061216 21:07] wrote: > kmacy 2006-12-17 05:07:01 UTC > > FreeBSD src repository > > Modified files: > sys/i386/i386apic_vector.s exception.s local_a

cvs commit: src/sys/dev/usb if_aue.c if_auereg.h

2006-12-23 Thread Alfred Perlstein
alfred 2006-12-23 17:18:18 UTC FreeBSD src repository Modified files: sys/dev/usb if_aue.c if_auereg.h Log: Fix a deadlock in detach/shutdown. The problem was that I was acquiring the driver sx lock and then waiting for a taskqueue to drain, however the taskqueue

Re: cvs commit: src/usr.bin/kdump kdump.c

2007-01-06 Thread Alfred Perlstein
parse them that I hope to commit > in the near future. Nice. -- - Alfred Perlstein, RED Incorporated Consulting. - coder / sysadmin / FreeBSD Hacker / All that jazz - ___ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"

cvs commit: src/sys/dev/usb usb_ethersubr.c usb_ethersubr.h

2007-01-08 Thread Alfred Perlstein
alfred 2007-01-08 23:21:07 UTC FreeBSD src repository Modified files: sys/dev/usb usb_ethersubr.c usb_ethersubr.h Log: Add the following functions to abstract away the creation of task threads for usb. I hope that this will eventually be used for generic devices th

cvs commit: src/sys/dev/usb if_aue.c if_auereg.h

2007-01-08 Thread Alfred Perlstein
alfred 2007-01-08 23:24:21 UTC FreeBSD src repository Modified files: sys/dev/usb if_aue.c if_auereg.h Log: Remove my "custom" locks that allow for lock acquire abort, they are not needed if the proper ordering is done in attach and shutdown. Remove usage of if_t

cvs commit: ports/irc/insub Makefile distinfo

2007-01-15 Thread Alfred Perlstein
alfred 2007-01-16 06:49:08 UTC FreeBSD ports repository Modified files: irc/insubMakefile distinfo Log: update to 10.1 (silc support) (lol). Revision ChangesPath 1.26 +1 -1 ports/irc/insub/Makefile 1.20 +3 -3 ports/irc/insub/distinfo

cvs commit: ports/databases/innotop Makefile distinfo

2007-01-17 Thread Alfred Perlstein
alfred 2007-01-17 22:05:17 UTC FreeBSD ports repository Modified files: databases/innotopMakefile distinfo Log: Update to 1.0.1 Submitted by: skreuzer at f2o.org Revision ChangesPath 1.2 +3 -3 ports/databases/innotop/Makefile 1.2 +3 -3

Re: cvs commit: src/sys/kern sched_ule.c

2007-01-26 Thread Alfred Perlstein
e idlethread will check a word each iteration an in effect pull a soft IPI? I'm not sure this would help or hinder, but it is of interest to me. -- - Alfred Perlstein, RED Incorporated Consulting. - coder / sysadmin / FreeBSD Hacker / All that jazz - ___

Re: cvs commit: src/sys/kern sched_ule.c

2007-01-26 Thread Alfred Perlstein
* Alfred Perlstein <[EMAIL PROTECTED]> [070126 14:34] wrote: > * Jeff Roberson <[EMAIL PROTECTED]> [070125 19:47] wrote: > > > > On Thu, 25 Jan 2007, Jeff Roberson wrote: > > > > >jeff2007-01-25 23:52:00 UTC > > > > > > FreeBSD

Re: cvs commit: src/sys/fs/hpfs hpfs_vfsops.c hpfs_vnops.c src/sys/fs/msdosfs msdosfs_vfsops.c msdosfs_vnops.c src/sys/fs/ntfs ntfs_vfsops.c ntfs_vnops.c src/sys/fs/nullfs null_vfsops.c null_vnops.c s

2007-02-21 Thread Alfred Perlstein
operation. Not that is has to be done this way, but I'm just saying, there was little need to kneecap our third party developers. :) -- - Alfred Perlstein ___ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"

Re: cvs commit: src/sys/compat/linprocfs linprocfs.c src/sys/compat/linsysfs linsysfs.c src/sys/fs/procfs procfs.c src/sys/fs/pseudofs pseudofs.c pseudofs.h

2007-03-12 Thread Alfred Perlstein
of this change is minimal. I think Autofs (in p4) may use this. The maintainer is active, he'll adapt. -- - Alfred Perlstein, RED Incorporated Consulting. - coder / sysadmin / FreeBSD Hacker / All that jazz - ___ cvs-all@freebsd.org mailing l

Re: cvs commit: src/bin/mv mv.c

2007-12-16 Thread Alfred Perlstein
* Diomidis Spinellis <[EMAIL PROTECTED]> [071216 09:47] wrote: > dds 2007-12-16 17:47:34 UTC > > FreeBSD src repository > > Modified files: > bin/mv mv.c > Log: > Eliminate gcc "variable clobbered" warnings by declaring the variables > living across the vfork

Re: cvs commit: src/bin/mv mv.c

2007-12-17 Thread Alfred Perlstein
* Diomidis Spinellis <[EMAIL PROTECTED]> [071217 01:04] wrote: > Alfred Perlstein wrote: > >* Diomidis Spinellis <[EMAIL PROTECTED]> [071216 09:47] wrote: > >>dds 2007-12-16 17:47:34 UTC > >> > >> FreeBSD src repository > >>

Re: cvs commit: src/lib/libc Versions.def

2007-12-18 Thread Alfred Perlstein
gt; release X can run on release Y (where Y < X). > > We can still MFC new symbols back to prior releases, we just > have to add them to the same namespace from which they came. Daniel, is there anything preventing us from matching version numbers with release numbers? This would make

Re: cvs commit: src/tools/regression/bin/mv regress.sh

2007-12-18 Thread Alfred Perlstein
-xf - -C /path/to/dst This will keep the disks a lot busier, but this can make things worse on cross device moves that happen to be on the same disk. -- - Alfred Perlstein ___ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listin

Re: cvs commit: src/sys/conf newvers.sh

2007-12-22 Thread Alfred Perlstein
I think jkh and I worked this scheme out about five years ago. :) -- - Alfred Perlstein ___ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"

Re: cvs commit: src/sys/conf files src/sys/ddb db_command.c db_command.h db_lex.c db_lex.h db_main.c db_script.c ddb.h

2007-12-26 Thread Alfred Perlstein
* Robert Watson <[EMAIL PROTECTED]> [071226 15:35] wrote: > > On Wed, 26 Dec 2007, Brian Fundakowski Feldman wrote: > > >Wow, very cool debugging feature! Any more sweet DDB features in the > >pipeline? > > Thanks! DDB capture output, scripting, and textdumps were pretty much what > I had in

Re: cvs commit: src/games/fortune/datfiles fortunes

2008-01-10 Thread Alfred Perlstein
ChangesPath > 1.255 +3 -0 src/games/fortune/datfiles/fortunes Link? Wiki'ing that name is weird... -- - Alfred Perlstein ___ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"

Re: cvs commit: src/sys/nfsclient nfs_socket.c

2008-01-10 Thread Alfred Perlstein
ge. > > MFC after: 1 week > Reviewed by:rwatson > > Revision ChangesPath > 1.156 +1 -1 src/sys/nfsclient/nfs_socket.c -- - Alfred Perlstein ___ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "[EMAIL PROTECTED]"

Re: cvs commit: src/sys/nfsclient nfs_socket.c

2008-01-10 Thread Alfred Perlstein
* Peter Wemm <[EMAIL PROTECTED]> [080110 17:39] wrote: > On Jan 10, 2008 5:00 PM, Alfred Perlstein <[EMAIL PROTECTED]> wrote: > > > > * John Baldwin <[EMAIL PROTECTED]> [080110 15:33] wrote: > > > jhb 2008-01-10 23:36:00 UTC > > > > >

Re: cvs commit: src/share/man/man9 mbuf.9 src/sys/compat/ndis kern_ndis.c src/sys/dev/cxgb cxgb_sge.c src/sys/dev/cxgb/ulp/tom cxgb_cpl_socket.c src/sys/dev/hatm if_hatm_intr.c src/sys/dev/iscsi/initi

2008-02-02 Thread Alfred Perlstein
* Poul-Henning Kamp <[EMAIL PROTECTED]> [080201 11:36] wrote: > phk 2008-02-01 19:36:27 UTC > > FreeBSD src repository > > Modified files: > sys/pci if_wb.c > sys/sys mbuf.h param.h > Log: > Give MEXTADD() another argument to make both void poin

Re: cvs commit: src/sys/kern kern_lock.c src/sys/sys lockmgr.h

2008-02-05 Thread Alfred Perlstein
* Attilio Rao <[EMAIL PROTECTED]> [080205 16:37] wrote: > attilio 2008-02-06 00:37:14 UTC > > FreeBSD src repository > > Modified files: > sys/kern kern_lock.c > sys/sys lockmgr.h > Log: > Add WITNESS support to lockmgr locking primitive. This is ve

Re: cvs commit: src/sys/fs/coda cnode.h coda_subr.c coda_vnops.c

2008-02-13 Thread Alfred Perlstein
* Robert Watson <[EMAIL PROTECTED]> [080213 07:45] wrote: > rwatson 2008-02-13 15:45:12 UTC > > FreeBSD src repository > > Modified files: > sys/fs/coda cnode.h coda_subr.c coda_vnops.c > Log: ... > Since the Coda module is agressive about not keeping around > unopened

<    1   2