CVS commit: src/sys/dev/scsipi

2009-12-06 Thread David Young
Module Name:src Committed By: dyoung Date: Sun Dec 6 22:48:17 UTC 2009 Modified Files: src/sys/dev/scsipi: cd.c ss.c st.c st_atapi.c st_scsi.c stvar.h uk.c Log Message: Delete do-nothing device-activation hooks. To generate a diff of this commit: cvs rdiff -u -r1.295 -r

CVS commit: src/sys/dev/onewire

2009-12-06 Thread David Young
Module Name:src Committed By: dyoung Date: Sun Dec 6 22:49:48 UTC 2009 Modified Files: src/sys/dev/onewire: onewire.c owtemp.c Log Message: Simplify device-activation hooks. To generate a diff of this commit: cvs rdiff -u -r1.12 -r1.13 src/sys/dev/onewire/onewire.c cvs

CVS commit: src/sys/external/bsd/drm/dist/bsd-core

2009-12-06 Thread David Young
Module Name:src Committed By: dyoung Date: Sun Dec 6 22:51:25 UTC 2009 Modified Files: src/sys/external/bsd/drm/dist/bsd-core: drmP.h drm_drv.c i915_drv.c mach64_drv.c mga_drv.c r128_drv.c radeon_drv.c savage_drv.c sis_drv.c tdfx_drv.c via_drv.c Lo

CVS commit: src/sys/dev/ieee1394

2009-12-06 Thread David Young
Module Name:src Committed By: dyoung Date: Sun Dec 6 22:56:56 UTC 2009 Modified Files: src/sys/dev/ieee1394: if_fwip.c Log Message: Simplify device-activation hook. To generate a diff of this commit: cvs rdiff -u -r1.19 -r1.20 src/sys/dev/ieee1394/if_fwip.c Please note

CVS commit: src/sys/dev/pcmcia

2009-12-06 Thread David Young
Module Name:src Committed By: dyoung Date: Sun Dec 6 23:05:06 UTC 2009 Modified Files: src/sys/dev/pcmcia: if_cnw.c if_ray.c isic_pcmcia.c Log Message: Simplify device-activation hooks. To generate a diff of this commit: cvs rdiff -u -r1.52 -r1.53 src/sys/dev/pcmcia/if_

CVS commit: src/sys/dev/pcmcia

2009-12-06 Thread David Young
Module Name:src Committed By: dyoung Date: Sun Dec 6 23:05:39 UTC 2009 Modified Files: src/sys/dev/pcmcia: if_xi.c if_xivar.h mhzc.c pcmcom.c xirc.c Log Message: device_t/softc split. To generate a diff of this commit: cvs rdiff -u -r1.68 -r1.69 src/sys/dev/pcmcia/if_xi

CVS commit: src/sys/dev/pci

2009-12-06 Thread David Young
Module Name:src Committed By: dyoung Date: Sun Dec 6 23:14:05 UTC 2009 Modified Files: src/sys/dev/pci: ifpci.c ifpci2.c isic_pci.c Log Message: Simplify device-activation hooks. To generate a diff of this commit: cvs rdiff -u -r1.29 -r1.30 src/sys/dev/pci/ifpci.c cvs r

CVS commit: src/sys/dev/ic

2009-12-06 Thread David Young
Module Name:src Committed By: dyoung Date: Sun Dec 6 23:14:39 UTC 2009 Modified Files: src/sys/dev/ic: tropic.c Log Message: Simplify device-activation hook. To generate a diff of this commit: cvs rdiff -u -r1.39 -r1.40 src/sys/dev/ic/tropic.c Please note that diffs ar

CVS commit: src/sys/dev/ic

2009-12-06 Thread David Young
Module Name:src Committed By: dyoung Date: Sun Dec 6 23:15:59 UTC 2009 Modified Files: src/sys/dev/ic: com.c Log Message: Delete dead code. To generate a diff of this commit: cvs rdiff -u -r1.291 -r1.292 src/sys/dev/ic/com.c Please note that diffs are not public domain

CVS commit: src/sys/dev/ic

2009-12-06 Thread David Young
Module Name:src Committed By: dyoung Date: Sun Dec 6 23:17:09 UTC 2009 Modified Files: src/sys/dev/ic: dp8390.c Log Message: Simplify device-activation hooks. To generate a diff of this commit: cvs rdiff -u -r1.71 -r1.72 src/sys/dev/ic/dp8390.c Please note that diffs a

CVS commit: src/sys/dev/ic

2009-12-06 Thread David Young
Module Name:src Committed By: dyoung Date: Sun Dec 6 23:18:37 UTC 2009 Modified Files: src/sys/dev/ic: mb86950.c mb86960.c smc91cxx.c Log Message: Simplify device-activation hooks. To generate a diff of this commit: cvs rdiff -u -r1.15 -r1.16 src/sys/dev/ic/mb86950.c cv

CVS commit: src/sys/netinet

2009-12-07 Thread David Young
Module Name:src Committed By: dyoung Date: Mon Dec 7 18:38:55 UTC 2009 Modified Files: src/sys/netinet: in.c Log Message: Initialize/compare pointers with NULL instead of 0. To generate a diff of this commit: cvs rdiff -u -r1.135 -r1.136 src/sys/netinet/in.c Please not

