CVS commit: src/sys/dev/dkwedge

2009-07-01 Thread David Young
Module Name:src Committed By: dyoung Date: Thu Jul 2 00:56:48 UTC 2009 Modified Files: src/sys/dev/dkwedge: dk.c Log Message: Extract subroutine dklastclose(). This is a step toward detachable dk(4). To generate a diff of this commit: cvs rdiff -u -r1.45 -r1.46

CVS commit: src/sys/dev

2009-07-01 Thread David Young
Module Name:src Committed By: dyoung Date: Thu Jul 2 02:06:11 UTC 2009 Modified Files: src/sys/dev: vnd.c Log Message: In vndopen(), release the lock before returning ENXIO. To generate a diff of this commit: cvs rdiff -u -r1.201 -r1.202 src/sys/dev/vnd.c Please note

CVS commit: src

2009-07-02 Thread David Young
Module Name:src Committed By: dyoung Date: Thu Jul 2 17:45:26 UTC 2009 Modified Files: src/sbin/ifconfig: ifconfig.8 src/usr.sbin/wiconfig: wiconfig.8 Log Message: Deprecate wiconfig's -r, -g, -m options. Note that equivalent options are available in

CVS commit: src/sbin/ifconfig

2009-07-02 Thread David Young
Module Name:src Committed By: dyoung Date: Thu Jul 2 18:43:47 UTC 2009 Modified Files: src/sbin/ifconfig: ifconfig.8 Log Message: Use the keyword 'MAC' so that people looking for a way to change their MAC address can find the example. To generate a diff of this commit:

CVS commit: src/sys/dev

2009-07-07 Thread David Young
Module Name:src Committed By: dyoung Date: Tue Jul 7 19:51:22 UTC 2009 Modified Files: src/sys/dev: vnd.c Log Message: At the bottom of vndclear(), clear VNF_CLEARING: it is no longer needed to exclude vndopen(), and it will prevent subsequent opens if we leave it. To

CVS commit: src/sys/kern

2009-07-10 Thread David Young
Module Name:src Committed By: dyoung Date: Fri Jul 10 23:07:55 UTC 2009 Modified Files: src/sys/kern: kern_lwp.c Log Message: In lwp_create(), take a reference to l2's filedesc_t instead of taking a reference to curlwp's by calling fd_hold(). If lwp_create() is called

CVS commit: src/doc

2009-07-14 Thread David Young
Module Name:src Committed By: dyoung Date: Tue Jul 14 18:25:55 UTC 2009 Modified Files: src/doc: CHANGES Log Message: Mention cpu_reboot(9) changes. To generate a diff of this commit: cvs rdiff -u -r1.1253 -r1.1254 src/doc/CHANGES Please note that diffs are not public

CVS commit: src/sys/dev

2009-07-15 Thread David Young
Module Name:src Committed By: dyoung Date: Thu Jul 16 01:01:47 UTC 2009 Modified Files: src/sys/dev/ic: mfi.c mfivar.h src/sys/dev/pci: mfi_pci.c Log Message: Add a rudimentary detachment hook for mfi(4). To generate a diff of this commit: cvs rdiff -u -r1.23

CVS commit: src/sys/dev

2009-07-16 Thread David Young
Module Name:src Committed By: dyoung Date: Thu Jul 16 18:10:01 UTC 2009 Modified Files: src/sys/dev/ic: mfi.c mfivar.h src/sys/dev/pci: mfi_pci.c Log Message: device_t/softc split. Tested and shown to work on a Dell PowerEdge 1950. To generate a diff of this

CVS commit: src/sys/dev

2009-07-16 Thread David Young
Module Name:src Committed By: dyoung Date: Thu Jul 16 18:58:38 UTC 2009 Modified Files: src/sys/dev/ic: mfi.c mfivar.h src/sys/dev/pci: mfi_pci.c Log Message: Let us detach re-attach children of mfi0. Detach mfi0 at shutdown. Detachment may fail after freeing

CVS commit: src/sbin/fsck

2009-07-16 Thread David Young
Module Name:src Committed By: dyoung Date: Thu Jul 16 23:50:32 UTC 2009 Modified Files: src/sbin/fsck: partutil.c Log Message: Callers expect getdiskinfo() to return -1 on error, so do that. Simplify getdiskinfo() a bit while I am here: don't save error codes that we

CVS commit: src/sys/kern

2009-07-16 Thread David Young
Module Name:src Committed By: dyoung Date: Thu Jul 16 23:53:10 UTC 2009 Modified Files: src/sys/kern: Make.tags.inc Log Message: A definition in aic79xxvar.h somehow shadows pci_attach_args (ctags bug?), so leave it out of the tags computation for now. To generate a

CVS commit: src/sys/kern

2009-07-17 Thread David Young
Module Name:src Committed By: dyoung Date: Fri Jul 17 22:17:37 UTC 2009 Modified Files: src/sys/kern: kern_lock.c Log Message: Fix spelling: situatations - situations. To generate a diff of this commit: cvs rdiff -u -r1.148 -r1.149 src/sys/kern/kern_lock.c Please note

CVS commit: src/sys/arch/x86

2009-07-20 Thread David Young
Module Name:src Committed By: dyoung Date: Mon Jul 20 19:11:30 UTC 2009 Modified Files: src/sys/arch/x86/include: ipmivar.h src/sys/arch/x86/x86: ipmi.c Log Message: Overhaul synchronization in ipmi(4): synchronize all access to device registers with a mutex.

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

2009-07-20 Thread David Young
Module Name:src Committed By: dyoung Date: Mon Jul 20 19:25:07 UTC 2009 Modified Files: src/sys/arch/x86/x86: ipmi.c Log Message: In ipmi_match(), initialize the condition variable sc_cmd_sleep. Fixes a bug in previous, exposed by # drvctl -d ipmi0 # drvctl -r -a ipmibus

CVS commit: src/sys/arch/evbarm/ifpga

2009-07-21 Thread David Young
Module Name:src Committed By: dyoung Date: Tue Jul 21 16:04:16 UTC 2009 Modified Files: src/sys/arch/evbarm/ifpga: ifpga.c ifpga_clock.c ifpga_pci.c ifpga_pcivar.h ifpgavar.h pl030_rtc.c Log Message: device_t/softc split. Compiled, but never run. To

CVS commit: src/sys/dev/pci

2009-07-23 Thread David Young
Module Name:src Committed By: dyoung Date: Thu Jul 23 21:22:25 UTC 2009 Modified Files: src/sys/dev/pci: pccbb.c pccbbvar.h Log Message: Use kpause(9), cv_timedwait(9), and cv_signal(9) instead of tsleep(9) and wakeup(9). Use mstohz(9). XXX Protection against spurious

CVS commit: src/sys/dev

2009-07-23 Thread David Young
Module Name:src Committed By: dyoung Date: Thu Jul 23 21:38:33 UTC 2009 Modified Files: src/sys/dev: ld.c Log Message: Extract ldlastclose() and use it in ldclose(). At the top of ldbegindetach(), call disk_begindetach(..., ldlastclose, ...). Compiles. Not tested. To

CVS commit: src/sys/dev/raidframe

2009-07-23 Thread David Young
Module Name:src Committed By: dyoung Date: Thu Jul 23 21:58:06 UTC 2009 Modified Files: src/sys/dev/raidframe: rf_netbsdkintf.c Log Message: Move the RAID shutdown to the raid(4) detachment routine, and use config_detach(9) to shutdown a RAID. Detach raid(4) units at

CVS commit: src/sys/arch/xen/conf

2009-07-24 Thread David Young
Module Name:src Committed By: dyoung Date: Fri Jul 24 21:22:22 UTC 2009 Modified Files: src/sys/arch/xen/conf: files.xen Log Message: There's no such file as arch/i386/i386/core_machdep.c, so don't list it here. To generate a diff of this commit: cvs rdiff -u -r1.100

CVS commit: src/sys/dev

2009-07-27 Thread David Young
Module Name:src Committed By: dyoung Date: Mon Jul 27 18:10:54 UTC 2009 Modified Files: src/sys/dev/ic: gem.c gemvar.h src/sys/dev/pci: if_gem_pci.c src/sys/dev/sbus: if_gem_sbus.c Log Message: Do a complete device_t/softc split for the PCI attachment. I

CVS commit: src/sys/dev

2009-07-28 Thread David Young
Module Name:src Committed By: dyoung Date: Tue Jul 28 17:55:27 UTC 2009 Modified Files: src/sys/dev: md.c Log Message: Make mdopen() and mdclose() maintain the openmask. md_detach() depends on the openmask to know whether it should either return EBUSY because the device

CVS commit: src/sbin/ifconfig

2009-07-28 Thread David Young
Module Name:src Committed By: dyoung Date: Tue Jul 28 18:22:33 UTC 2009 Modified Files: src/sbin/ifconfig: vlan.c Log Message: Don't require a vlan argument with -vlanif. ifconfig vlan0 -vlanif works as one would expect, now. To generate a diff of this commit: cvs

CVS commit: src/sys/netinet6

2009-07-30 Thread David Young
Module Name:src Committed By: dyoung Date: Thu Jul 30 17:28:36 UTC 2009 Modified Files: src/sys/netinet6: in6_ifattach.c Log Message: Fix typo in comment, s/SIOCSIFADDR/SIOCINITIFADDR/. To generate a diff of this commit: cvs rdiff -u -r1.81 -r1.82

CVS commit: src/sys/netinet6

2009-08-04 Thread David Young
Module Name:src Committed By: dyoung Date: Tue Aug 4 22:04:23 UTC 2009 Modified Files: src/sys/netinet6: mld6.c Log Message: Use malloc(...|M_ZERO) instead of malloc(...) followed by memset(,0,). To generate a diff of this commit: cvs rdiff -u -r1.50 -r1.51