CVS commit: src/sys/sys

2009-12-07 Thread David Young
Module Name:src Committed By: dyoung Date: Mon Dec 7 19:45:14 UTC 2009 Modified Files: src/sys/sys: device.h Log Message: Poison future uses of DVACT_ACTIVATE by deleting it. I deleted the last "use" of DVACT_ACTIVATE in a driver, yesterday. To generate a diff of this

CVS commit: src/share/man/man9

2009-12-07 Thread David Young
Module Name:src Committed By: dyoung Date: Mon Dec 7 23:50:39 UTC 2009 Modified Files: src/share/man/man9: autoconf.9 Log Message: Don't mention the activate interface, since config_activate() has been gone for a while, now. To generate a diff of this commit: cvs rdiff

CVS commit: src/sys/kern

2009-03-25 Thread David Young
Module Name:src Committed By: dyoung Date: Wed Mar 25 21:28:50 UTC 2009 Modified Files: src/sys/kern: subr_autoconf.c Log Message: When we attach a pseudo-device, set its cfdata_t's cf_fstate to FSTATE_FOUND, as we do in config_attach_loc(), in order to avoid a DIAGNOSTIC

CVS commit: src/sys/kern

2009-03-25 Thread David Young
Module Name:src Committed By: dyoung Date: Wed Mar 25 21:43:42 UTC 2009 Modified Files: src/sys/kern: subr_autoconf.c Log Message: DVF_ACTIVE is unconditionally set when we attach a device, so unconditionally clear it after we give a device's deactivate() routine a chance.

CVS commit: src/sys/kern

2009-03-25 Thread David Young
Module Name:src Committed By: dyoung Date: Wed Mar 25 21:48:37 UTC 2009 Modified Files: src/sys/kern: subr_autoconf.c Log Message: ctags(1) gets confused by 'typedef struct X { } X_t', so break 'typedef struct pmf_private { ... } pmf_private_t' into a struct definition and

CVS commit: src/sys/arch/x86/x86

2009-03-25 Thread David Young
Module Name:src Committed By: dyoung Date: Wed Mar 25 22:53:52 UTC 2009 Modified Files: src/sys/arch/x86/x86: coretemp.c est.c identcpu.c intel_busclock.c Log Message: It is only by accident that these get definitions they need from , so explicitly #include . To generate

CVS commit: src/sys/arch/x86/include

2009-03-25 Thread David Young
Module Name:src Committed By: dyoung Date: Wed Mar 25 22:54:57 UTC 2009 Modified Files: src/sys/arch/x86/include: intr.h Log Message: It is only by accident that this gets the definitions it needs from , so explicitly #include . To generate a diff of this commit: cvs rdi

CVS commit: src/sys/arch/x86/include

2009-03-25 Thread David Young
Module Name:src Committed By: dyoung Date: Wed Mar 25 22:56:00 UTC 2009 Modified Files: src/sys/arch/x86/include: i82093var.h isa_machdep.h Log Message: It is only by accident that these get the definitions they need from , so explicitly #include . To generate a diff of

CVS commit: src/sys/dev/dm

2009-03-25 Thread David Young
Module Name:src Committed By: dyoung Date: Wed Mar 25 23:35:54 UTC 2009 Modified Files: src/sys/dev/dm: dm.h Log Message: It is only by chance that this gets the prop_array_t definition that it needs, so explicitly #include . To generate a diff of this commit: cvs rdiff

CVS commit: src/sys/arch/x86/x86

2009-03-25 Thread David Young
Module Name:src Committed By: dyoung Date: Thu Mar 26 00:30:10 UTC 2009 Modified Files: src/sys/arch/x86/x86: tprof_pmi.c Log Message: This only got the definition of device_xname() by chance, so explicitly #include . To generate a diff of this commit: cvs rdiff -u -r1.9

CVS commit: src/sys/arch/xen

2009-03-27 Thread David Young
Module Name:src Committed By: dyoung Date: Fri Mar 27 15:47:33 UTC 2009 Modified Files: src/sys/arch/xen/include: intr.h src/sys/arch/xen/xen: evtchn.c Log Message: Explicitly #include and . These files only got the definitions they needed by chance, before. To

CVS commit: src/sys/arch/x86/include

2009-03-27 Thread David Young
Module Name:src Committed By: dyoung Date: Fri Mar 27 16:07:37 UTC 2009 Modified Files: src/sys/arch/x86/include: cpu.h Log Message: If defined(_KERNEL), #include , otherwise #include , for the bool definition that we need. cpu.h only got the definition by chance, before.

CVS commit: src/sys/arch/x86/include

2009-03-27 Thread David Young
Module Name:src Committed By: dyoung Date: Fri Mar 27 16:09:24 UTC 2009 Modified Files: src/sys/arch/x86/include: intr.h Log Message: If defined(_KERNEL), #include , otherwise #include , for the bool definition that we need. intr.h only got the definition by chance, before

CVS commit: src/sys/dev/ic

2009-03-27 Thread David Young
Module Name:src Committed By: dyoung Date: Fri Mar 27 16:10:50 UTC 2009 Modified Files: src/sys/dev/ic: athrate-onoe.c Log Message: Make this build on -current. To generate a diff of this commit: cvs rdiff -u -r1.13 -r1.14 src/sys/dev/ic/athrate-onoe.c Please note that