CVS commit: src/sys/dev

2009-08-06 Thread David Young
Module Name:src Committed By: dyoung Date: Fri Aug 7 00:07:39 UTC 2009 Modified Files: src/sys/dev: dkvar.h Log Message: Put the entire expression that DK_BUSY() evaluates to in parentheses for safety. To generate a diff of this commit: cvs rdiff -u -r1.13 -r1.14

CVS commit: src/sys/dev

2009-08-06 Thread David Young
Module Name:src Committed By: dyoung Date: Fri Aug 7 00:08:07 UTC 2009 Modified Files: src/sys/dev: vnd.c Log Message: Re-use DK_BUSY(). To generate a diff of this commit: cvs rdiff -u -r1.203 -r1.204 src/sys/dev/vnd.c Please note that diffs are not public domain;

CVS commit: src/sbin/ifconfig

2009-08-07 Thread David Young
18:53:37 dyoung Exp $ */ /*- * Copyright (c) 2008 David Young. All rights reserved. @@ -27,7 +27,7 @@ #include sys/cdefs.h #ifndef lint -__RCSID($NetBSD: util.c,v 1.11 2009/04/27 20:10:49 dyoung Exp $); +__RCSID($NetBSD: util.c,v 1.12 2009/08/07 18:53:37 dyoung Exp $); #endif /* not lint

CVS commit: src/sbin/ifconfig

2009-08-07 Thread David Young
Module Name:src Committed By: dyoung Date: Fri Aug 7 19:35:55 UTC 2009 Modified Files: src/sbin/ifconfig: af_inet.c Log Message: Use getnameinfo(3) instead of inet_ntoa(3) to convert IPv4 addresses to names. To generate a diff of this commit: cvs rdiff -u -r1.12 -r1.13

CVS commit: src/sbin/ifconfig

2009-08-07 Thread David Young
Module Name:src Committed By: dyoung Date: Fri Aug 7 20:13:12 UTC 2009 Modified Files: src/sbin/ifconfig: ifconfig.8 Log Message: Describe the -N flag. To generate a diff of this commit: cvs rdiff -u -r1.99 -r1.100 src/sbin/ifconfig/ifconfig.8 Please note that diffs

CVS commit: src/sys/kern

2011-01-31 Thread David Young
Module Name:src Committed By: dyoung Date: Mon Jan 31 23:00:34 UTC 2011 Modified Files: src/sys/kern: subr_autoconf.c Log Message: If there are readers or writers in the alldevs list, don't remove a device_t out from under them, but tag it for deletion, later. To

CVS commit: src/sys

2011-01-31 Thread David Young
Module Name:src Committed By: dyoung Date: Mon Jan 31 23:07:17 UTC 2011 Modified Files: src/sys/kern: kern_stub.c subr_autoconf.c src/sys/sys: device.h Log Message: Let the linker instead of the C preprocessor configure the kernel: make weak aliases

CVS commit: src/share/man/man4

2011-02-01 Thread David Young
Module Name:src Committed By: dyoung Date: Tue Feb 1 15:53:31 UTC 2011 Modified Files: src/share/man/man4: pty.4 Log Message: Describe TIOCEXT. Improve description of TIOCPKT_IOCTL. Tell the width of some TIOCxxx parameters. To generate a diff of this commit: cvs

CVS commit: src/sys/dev/pci

2011-02-01 Thread David Young
Module Name:src Committed By: dyoung Date: Tue Feb 1 19:37:37 UTC 2011 Modified Files: src/sys/dev/pci: pci.c Log Message: During shutdown, restore the each PCI device's bus-mastering enable to the state that we found it in before attaching a driver to it. To generate

CVS commit: src/sys/netinet6

2011-02-06 Thread David Young
Module Name:src Committed By: dyoung Date: Sun Feb 6 19:12:55 UTC 2011 Modified Files: src/sys/netinet6: in6.c Log Message: Delete unnecessary casts to void *. No functional change intended. Same assembly generated before and after this change. To generate a diff of

CVS commit: src/sbin

2011-02-16 Thread David Young
Module Name:src Committed By: dyoung Date: Wed Feb 16 17:53:31 UTC 2011 Modified Files: src/sbin/reboot: reboot.8 reboot.c src/sbin/shutdown: shutdown.8 shutdown.c Log Message: Add flags -v, -x, and -z for verbose, debug, and silent shutdowns, respectively, by

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

2011-02-20 Thread David Young
Module Name:src Committed By: dyoung Date: Mon Feb 21 00:39:54 UTC 2011 Modified Files: src/sys/arch/i386/stand/lib: libi386.h Log Message: biosdisk_getextinfo() returns 0 on success, non-zero on failure, so change its return type from void to int. To generate a diff of

CVS commit: src/sys/dev/pci

2011-02-22 Thread David Young
Module Name:src Committed By: dyoung Date: Tue Feb 22 21:19:32 UTC 2011 Modified Files: src/sys/dev/pci: if_wm.c Log Message: Use /*FALLTHROUGH*/. To generate a diff of this commit: cvs rdiff -u -r1.219 -r1.220 src/sys/dev/pci/if_wm.c Please note that diffs are not

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

2011-02-22 Thread David Young
Module Name:src Committed By: dyoung Date: Tue Feb 22 23:57:22 UTC 2011 Modified Files: src/sys/arch/i386/conf: ALL Log Message: Add CardBus to PCI bridge, ppb at cardbus, but comment it out for now. To generate a diff of this commit: cvs rdiff -u -r1.291 -r1.292

CVS commit: src/usr.sbin/mrouted

2011-02-22 Thread David Young
Module Name:src Committed By: dyoung Date: Wed Feb 23 01:23:04 UTC 2011 Modified Files: src/usr.sbin/mrouted: defs.h kern.c Log Message: Don't use bool as a variable name. Remove a bunch of parameter names form function prototypes. To generate a diff of this commit:

CVS commit: src/sys/dev

2011-02-23 Thread David Young
Module Name:src Committed By: dyoung Date: Wed Feb 23 16:20:30 UTC 2011 Modified Files: src/sys/dev: radio.c Log Message: Correct device_t/softc split and, while I am here, delete commented-out code. Patrick Welche says that this patch fixes the problem that he reported

CVS commit: src/sys/ufs/ffs

2011-02-23 Thread David Young
Module Name:src Committed By: dyoung Date: Wed Feb 23 17:05:33 UTC 2011 Modified Files: src/sys/ufs/ffs: ffs_snapshot.c Log Message: Initialize blkno to 0 right before the snapblkaddr() call that GCC does not understand so that if ffs_copyonwrite() sprouts a new code path

CVS commit: src/usr.bin/netstat

2011-03-01 Thread David Young
Module Name:src Committed By: dyoung Date: Tue Mar 1 19:01:59 UTC 2011 Modified Files: src/usr.bin/netstat: Makefile inet.c Added Files: src/usr.bin/netstat: pfsync.c Log Message: Pull pfsync_stats() out of inet.c and into pfsync.c so that inet.c does not have to

CVS commit: src/usr.bin/netstat

2011-03-02 Thread David Young
Module Name:src Committed By: dyoung Date: Wed Mar 2 19:52:04 UTC 2011 Modified Files: src/usr.bin/netstat: inet.c Log Message: Use __arraycount() and PRIu64. Delete unnecessary casts to unsigned long long. To generate a diff of this commit: cvs rdiff -u -r1.94 -r1.95

CVS commit: src/sys/netiso

2011-03-09 Thread David Young
Module Name:src Committed By: dyoung Date: Wed Mar 9 22:04:53 UTC 2011 Modified Files: src/sys/netiso: if_eon.c Log Message: Remove ifa == NULL check, ifa cannot be NULL. To generate a diff of this commit: cvs rdiff -u -r1.69 -r1.70 src/sys/netiso/if_eon.c Please note

CVS commit: src/sys/netnatm

2011-03-09 Thread David Young
Module Name:src Committed By: dyoung Date: Wed Mar 9 22:06:42 UTC 2011 Modified Files: src/sys/netnatm: natm.c Log Message: unifdef -U__OpenBSD__ -D__NetBSD__ -U__FreeBSD__ for readability. No functional change intended. To generate a diff of this commit: cvs rdiff -u

CVS commit: src/external/public-domain/xz/bin

2011-03-18 Thread David Young
Module Name:src Committed By: dyoung Date: Fri Mar 18 19:45:27 UTC 2011 Modified Files: src/external/public-domain/xz/bin: Makefile Log Message: Obey MKNLS=no. To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 src/external/public-domain/xz/bin/Makefile Please

CVS commit: src/sys/arch/amd64

2011-03-18 Thread David Young
Module Name:src Committed By: dyoung Date: Fri Mar 18 19:46:20 UTC 2011 Modified Files: src/sys/arch/amd64: Makefile Log Message: Fix tags target. To generate a diff of this commit: cvs rdiff -u -r1.6 -r1.7 src/sys/arch/amd64/Makefile Please note that diffs are not

CVS commit: src/sys/arch/i386

2011-03-18 Thread David Young
Module Name:src Committed By: dyoung Date: Fri Mar 18 19:48:12 UTC 2011 Modified Files: src/sys/arch/i386: Makefile Log Message: Simplify tags target to reduce diffs with amd64/Makefile tags target. To generate a diff of this commit: cvs rdiff -u -r1.38 -r1.39

CVS commit: src/sys/dev/ic