CVS commit: src/sys/dev/if_ndis

2009-03-27 Thread David Young
Module Name:src Committed By: dyoung Date: Fri Mar 27 16:15:25 UTC 2009 Modified Files: src/sys/dev/if_ndis: if_ndis_pci.c Log Message: For legibility, unifdef -U__FreeBSD__ -D__NetBSD__. This compiles, but it is not run-tested. To generate a diff of this commit: cvs rd

CVS commit: src/sys/dev/pci

2009-03-27 Thread David Young
Module Name:src Committed By: dyoung Date: Fri Mar 27 16:45:53 UTC 2009 Modified Files: src/sys/dev/pci: if_sip.c Log Message: If a sip(4) is powered down, then neither is its PHY, so don't try to read media status from the PHY. To generate a diff of this commit: cvs rdi

CVS commit: src/sys/arch/i386/i386

2009-03-30 Thread David Young
Module Name:src Committed By: dyoung Date: Mon Mar 30 17:48:22 UTC 2009 Modified Files: src/sys/arch/i386/i386: vm_machdep.c Log Message: Cosmetic: reduce differences from amd64/amd64/vm_machdep.c by deleting an empty line. To generate a diff of this commit: cvs rdiff -u

CVS commit: src/sys/modules/coredump

2009-03-31 Thread David Young
Module Name:src Committed By: dyoung Date: Tue Mar 31 18:41:41 UTC 2009 Modified Files: src/sys/modules/coredump: Makefile Log Message: Also look for sources in sys/arch/x86/x86/ if MACHINE_ARCH is i386 or x86_64. To generate a diff of this commit: cvs rdiff -u -r1.1 -r1

CVS commit: src/sys

2009-04-01 Thread David Young
Module Name:src Committed By: dyoung Date: Thu Apr 2 00:09:34 UTC 2009 Modified Files: src/sys/arch/i386/isa: npx_isa.c src/sys/arch/i386/pci: elan520.c src/sys/arch/x86/include: pic.h src/sys/arch/x86/pci: pcib.c src/sys/dev/ata: ata.c wd.c

CVS commit: src/sys/dev/if_ndis

2009-04-01 Thread David Young
Module Name:src Committed By: dyoung Date: Thu Apr 2 00:39:37 UTC 2009 Modified Files: src/sys/dev/if_ndis: if_ndis.c Log Message: I find myself making a lot of changes in this code to keep it compiling and (let us hope) working in the 21st century, so I have put it throu

CVS commit: src/sys/dev/ic

2009-04-01 Thread David Young
right (c) 2004, 2005, 2006, 2007 David Young. All rights * reserved. @@ -35,7 +35,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: rtw.c,v 1.106 2008/11/12 12:36:11 ad Exp $"); +__KERNEL_RCSID(0, "$NetBSD: rtw.c,v 1.107 2009/04/02 00:57:20 dyoung Exp $"); #include

CVS commit: src/sys/dev/pci

2009-04-01 Thread David Young
Module Name:src Committed By: dyoung Date: Thu Apr 2 01:06:49 UTC 2009 Modified Files: src/sys/dev/pci: azalia.c Log Message: Cosmetic changes, only, to clarify and to save a couple of lines: return a constant, 0, instead of returning ret when it is always 0. Wait to ini

CVS commit: src/sys/kern

2009-04-02 Thread David Young
Module Name:src Committed By: dyoung Date: Thu Apr 2 22:19:49 UTC 2009 Modified Files: src/sys/kern: kern_pmf.c Log Message: Take out a noisy debug statement that slipped in with device-detachment at shutdown. To generate a diff of this commit: cvs rdiff -u -r1.22 -r1.2

CVS commit: src/sys/dev/pci

2009-04-02 Thread David Young
Module Name:src Committed By: dyoung Date: Fri Apr 3 00:14:42 UTC 2009 Modified Files: src/sys/dev/pci: if_bnx.c Log Message: Fix SIOCSIFFLAGS. Mark as safe to detach at shutdown. To generate a diff of this commit: cvs rdiff -u -r1.23 -r1.24 src/sys/dev/pci/if_bnx.c P

CVS commit: src/sys/dev/ata

2009-04-03 Thread David Young
Module Name:src Committed By: dyoung Date: Fri Apr 3 21:31:08 UTC 2009 Modified Files: src/sys/dev/ata: ata.c Log Message: Stop dereferencing a dangling device_t pointer and crashing: skip the drives flagged DRIVE_ATAPI in atabus_activate(,DVACT_DEACTIVATE) just as we ski

CVS commit: src/sys/kern

2009-04-06 Thread David Young
Module Name:src Committed By: dyoung Date: Mon Apr 6 21:22:47 UTC 2009 Modified Files: src/sys/kern: kern_softint.c Log Message: Fix spelling. To generate a diff of this commit: cvs rdiff -u -r1.25 -r1.26 src/sys/kern/kern_softint.c Please note that diffs are not publi

CVS commit: src/sys/arch/x86/isa

2009-04-07 Thread David Young
Module Name:src Committed By: dyoung Date: Tue Apr 7 17:51:46 UTC 2009 Modified Files: src/sys/arch/x86/isa: clock.c Log Message: Detach sysbeep0 at shutdown. To generate a diff of this commit: cvs rdiff -u -r1.31 -r1.32 src/sys/arch/x86/isa/clock.c Please note that di

CVS commit: src/sys/arch/x86/pci

2009-04-07 Thread David Young
Module Name:src Committed By: dyoung Date: Tue Apr 7 17:52:36 UTC 2009 Modified Files: src/sys/arch/x86/pci: pchb.c Log Message: Detach pchb(4) instances at shutdown. To generate a diff of this commit: cvs rdiff -u -r1.17 -r1.18 src/sys/arch/x86/pci/pchb.c Please note

CVS commit: src/sys/arch/x86/x86

2009-04-07 Thread David Young
Module Name:src Committed By: dyoung Date: Tue Apr 7 17:53:46 UTC 2009 Modified Files: src/sys/arch/x86/x86: ipmi.c Log Message: Add a device-detachment hook for ipmi(4). To generate a diff of this commit: cvs rdiff -u -r1.29 -r1.30 src/sys/arch/x86/x86/ipmi.c Please n

CVS commit: src/sys/dev

2009-04-07 Thread David Young
Module Name:src Committed By: dyoung Date: Tue Apr 7 17:54:58 UTC 2009 Modified Files: src/sys/dev: midi.c Log Message: Cosmetic: in a debug statement, use "%s", __func__ instead of a misspelling of the detach routine's name. To generate a diff of this commit: cvs rdiff

CVS commit: src/sys/dev

2009-04-07 Thread David Young
Module Name:src Committed By: dyoung Date: Tue Apr 7 17:55:55 UTC 2009 Modified Files: src/sys/dev: midi_if.h Log Message: Declare mididetach() for use by midi0 at pcppi0. To generate a diff of this commit: cvs rdiff -u -r1.21 -r1.22 src/sys/dev/midi_if.h Please note t

CVS commit: src/sys/dev/acpi

2009-04-07 Thread David Young
Module Name:src Committed By: dyoung Date: Tue Apr 7 17:59:18 UTC 2009 Modified Files: src/sys/dev/acpi: attimer_acpi.c Log Message: During shutdown, detach attimer at acpi. To generate a diff of this commit: cvs rdiff -u -r1.12 -r1.13 src/sys/dev/acpi/attimer_acpi.c P

CVS commit: src/sys/dev/scsipi

2009-04-07 Thread David Young
Module Name:src Committed By: dyoung Date: Tue Apr 7 18:10:45 UTC 2009 Modified Files: src/sys/dev/scsipi: scsipi_base.c Log Message: Destroy a scsipi_xfer's callout before putting it back into the pool. To generate a diff of this commit: cvs rdiff -u -r1.148 -r1.149 sr

CVS commit: src/sys/dev/scsipi

2009-04-07 Thread David Young
Module Name:src Committed By: dyoung Date: Tue Apr 7 18:35:17 UTC 2009 Modified Files: src/sys/dev/scsipi: atapiconf.c cd.c scsiconf.c sd.c Log Message: Detach atapibus(4), scsibus(4), cd(4), and sd(4) during shutdown. Destroy sd->sc_callout in sddetach(). Delete some de

CVS commit: src/sys/dev/mii

2009-04-07 Thread David Young
Module Name:src Committed By: dyoung Date: Tue Apr 7 18:05:02 UTC 2009 Modified Files: src/sys/dev/mii: mii_physubr.c Log Message: In mii_phy_detach(), destroy the NWay callout. To generate a diff of this commit: cvs rdiff -u -r1.62 -r1.63 src/sys/dev/mii/mii_physubr.c

CVS commit: src/sys/dev/ata

2009-04-07 Thread David Young
Module Name:src Committed By: dyoung Date: Tue Apr 7 18:01:20 UTC 2009 Modified Files: src/sys/dev/ata: ata.c Log Message: Cosmetic: flag a potential problem in ata_channel_attach(): it initializes a callout that does not appear to be destroyed anywhere. Every callout_ini

CVS commit: src/sys/arch

2009-04-07 Thread David Young
Module Name:src Committed By: dyoung Date: Tue Apr 7 18:24:23 UTC 2009 Modified Files: src/sys/arch/i386/i386: autoconf.c src/sys/arch/x86/conf: files.x86 src/sys/arch/x86/x86: intr.c Log Message: Add opt_intrdebug.h for the INTRDEBUG option, and #include

CVS commit: src/sys/dev/pci

2009-04-07 Thread David Young
Module Name:src Committed By: dyoung Date: Tue Apr 7 18:07:10 UTC 2009 Modified Files: src/sys/dev/pci: if_bnx.c Log Message: Destroy sc->bnx_timeout in bnx_detach(). To generate a diff of this commit: cvs rdiff -u -r1.24 -r1.25 src/sys/dev/pci/if_bnx.c Please note tha

CVS commit: src/sys/dev/ic