2010-03-15 Thread David Young
/ic/rtw.c:1.114 Wed Feb 24 22:37:58 2010 +++ src/sys/dev/ic/rtw.c Mon Mar 15 23:21:08 2010 @@ -1,4 +1,4 @@ -/* $NetBSD: rtw.c,v 1.114 2010/02/24 22:37:58 dyoung Exp $ */ +/* $NetBSD: rtw.c,v 1.115 2010/03/15 23:21:08 dyoung Exp $ */ /*- * Copyright (c) 2004, 2005, 2006, 2007 David Young. All

CVS commit: src/sys/dev/cardbus

2010-03-18 Thread David Young
Module Name:src Committed By: dyoung Date: Thu Mar 18 20:52:43 UTC 2010 Modified Files: src/sys/dev/cardbus: if_fxp_cardbus.c Log Message: Simplify interrupt (dis)establishment by two source transformations: - cardbus_intr_disestablish(cc, cf, ih); +

CVS commit: src/sys/dev/cardbus

2010-03-18 Thread David Young
Module Name:src Committed By: dyoung Date: Thu Mar 18 20:54:56 UTC 2010 Modified Files: src/sys/dev/cardbus: adv_cardbus.c ahc_cardbus.c com_cardbus.c siisata_cardbus.c uhci_cardbus.c Log Message: This is *always* compiled with #define rbus 1, so get rid of

CVS commit: src/sys/dev/ic

2010-03-18 Thread David Young
Oct 19 23:19:39 2009 +++ src/sys/dev/ic/ath_netbsd.h Fri Mar 19 01:31:11 2010 @@ -1,4 +1,4 @@ -/* $NetBSD: ath_netbsd.h,v 1.9 2009/10/19 23:19:39 rmind Exp $ */ +/* $NetBSD: ath_netbsd.h,v 1.10 2010/03/19 01:31:11 dyoung Exp $ */ /*- * Copyright (c) 2003, 2004 David Young @@ -27,6 +27,8

CVS commit: src/sys/dev/ic

2010-03-18 Thread David Young
Module Name:src Committed By: dyoung Date: Fri Mar 19 01:32:30 UTC 2010 Modified Files: src/sys/dev/ic: athvar.h Log Message: Don't pick up the network-interface, ethernet, and 802.11-related definitions by chance (or by the bus-specific front-end #including them!).

CVS commit: src/sys/dev/cardbus

2010-03-18 Thread David Young
Module Name:src Committed By: dyoung Date: Fri Mar 19 01:34:46 UTC 2010 Modified Files: src/sys/dev/cardbus: if_ex_cardbus.c Log Message: Use Cardbus_intr_disestablish() instead of cardbus_intr_disestablish(). Get rid of a (short) staircase in ex_cardbus_detach(). To

CVS commit: src/sys/dev/cardbus

2010-03-18 Thread David Young
Module Name:src Committed By: dyoung Date: Fri Mar 19 01:44:05 UTC 2010 Modified Files: src/sys/dev/cardbus: cardslot.c Log Message: Remove superfluous cast (device_t to device_t). To generate a diff of this commit: cvs rdiff -u -r1.51 -r1.52

CVS commit: src/share/man/man3

2010-03-19 Thread David Young
, and David Young. +.\ +.\ Redistribution and use in source and binary forms, with or without +.\ modification, are permitted provided that the following conditions +.\ are met: +.\ 1. Redistributions of source code must retain the above copyright +.\notice, this list of conditions

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

2010-03-19 Thread David Young
Module Name:src Committed By: dyoung Date: Sat Mar 20 00:02:59 UTC 2010 Modified Files: src/sys/arch/x86/include: pci_machdep_common.h Log Message: Add a prototype for pci_mmio_range_infer() that will infer the range of memory forwarded by the host chipset to PCI. To

CVS commit: src/sys/dev/pci

2010-03-19 Thread David Young
Module Name:src Committed By: dyoung Date: Sat Mar 20 00:23:42 UTC 2010 Modified Files: src/sys/dev/pci: pcireg.h Log Message: Add PCI_BAR(n) for the nth Base Address Register. To generate a diff of this commit: cvs rdiff -u -r1.66 -r1.67 src/sys/dev/pci/pcireg.h

CVS commit: src/sys/dev/ic

2010-03-22 Thread David Young
Module Name:src Committed By: dyoung Date: Mon Mar 22 17:11:19 UTC 2010 Modified Files: src/sys/dev/ic: elinkxl.c elinkxlvar.h Log Message: Add a self-suspensor. It's not used, yet. In ex_detach(), call ex_stop(), first. ex_stop() stops the callout. Destroy the callout

CVS commit: src/sys/dev/ic

2010-03-22 Thread David Young
Module Name:src Committed By: dyoung Date: Mon Mar 22 17:12:09 UTC 2010 Modified Files: src/sys/dev/ic: i82557.c Log Message: Check whether the fxp(4) actually attached before calling fxp_stop(). To generate a diff of this commit: cvs rdiff -u -r1.133 -r1.134

CVS commit: src/sys/dev/pci

2010-03-22 Thread David Young
Module Name:src Committed By: dyoung Date: Mon Mar 22 16:17:43 UTC 2010 Modified Files: src/sys/dev/pci: if_fxp_pci.c Log Message: Add a detach routine. Enable detachment at shutdown. psc_pwrmgmt_csr_reg was never initialized to the actual offset of the PCI PMCSR! Just

CVS commit: src/sys/dev/ic

2010-03-22 Thread David Young
Module Name:src Committed By: dyoung Date: Mon Mar 22 16:11:58 UTC 2010 Modified Files: src/sys/dev/ic: i82557.c Log Message: In fxp_detach(), fxp_stop(), first. fxp_stop() stops the callout. Destroy the callout in fxp_detach(). To generate a diff of this commit: cvs

CVS commit: src/sys/dev/isa

2010-03-22 Thread David Young
Module Name:src Committed By: dyoung Date: Mon Mar 22 22:30:58 UTC 2010 Modified Files: src/sys/dev/isa: isadma.c pcdisplay.c Log Message: isadma.c: #if 0 some diagnostic code that compares two bus_space_tag_t's. pcdisplay.c: #if 0 some code that compares two

CVS commit: src/sys/dev/pci

2010-03-22 Thread David Young
Module Name:src Committed By: dyoung Date: Mon Mar 22 22:36:07 UTC 2010 Modified Files: src/sys/dev/pci: cy82c693.c Log Message: #if 0 some diagnostic code that compares two bus_space_tag_t's. MI code should not compare an opaque type such as bus_space_tag_t! To

CVS commit: src/sys/dev/pci

2010-03-22 Thread David Young
Module Name:src Committed By: dyoung Date: Mon Mar 22 22:39:49 UTC 2010 Modified Files: src/sys/dev/pci: viaide.c Log Message: Activate PCI memory-mapped I/O access in the PCI Control and Status Register if the PCI BAR is the memory-mapped type. The driver used to decide

CVS commit: src/sys/dev/ic

2010-03-22 Thread David Young
Module Name:src Committed By: dyoung Date: Mon Mar 22 23:00:08 UTC 2010 Modified Files: src/sys/dev/ic: com.c Log Message: MI code should not compare bus_space_tag_t! Introduce tags_are_equal() for comparing two bus_space_tag_t's. It is always true. Everywhere that

CVS commit: src/sys/dev/ic

2010-03-22 Thread David Young
Module Name:src Committed By: dyoung Date: Mon Mar 22 23:00:47 UTC 2010 Modified Files: src/sys/dev/ic: pdqvar.h Log Message: sc_csr_memmapped is true iff the device registers are memory-mapped. To generate a diff of this commit: cvs rdiff -u -r1.43 -r1.44

CVS commit: src/sys/dev/eisa

2010-03-22 Thread David Young
Module Name:src Committed By: dyoung Date: Mon Mar 22 23:01:10 UTC 2010 Modified Files: src/sys/dev/eisa: if_fea.c Log Message: Set/test sc_csr_memmapped instead of comparing bus_space_tag_t's. To generate a diff of this commit: cvs rdiff -u -r1.43 -r1.44

CVS commit: src/sys/dev

2010-03-22 Thread David Young
Module Name:src Committed By: dyoung Date: Mon Mar 22 23:03:30 UTC 2010 Modified Files: src/sys/dev/cardbus: if_ex_cardbus.c src/sys/dev/ic: elinkxlvar.h src/sys/dev/pci: if_ex_pci.c Log Message: ex_softc.ex_bustype is written but never read. Just get rid

CVS commit: src/sys/dev/ic

2010-03-22 Thread David Young
Module Name:src Committed By: dyoung Date: Mon Mar 22 23:08:34 UTC 2010 Modified Files: src/sys/dev/ic: pckbc.c tcic2.c vga.c Log Message: pckbc.c, vga.c: It doesn't appear to be helpful to compare two bus_space_tag_t's in pckbc_is_console() and vga_is_console(), and

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

2010-03-22 Thread David Young
Module Name:src Committed By: dyoung Date: Mon Mar 22 23:21:30 UTC 2010 Modified Files: src/sys/arch/x86/x86: ipmi.c Log Message: A lot of good it does to printf() a bus_space_tag_t. Don't do it. To generate a diff of this commit: cvs rdiff -u -r1.44 -r1.45

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

2010-03-23 Thread David Young
Module Name:src Committed By: dyoung Date: Tue Mar 23 21:18:23 UTC 2010 Modified Files: src/sys/arch/i386/mca: mca_machdep.c Log Message: dmaiot is supposed to be a bus_space_tag_t, not a bus_space_handle_t. Make it so. To generate a diff of this commit: cvs rdiff -u

CVS commit: src/sys/dev/pci

2010-03-23 Thread David Young
Module Name:src Committed By: dyoung Date: Tue Mar 23 21:22:25 UTC 2010 Modified Files: src/sys/dev/pci: if_hme_pci.c Log Message: Use the PCI BAR type to decide which I/O enables to set. TBD: Put back the old BAR #definition, s/PCI_BAR(0)/PCI_HME_BASEADDR/. To

CVS commit: src/sys/dev/pci

2010-03-23 Thread David Young
Module Name:src Committed By: dyoung Date: Tue Mar 23 21:51:39 UTC 2010 Modified Files: src/sys/dev/pci: if_hme_pci.c Log Message: Put back PCI_HME_BASEADDR. To generate a diff of this commit: cvs rdiff -u -r1.33 -r1.34 src/sys/dev/pci/if_hme_pci.c Please note that

CVS commit: src/sys/dev/pci

2010-03-23 Thread David Young
Module Name:src Committed By: dyoung Date: Tue Mar 23 21:54:23 UTC 2010 Modified Files: src/sys/dev/pci: if_hme_pci.c Log Message: In the #definition of PCI_HME_BASEADDR, use PCI_BAR(0) instead of the anonymous constant 0x10. To generate a diff of this commit: cvs rdiff

CVS commit: src/sys/dev

2010-03-23 Thread David Young
Module Name:src Committed By: dyoung Date: Wed Mar 24 01:13:30 UTC 2010 Modified Files: src/sys/dev/acpi: acpi_ec.c src/sys/dev/isa: pas.c Log Message: Do not use unitialized bus_space_tag_t's. Use the tag(s) from the attachment arguments. To generate a diff of

CVS commit: src/sys/net80211

2010-03-26 Thread David Young
Module Name:src Committed By: dyoung Date: Fri Mar 26 17:18:05 UTC 2010 Modified Files: src/sys/net80211: ieee80211.c Log Message: In ieee80211_media_init(), change a pointer that we never write through to a pointer to const. To generate a diff of this commit: cvs rdiff

CVS commit: src/sys/dev/acpi

2010-03-29 Thread David Young
Module Name:src Committed By: dyoung Date: Mon Mar 29 16:35:59 UTC 2010 Modified Files: src/sys/dev/acpi: acpi.c acpi_ec.c Log Message: Attach acpiecdt with acpibus_attach_args. Sverre Froyen reports that this helps his Thinkpad boot again. To generate a diff of this

CVS commit: src/sys/arch/xen

2010-03-30 Thread David Young
Module Name:src Committed By: dyoung Date: Wed Mar 31 00:00:33 UTC 2010 Modified Files: src/sys/arch/xen: Makefile Log Message: Include more sources in the tags target. Don't compute tags on some non-existent assembly-language files. To generate a diff of this commit:

CVS commit: src/sys/dev/cardbus

2010-03-31 Thread David Young
Module Name:src Committed By: dyoung Date: Thu Apr 1 05:58:52 UTC 2010 Modified Files: src/sys/dev/cardbus: siisata_cardbus.c Log Message: Cosmetic: join a couple of lines. Stop storing the value of a BAR in a temporary variable with the name 'csr'. To generate a diff

CVS commit: src/sys/net80211

2010-04-01 Thread David Young
Module Name:src Committed By: dyoung Date: Fri Apr 2 03:46:50 UTC 2010 Modified Files: src/sys/net80211: ieee80211.c Log Message: Delete ieee80211_setbasicrates(). It's buggy, and we drivers can get along fine without it. To generate a diff of this commit: cvs rdiff

CVS commit: src/sys/dev/ic

2010-04-16 Thread David Young
Module Name:src Committed By: dyoung Date: Fri Apr 16 18:58:39 UTC 2010 Modified Files: src/sys/dev/ic: pcf8584.c Log Message: #include sys/bus.h instead of machine/bus.h. No functional change intended. To generate a diff of this commit: cvs rdiff -u -r1.8 -r1.9

CVS commit: src/sys/dev/ic

2010-04-16 Thread David Young
Module Name:src Committed By: dyoung Date: Fri Apr 16 18:59:12 UTC 2010 Modified Files: src/sys/dev/ic: cs4231.c Log Message: #include sys/bus.h instead of machine/bus.h. No functional change intended. To generate a diff of this commit: cvs rdiff -u -r1.24 -r1.25

CVS commit: src/share/man/man9

2010-04-16 Thread David Young
Module Name:src Committed By: dyoung Date: Fri Apr 16 20:05:37 UTC 2010 Modified Files: src/share/man/man9: bus_space.9 Log Message: Describe bus_space_is_equal(9). To generate a diff of this commit: cvs rdiff -u -r1.39 -r1.40 src/share/man/man9/bus_space.9 Please note

CVS commit: src

2010-04-16 Thread David Young
Module Name:src Committed By: dyoung Date: Fri Apr 16 20:08:51 UTC 2010 Modified Files: src/distrib/sets/lists/comp: mi src/share/man/man9: Makefile Log Message: Add a link, bus_space_is_equal.9 - bus_space.9. To generate a diff of this commit: cvs rdiff -u

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

2010-04-20 Thread David Young
Module Name:src Committed By: dyoung Date: Tue Apr 20 22:37:25 UTC 2010 Modified Files: src/sys/arch/i386/isa: isapnp_machdep.c Log Message: Re-uppercase x86_bus_space_io. To generate a diff of this commit: cvs rdiff -u -r1.14 -r1.15

CVS commit: src/sys/dev/pci

2010-04-20 Thread David Young
Module Name:src Committed By: dyoung Date: Tue Apr 20 23:39:11 UTC 2010 Modified Files: src/sys/dev/pci: pccbb.c pccbbvar.h Log Message: Change sc_pil_intr_enable from an int to a bool. No functional change intended. To generate a diff of this commit: cvs rdiff -u

CVS commit: src/sys/dev/ic

2010-04-21 Thread David Young
Module Name:src Committed By: dyoung Date: Wed Apr 21 21:49:53 UTC 2010 Modified Files: src/sys/dev/ic: spic.c Log Message: Don't printf bus_space_tag_t's in a MI driver. To generate a diff of this commit: cvs rdiff -u -r1.17 -r1.18 src/sys/dev/ic/spic.c Please note

CVS commit: src

2010-04-23 Thread David Young
Module Name:src Committed By: dyoung Date: Fri Apr 23 19:21:08 UTC 2010 Modified Files: src/etc/mtree: Makefile src/usr.sbin/postinstall: postinstall Log Message: Do not try in postinstall(8) to replicate the code in etc/mtree/Makefile that assembles

CVS commit: src/etc/mtree

2010-04-26 Thread David Young
Module Name:src Committed By: dyoung Date: Tue Apr 27 03:01:25 UTC 2010 Modified Files: src/etc/mtree: Makefile Log Message: Describe in a comment what the emit_dist_file target is for. Under some circumstances, ${TOOL_CAT} may refer to an executable that does not exist.

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

2010-04-27 Thread David Young
Module Name:src Committed By: dyoung Date: Tue Apr 27 18:41:52 UTC 2010 Modified Files: src/sys/arch/i386/i386: pmc.c Log Message: #include machine/cpuvar.h for CPU feature definitions. To generate a diff of this commit: cvs rdiff -u -r1.18 -r1.19

CVS commit: src/sys/dev/mii

2010-04-27 Thread David Young
Module Name:src Committed By: dyoung Date: Tue Apr 27 18:52:45 UTC 2010 Modified Files: src/sys/dev/mii: brgphy.c Log Message: For a couple of flags, use bool/true/false instead of int/1/0. To generate a diff of this commit: cvs rdiff -u -r1.53 -r1.54

CVS commit: src/sys/dev/scsipi

2010-04-27 Thread David Young
Module Name:src Committed By: dyoung Date: Tue Apr 27 18:55:12 UTC 2010 Modified Files: src/sys/dev/scsipi: scsiconf.c Log Message: For clarity of scsidevdetached(), rename some variables: sc - self, dev - child, ssc - sc. To generate a diff of this commit: cvs rdiff

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

2010-04-27 Thread David Young
Module Name:src Committed By: dyoung Date: Tue Apr 27 23:33:14 UTC 2010 Modified Files: src/sys/arch/x86/pci: pci_machdep.c Log Message: Make pci_conf_read(9) and pci_conf_write(9) re-entrant so that the kernel can use them in an NMI trap handler. Only one CPU can be in

CVS commit: src/sys

2010-04-28 Thread David Young
Module Name:src Committed By: dyoung Date: Wed Apr 28 19:17:05 UTC 2010 Modified Files: src/sys/arch/amd64/amd64: busfunc.S genassym.cf mainbus.c src/sys/arch/i386/i386: apmbios.c busfunc.S genassym.cf ipkdb_glue.c mainbus.c

CVS commit: src/sys/sys

2010-04-28 Thread David Young
Module Name:src Committed By: dyoung Date: Wed Apr 28 19:51:16 UTC 2010 Modified Files: src/sys/sys: bus_proto.h Log Message: Cosmetic: delete whitespace at end of line. To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 src/sys/sys/bus_proto.h Please note

CVS commit: src/sys/arch/amd64

2010-04-28 Thread David Young
Module Name:src Committed By: dyoung Date: Wed Apr 28 20:22:46 UTC 2010 Modified Files: src/sys/arch/amd64: Makefile Log Message: Fix 'tags' target. To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 src/sys/arch/amd64/Makefile Please note that diffs are not

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

2010-04-28 Thread David Young
Module Name:src Committed By: dyoung Date: Wed Apr 28 20:27:36 UTC 2010 Modified Files: src/sys/arch/x86/x86: bus_space.c Log Message: #include sys/bus.h instead of machine/bus.h here to get all of the MI prototypes. To generate a diff of this commit: cvs rdiff -u

CVS commit: src/sys

2010-04-28 Thread David Young
Module Name:src Committed By: dyoung Date: Wed Apr 28 20:33:52 UTC 2010 Modified Files: src/sys/dev/pci: pcivar.h src/sys/kern: kern_stub.c Log Message: Add data types, function prototypes, and stub implementations for pci_chipset_tag_create() and

<    1   2   3   4   5   6   7   8   9   >