2009-04-07 Thread David Young
@@ -1,4 +1,4 @@ -/* $NetBSD: rtw.c,v 1.107 2009/04/02 00:57:20 dyoung Exp $ */ +/* $NetBSD: rtw.c,v 1.108 2009/04/07 18:02:04 dyoung Exp $ */ /*- * Copyright (c) 2004, 2005, 2006, 2007 David Young. All rights * reserved. @@ -35,7 +35,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: rt

CVS commit: src/sys/dev/isa

2009-04-07 Thread David Young
Module Name:src Committed By: dyoung Date: Tue Apr 7 18:31:12 UTC 2009 Modified Files: src/sys/dev/isa: midi_pcppi.c Log Message: Detach midi at pcppi during shutdown. Sprinkle static. To generate a diff of this commit: cvs rdiff -u -r1.20 -r1.21 src/sys/dev/isa/midi_p

CVS commit: src/sys/dev/usb

2009-04-07 Thread David Young
Module Name:src Committed By: dyoung Date: Tue Apr 7 18:15:45 UTC 2009 Modified Files: src/sys/dev/usb: uhub.c usb.c Log Message: Detach uhub(4) and usb(4) at shutdown. To generate a diff of this commit: cvs rdiff -u -r1.103 -r1.104 src/sys/dev/usb/uhub.c cvs rdiff -u -

CVS commit: src/sys/kern

2009-04-07 Thread David Young
Module Name:src Committed By: dyoung Date: Tue Apr 7 18:16:28 UTC 2009 Modified Files: src/sys/kern: kern_pmf.c Log Message: Cosmetic: join lines. To generate a diff of this commit: cvs rdiff -u -r1.23 -r1.24 src/sys/kern/kern_pmf.c Please note that diffs are not publi

CVS commit: src/sys/dev/mii

2009-04-07 Thread David Young
Module Name:src Committed By: dyoung Date: Tue Apr 7 18:05:55 UTC 2009 Modified Files: src/sys/dev/mii: brgphy.c Log Message: Detach brgphy(4) at shutdown. To generate a diff of this commit: cvs rdiff -u -r1.41 -r1.42 src/sys/dev/mii/brgphy.c Please note that diffs are

CVS commit: src/sys/dev/pci

2009-04-07 Thread David Young
Module Name:src Committed By: dyoung Date: Tue Apr 7 18:25:26 UTC 2009 Modified Files: src/sys/dev/pci: ehci_pci.c uhci_pci.c Log Message: Detach ehci(4) and uhci(4) at shutdown. To generate a diff of this commit: cvs rdiff -u -r1.38 -r1.39 src/sys/dev/pci/ehci_pci.c cv

CVS commit: src/sys/arch/x86/x86

2009-04-07 Thread David Young
Module Name:src Committed By: dyoung Date: Tue Apr 7 21:00:31 UTC 2009 Modified Files: src/sys/arch/x86/x86: ipmi.c Log Message: In ipmi_detach(), don't sysmon_envsys_destroy(), but just _unregister(): _unregister() calls _destroy(). To generate a diff of this commit: c

CVS commit: src/sys/arch/x86/x86

2009-04-07 Thread David Young
Module Name:src Committed By: dyoung Date: Tue Apr 7 21:47:58 UTC 2009 Modified Files: src/sys/arch/x86/x86: ipmi.c Log Message: When ipmi0 detaches, free all of the ipmi_sensor's on the (global!) ipmi_sensor_list. To generate a diff of this commit: cvs rdiff -u -r1.31

CVS commit: src/sys/dev/isa

2009-04-07 Thread David Young
Module Name:src Committed By: dyoung Date: Tue Apr 7 21:48:46 UTC 2009 Modified Files: src/sys/dev/isa: isa.c Log Message: Fix spelling: indrect -> indirect. To generate a diff of this commit: cvs rdiff -u -r1.134 -r1.135 src/sys/dev/isa/isa.c Please note that diffs ar

CVS commit: src/sys/dev/sysmon

2009-04-07 Thread David Young
Module Name:src Committed By: dyoung Date: Tue Apr 7 21:49:36 UTC 2009 Modified Files: src/sys/dev/sysmon: sysmon_envsys_events.c Log Message: Fix spelling: mak -> make. To generate a diff of this commit: cvs rdiff -u -r1.62 -r1.63 src/sys/dev/sysmon/sysmon_envsys_event

CVS commit: src/sys/arch/i386/i386

2009-04-07 Thread David Young
Module Name:src Committed By: dyoung Date: Tue Apr 7 22:01:39 UTC 2009 Modified Files: src/sys/arch/i386/i386: mainbus.c Log Message: Let us re-attach acpi0, ipmi0, pnpbios0, and mca0 at mainbus0. Extract code from mainbus_attach() to create a rescan hook, mainbus_rescan

CVS commit: src/sys/dev

2009-04-07 Thread David Young
Module Name:src Committed By: dyoung Date: Tue Apr 7 22:30:09 UTC 2009 Modified Files: src/sys/dev/ic: attimer.c attimervar.h src/sys/dev/isa: pcppi.c Log Message: Make pcppi(4) detach the "speaker" from attimer(4), so that the corresponding attimer(4) resource is

CVS commit: src/sys/dev/isa

2009-04-07 Thread David Young
Module Name:src Committed By: dyoung Date: Wed Apr 8 00:12:27 UTC 2009 Modified Files: src/sys/dev/isa: midi_pcppi.c Log Message: Decrease midi_pcppi_attached when midi at pcppi detaches. To generate a diff of this commit: cvs rdiff -u -r1.21 -r1.22 src/sys/dev/isa/midi

CVS commit: src/sys/dev/acpi

2009-04-07 Thread David Young
Module Name:src Committed By: dyoung Date: Wed Apr 8 00:15:45 UTC 2009 Modified Files: src/sys/dev/acpi: acpi_timer.c acpi_timer.h Log Message: Add acpitimer_detach() to eventually support acpi(4) detachment. To generate a diff of this commit: cvs rdiff -u -r1.13 -r1.14

CVS commit: src/sys/dev/acpi

2009-04-07 Thread David Young
Module Name:src Committed By: dyoung Date: Wed Apr 8 00:23:30 UTC 2009 Modified Files: src/sys/dev/acpi: acpi.c acpivar.h Log Message: Refactor slightly to create acpi_rescan(), a hook for rescanning the devices that attach at acpi(4). Begin deriving an acpi(4) device-de

CVS commit: src/sys/arch/i386/i386

2009-04-08 Thread David Young
Module Name:src Committed By: dyoung Date: Wed Apr 8 17:08:03 UTC 2009 Modified Files: src/sys/arch/i386/i386: mainbus.c Log Message: Remove redundant declaration of mainbus_attach(), as pointed out by Thomas Klausner. Do not compile in the local variable "mba" in mainbu

CVS commit: src/sys/arch/i386/pci

2009-04-08 Thread David Young
Module Name:src Committed By: dyoung Date: Wed Apr 8 23:53:10 UTC 2009 Modified Files: src/sys/arch/i386/pci: elan520.c Log Message: Move elanpar0 and elanpex0 attachment out of the #if NGPIO > 0 block in elansc_attach(). Let us detach gpio0 at elansc0. Let us re-attach

CVS commit: src/sys/dev/scsipi

2009-04-10 Thread David Young
Module Name:src Committed By: dyoung Date: Fri Apr 10 17:36:42 UTC 2009 Modified Files: src/sys/dev/scsipi: sd.c sdvar.h Log Message: Use a PMF shutdown hook instead of shutdownhook_establish(). This ought to stop the crash during shutdown that yamt@ reports in kern/41182

CVS commit: src/sys/dev/pci

2009-04-14 Thread David Young
Module Name:src Committed By: dyoung Date: Tue Apr 14 20:17:16 UTC 2009 Modified Files: src/sys/dev/pci: if_bnxreg.h Log Message: Delete two unused data members, the powerhook and the shutdownhook handles. To generate a diff of this commit: cvs rdiff -u -r1.7 -r1.8 src/s

CVS commit: src/distrib/sets/lists/base

2009-04-15 Thread David Young
Module Name:src Committed By: dyoung Date: Wed Apr 15 22:12:40 UTC 2009 Modified Files: src/distrib/sets/lists/base: md.amd64 Log Message: Sort on the first column. To generate a diff of this commit: cvs rdiff -u -r1.42 -r1.43 src/distrib/sets/lists/base/md.amd64 Please

CVS commit: src/distrib/sets/lists/comp

2009-04-15 Thread David Young
Module Name:src Committed By: dyoung Date: Wed Apr 15 22:43:33 UTC 2009 Modified Files: src/distrib/sets/lists/comp: md.amd64 Log Message: Flag ldscripts with 'bfd'. Sort by first column. To generate a diff of this commit: cvs rdiff -u -r1.44 -r1.45 src/distrib/sets/lis

CVS commit: src/usr.sbin/makefs

2009-04-16 Thread David Young
Module Name:src Committed By: dyoung Date: Thu Apr 16 18:54:16 UTC 2009 Modified Files: src/usr.sbin/makefs: ffs.c Log Message: Distinguish read(2) failure due to a short read from other causes, and suggest in the error message a possible cause: the size= attribute in the

CVS commit: src/sys/dev/pci

2009-04-17 Thread David Young
Module Name:src Committed By: dyoung Date: Fri Apr 17 17:21:31 UTC 2009 Modified Files: src/sys/dev/pci: ehci_pci.c uhci_pci.c Log Message: Disable interrupts on the h/w before detaching the interrupt handler. Protects against the problem described in

CVS commit: src/sys/dev/pci

2009-04-17 Thread David Young
Module Name:src Committed By: dyoung Date: Fri Apr 17 17:31:01 UTC 2009 Modified Files: src/sys/dev/pci: ohci_pci.c Log Message: Disable interrupts on the h/w before disestablishing the PCI interrupt handler. To generate a diff of this commit: cvs rdiff -u -r1.39 -r1.40

CVS commit: src/sys/dev/pci

2009-04-17 Thread David Young
Module Name:src Committed By: dyoung Date: Fri Apr 17 19:44:13 UTC 2009 Modified Files: src/sys/dev/pci: ehci_pci.c ohci_pci.c Log Message: Use device_t instead of 'struct device *' or device_ptr_t. Use cfdata_t instead of 'struct cfdata *'. Delete some gratuitous parenth

CVS commit: src/sys/dev

2009-04-17 Thread David Young
Module Name:src Committed By: dyoung Date: Fri Apr 17 20:04:35 UTC 2009 Modified Files: src/sys/dev: audio.c Log Message: Detach audio(4) during shutdown. To generate a diff of this commit: cvs rdiff -u -r1.243 -r1.244 src/sys/dev/audio.c Please note that diffs are not

CVS commit: src/sys

2009-04-17 Thread David Young
Module Name:src Committed By: dyoung Date: Fri Apr 17 20:22:52 UTC 2009 Modified Files: src/sys/kern: vfs_subr.c src/sys/sys: mount.h Log Message: Make vfs_unmountall() return true if it was able to unmount any filesystem at all, false otherwise. This will support

CVS commit: src/usr.bin/passwd

2009-04-17 Thread David Young
Module Name:src Committed By: dyoung Date: Fri Apr 17 20:25:08 UTC 2009 Modified Files: src/usr.bin/passwd: local_passwd.c passwd.c Log Message: Rename variables to fix GCC warnings: local variables optopt and optarg shadow globals. To generate a diff of this commit: cvs

CVS commit: src/distrib/sets/lists/comp

2009-04-17 Thread David Young
Module Name:src Committed By: dyoung Date: Fri Apr 17 20:38:04 UTC 2009 Modified Files: src/distrib/sets/lists/comp: md.sparc64 Log Message: Apply the same keywords to the 32-bit compat files as apply to the non-compat equivalent files, to stop amd64/sparc64 builds with MK

CVS commit: src/sys/kern

2009-04-17 Thread David Young
Module Name:src Committed By: dyoung Date: Fri Apr 17 20:45:09 UTC 2009 Modified Files: src/sys/kern: kern_pmf.c Log Message: Do not interleave device detachment with device shutdown. Instead, try over and over to detach all of the devices. Stop when we cannot detach eve

CVS commit: src/sys/dev/isa

2009-04-17 Thread David Young
Module Name:src Committed By: dyoung Date: Fri Apr 17 20:46:37 UTC 2009 Modified Files: src/sys/dev/isa: pcppi.c Log Message: Detach pcppi0 at isa0 during shutdown. To generate a diff of this commit: cvs rdiff -u -r1.34 -r1.35 src/sys/dev/isa/pcppi.c Please note that di

CVS commit: src/sys/arch

2009-04-17 Thread David Young
Module Name:src Committed By: dyoung Date: Fri Apr 17 21:07:59 UTC 2009 Modified Files: src/sys/arch/amd64/amd64: mainbus.c src/sys/arch/i386/i386: mainbus.c src/sys/arch/x86/conf: files.x86 src/sys/arch/x86/include: mpacpi.h mpbiosvar.h mpconfig.h

CVS commit: src/distrib/sets/lists/comp

2009-04-17 Thread David Young
Module Name:src Committed By: dyoung Date: Fri Apr 17 21:33:38 UTC 2009 Modified Files: src/distrib/sets/lists/comp: md.amd64 Log Message: Fix keywords: /usr/lib/i386/libiberty* need 'bfd', not 'debuglib'. /usr/lib/i386/libvers* need 'kerberos', not 'debuglib'. To genera

CVS commit: src/sys/dev/pci

2009-04-17 Thread David Young
Module Name:src Committed By: dyoung Date: Fri Apr 17 23:23:24 UTC 2009 Modified Files: src/sys/dev/pci: if_bnx.c Log Message: Bug fix: don't release the Rx DMA maps twice. To generate a diff of this commit: cvs rdiff -u -r1.25 -r1.26 src/sys/dev/pci/if_bnx.c Please not

CVS commit: src/sbin/drvctl

2009-04-20 Thread David Young
Module Name:src Committed By: dyoung Date: Mon Apr 20 21:40:42 UTC 2009 Modified Files: src/sbin/drvctl: drvctl.8 drvctl.c Log Message: Add flag -n to suppress the first column of drvctl -l output. To generate a diff of this commit: cvs rdiff -u -r1.6 -r1.7 src/sbin/drvc

CVS commit: src/sbin/drvctl

2009-04-20 Thread David Young
Module Name:src Committed By: dyoung Date: Mon Apr 20 21:41:51 UTC 2009 Modified Files: src/sbin/drvctl: drvctl.c Log Message: Mention -n in usage. To generate a diff of this commit: cvs rdiff -u -r1.9 -r1.10 src/sbin/drvctl/drvctl.c Please note that diffs are not publi

CVS commit: src/sbin/ifconfig

2009-04-21 Thread David Young
/ifconfig/af_link.c Tue Apr 21 18:00:25 2009 @@ -1,4 +1,4 @@ -/* $NetBSD: af_link.c,v 1.3 2008/07/02 07:44:14 dyoung Exp $ */ +/* $NetBSD: af_link.c,v 1.4 2009/04/21 18:00:25 dyoung Exp $ */ /*- * Copyright (c) 2008 David Young. All rights reserved. @@ -27,7 +27,7 @@ #include #ifndef lint

CVS commit: src/sbin/ifconfig

2009-04-21 Thread David Young
21:42:35 dyoung Exp $ */ /*- * Copyright (c) 2008 David Young. All rights reserved. @@ -27,7 +27,7 @@ #include #ifndef lint -__RCSID("$NetBSD: af_link.c,v 1.4 2009/04/21 18:00:25 dyoung Exp $"); +__RCSID("$NetBSD: af_link.c,v 1.5 2009/04/21 21:42:35 dyoung Exp $"); #endif /* no

CVS commit: src/sbin/ifconfig

2009-04-21 Thread David Young
Module Name:src Committed By: dyoung Date: Tue Apr 21 21:57:14 UTC 2009 Modified Files: src/sbin/ifconfig: ifconfig.c Log Message: There's no use casting a socket address to sockaddr_dl, only to cast it back to sockaddr, so don't do it. To generate a diff of this commit:

CVS commit: src/sbin/ifconfig

2009-04-21 Thread David Young
Module Name:src Committed By: dyoung Date: Tue Apr 21 22:13:10 UTC 2009 Modified Files: src/sbin/ifconfig: ifconfig.c Log Message: Cosmetic: add some whitespace for my ease of reading. To generate a diff of this commit: cvs rdiff -u -r1.216 -r1.217 src/sbin/ifconfig/ifco

CVS commit: src/sbin/ifconfig

2009-04-21 Thread David Young
*/ +/* $NetBSD: af_link.c,v 1.6 2009/04/21 22:46:39 dyoung Exp $ */ /*- * Copyright (c) 2008 David Young. All rights reserved. @@ -27,7 +27,7 @@ #include #ifndef lint -__RCSID("$NetBSD: af_link.c,v 1.5 2009/04/21 21:42:35 dyoung Exp $"); +__RCSID("$NetBSD: af_link.c,v 1.6

CVS commit: src/lib/libc/net

2009-04-21 Thread David Young
Module Name:src Committed By: dyoung Date: Tue Apr 21 23:27:09 UTC 2009 Modified Files: src/lib/libc/net: getifaddrs.3 Log Message: For non-AF_LINK ifaddrs, ifa_data is NULL. AFAICT, this has always been so. Say so in the documentation. To generate a diff of this commi

CVS commit: src

2009-04-27 Thread David Young
TAX_NETMASK: Index: src/sbin/ifconfig/util.c diff -u src/sbin/ifconfig/util.c:1.10 src/sbin/ifconfig/util.c:1.11 --- src/sbin/ifconfig/util.c:1.10 Tue Apr 21 22:46:39 2009 +++ src/sbin/ifconfig/util.c Mon Apr 27 20:10:49 2009 @@ -1,4 +1,4 @@ -/* $NetBSD: util.c,v 1.10 2009/04/21 22:46:39 dyoung Exp

CVS commit: src/sys

2009-04-28 Thread David Young
Module Name:src Committed By: dyoung Date: Tue Apr 28 20:54:50 UTC 2009 Modified Files: src/sys/kern: uipc_domain.c src/sys/sys: socket.h Log Message: Extract sockaddr_any_by_family() from sockaddr_any() for looking up a wildcard ("any") address by protocol family

CVS commit: src/sys/kern

2009-04-28 Thread David Young
Module Name:src Committed By: dyoung Date: Tue Apr 28 20:56:40 UTC 2009 Modified Files: src/sys/kern: uipc_domain.c Log Message: Cosmetic: remove unnecessary parentheses. To generate a diff of this commit: cvs rdiff -u -r1.80 -r1.81 src/sys/kern/uipc_domain.c Please not

CVS commit: src/sys/net

2009-04-28 Thread David Young
Module Name:src Committed By: dyoung Date: Tue Apr 28 21:26:52 UTC 2009 Modified Files: src/sys/net: if_ethersubr.c Log Message: Let this build with 'no options INET'. (I don't know why I bothered, either.) To generate a diff of this commit: cvs rdiff -u -r1.170 -r1.171

CVS commit: src/sys/dev/pci

2009-04-28 Thread David Young
Module Name:src Committed By: dyoung Date: Tue Apr 28 22:43:51 UTC 2009 Modified Files: src/sys/dev/pci: hifn7751.c Log Message: Use device_t, cfdata_t, and device_private(). To generate a diff of this commit: cvs rdiff -u -r1.41 -r1.42 src/sys/dev/pci/hifn7751.c Please

CVS commit: src/sys/net

2009-04-28 Thread David Young
Module Name:src Committed By: dyoung Date: Tue Apr 28 23:05:26 UTC 2009 Modified Files: src/sys/net: if_gre.c Log Message: Let this build even if 'no options INET'. To generate a diff of this commit: cvs rdiff -u -r1.139 -r1.140 src/sys/net/if_gre.c Please note that dif

CVS commit: src/sys/kern

2009-04-28 Thread David Young
Module Name:src Committed By: dyoung Date: Wed Apr 29 01:03:43 UTC 2009 Modified Files: src/sys/kern: vfs_subr.c vfs_syscalls.c Log Message: Extract common code from vfs_rootmountalloc(9) and mount_domount() into a new struct mount-allocation routine, vfs_mountalloc(9). D

CVS commit: src/sys

2009-04-29 Thread David Young
Module Name:src Committed By: dyoung Date: Wed Apr 29 15:44:56 UTC 2009 Modified Files: src/sys/kern: vfs_subr.c src/sys/sys: mount.h Log Message: Extract vfs_unmountall1() from vfs_unmountall() for reuse. To generate a diff of this commit: cvs rdiff -u -r1.376 -

<    1   2   3   4   5   6   7   8   9   10   >