svn commit: r214001 - head/sys/fs/msdosfs

2010-10-17 Thread Kevin Lo
Author: kevlo Date: Mon Oct 18 03:34:33 2010 New Revision: 214001 URL: http://svn.freebsd.org/changeset/base/214001 Log: Fix a possible race where the directory dirent is moved to the location that was used by ".." entry. This change seems fixed panic during attempt to access msdosfs data

svn commit: r214316 - stable/8/sys/fs/msdosfs

2010-10-24 Thread Kevin Lo
Author: kevlo Date: Mon Oct 25 06:16:27 2010 New Revision: 214316 URL: http://svn.freebsd.org/changeset/base/214316 Log: MFC r214001: Fix a possible, but very unlikely race where the directory dirent is moved to the location that was used by ".." entry. Modified: stable/8/sys/fs/msdosfs/m

Re: svn commit: r227650 - in head: lib/libkiconv sys/conf sys/fs/msdosfs sys/fs/smbfs sys/kern sys/libkern sys/modules/libiconv sys/modules/libmchain sys/netsmb sys/sys

2011-11-22 Thread Kevin Lo
On Fri, 2011-11-18 at 03:19 +, Alexey Dokuchaev wrote: > On Fri, Nov 18, 2011 at 03:05:21AM +0000, Kevin Lo wrote: > > Author: kevlo > > Date: Fri Nov 18 03:05:20 2011 > > New Revision: 227650 > > URL: http://svn.freebsd.org/changeset/base/227650 > > >

svn commit: r227871 - head/sys/dev/vte

2011-11-22 Thread Kevin Lo
Author: kevlo Date: Wed Nov 23 05:34:01 2011 New Revision: 227871 URL: http://svn.freebsd.org/changeset/base/227871 Log: Remove unused variable mii. This variable is initialized but not used. Reviewed by: yongari Modified: head/sys/dev/vte/if_vte.c Modified: head/sys/dev/vte/if_vte.c

svn commit: r227876 - in head/usr.sbin: acpi/acpidb bluetooth/bt3cfw boot0cfg

2011-11-23 Thread Kevin Lo
Author: kevlo Date: Wed Nov 23 10:27:18 2011 New Revision: 227876 URL: http://svn.freebsd.org/changeset/base/227876 Log: Plug fd leaks Modified: head/usr.sbin/acpi/acpidb/acpidb.c head/usr.sbin/bluetooth/bt3cfw/bt3cfw.c head/usr.sbin/boot0cfg/boot0cfg.c Modified: head/usr.sbin/acpi/acpid

svn commit: r228023 - head/sys/fs/ntfs

2011-11-27 Thread Kevin Lo
Author: kevlo Date: Sun Nov 27 15:43:49 2011 New Revision: 228023 URL: http://svn.freebsd.org/changeset/base/228023 Log: Add unicode support to ntfs Obtained from:imura Modified: head/sys/fs/ntfs/ntfs_subr.c head/sys/fs/ntfs/ntfs_subr.h head/sys/fs/ntfs/ntfs_vnops.c Modified

svn commit: r228048 - in head/usr.sbin/bsdinstall: distextract distfetch partedit

2011-11-27 Thread Kevin Lo
Author: kevlo Date: Mon Nov 28 05:34:16 2011 New Revision: 228048 URL: http://svn.freebsd.org/changeset/base/228048 Log: Plug memory leaks and fix open(2) error check. Reviewed by: nwhitehorn MFC after:3 days Modified: head/usr.sbin/bsdinstall/distextract/distextract.c head/usr.

svn commit: r228195 - head/sys/dev/usb/wlan

2011-12-01 Thread Kevin Lo
Author: kevlo Date: Fri Dec 2 02:19:03 2011 New Revision: 228195 URL: http://svn.freebsd.org/changeset/base/228195 Log: Fix checks for error return from urtw_alloc_rx_data_list() and urtw_alloc_tx_data_list(). Modified: head/sys/dev/usb/wlan/if_urtw.c Modified: head/sys/dev/usb/wlan/if_ur

svn commit: r228275 - head/sys/kern

2011-12-05 Thread Kevin Lo
Author: kevlo Date: Mon Dec 5 10:34:52 2011 New Revision: 228275 URL: http://svn.freebsd.org/changeset/base/228275 Log: Add a missing curly bracket Modified: head/sys/kern/kern_cpuset.c Modified: head/sys/kern/kern_cpuset.c ===

svn commit: r228526 - in head/sys: dev/bxe dev/esp dev/twa xen/xenstore

2011-12-14 Thread Kevin Lo
Author: kevlo Date: Thu Dec 15 06:29:13 2011 New Revision: 228526 URL: http://svn.freebsd.org/changeset/base/228526 Log: s/timout/timeout Modified: head/sys/dev/bxe/bxe_reg.h head/sys/dev/esp/ncr53c9x.c head/sys/dev/twa/tw_osl.h head/sys/xen/xenstore/xenstore.c Modified: head/sys/dev/b

svn commit: r228637 - in head/sys/dev/usb: . net

2011-12-17 Thread Kevin Lo
Author: kevlo Date: Sat Dec 17 15:38:16 2011 New Revision: 228637 URL: http://svn.freebsd.org/changeset/base/228637 Log: Another axe(4), found in ASUS zenbook. Modified: head/sys/dev/usb/net/if_axe.c head/sys/dev/usb/usbdevs Modified: head/sys/dev/usb/net/if_axe.c =

svn commit: r228796 - head/sys/fs/msdosfs

2011-12-21 Thread Kevin Lo
Author: kevlo Date: Thu Dec 22 06:31:29 2011 New Revision: 228796 URL: http://svn.freebsd.org/changeset/base/228796 Log: Discarding local array based on return values Modified: head/sys/fs/msdosfs/msdosfs_conv.c Modified: head/sys/fs/msdosfs/msdosfs_conv.c ===

Re: svn commit: r228796 - head/sys/fs/msdosfs

2011-12-24 Thread Kevin Lo
On Thu, 2011-12-22 at 07:39 -0500, John Baldwin wrote: > On Thursday, December 22, 2011 1:31:29 am Kevin Lo wrote: > > Author: kevlo > > Date: Thu Dec 22 06:31:29 2011 > > New Revision: 228796 > > URL: http://svn.freebsd.org/changeset/base/228796 > > > > Log

svn commit: r228864 - head/sys/fs/ntfs

2011-12-24 Thread Kevin Lo
Author: kevlo Date: Sat Dec 24 15:49:52 2011 New Revision: 228864 URL: http://svn.freebsd.org/changeset/base/228864 Log: Discard local array based on return values. Pointed out by: uqs Found with: Coverity Prevent(tm) CID: 10089 Modified: head/sys/fs/ntfs/ntfs_subr.c head/

svn commit: r228926 - head/contrib/tcpdump

2011-12-27 Thread Kevin Lo
Author: kevlo Date: Wed Dec 28 05:58:31 2011 New Revision: 228926 URL: http://svn.freebsd.org/changeset/base/228926 Log: Fix incorrect uses of sizeof(). The details of the fix can be found in the tcpdump git repository: commit 684955d58611ee94eccdc34e82b32e676337188c Modified: head/con

svn commit: r229379 - head/sys/dev/uart

2012-01-03 Thread Kevin Lo
Author: kevlo Date: Tue Jan 3 10:01:12 2012 New Revision: 229379 URL: http://svn.freebsd.org/changeset/base/229379 Log: Add support for Intel EG20T serial ports Modified: head/sys/dev/uart/uart_bus_pci.c Modified: head/sys/dev/uart/uart_bus_pci.c

svn commit: r214972 - head/sys/arm/include

2010-11-07 Thread Kevin Lo
Author: kevlo Date: Mon Nov 8 07:54:24 2010 New Revision: 214972 URL: http://svn.freebsd.org/changeset/base/214972 Log: Intel IXP425 SoC is based on the ARMv5TE architecture MFC after:3 days Modified: head/sys/arm/include/cpuconf.h Modified: head/sys/arm/include/cpuconf.h =

svn commit: r215031 - head/sys/arm/include

2010-11-09 Thread Kevin Lo
Author: kevlo Date: Tue Nov 9 09:34:21 2010 New Revision: 215031 URL: http://svn.freebsd.org/changeset/base/215031 Log: Minor cosmetic changes Modified: head/sys/arm/include/cpuconf.h Modified: head/sys/arm/include/cpuconf.h ==

svn commit: r215106 - stable/8/sys/arm/include

2010-11-10 Thread Kevin Lo
Author: kevlo Date: Thu Nov 11 02:37:50 2010 New Revision: 215106 URL: http://svn.freebsd.org/changeset/base/215106 Log: MFC r214972,r215031: - Intel IXP425 SoC is based on the ARMv5TE architecture - Minor cosmetic changes Modified: stable/8/sys/arm/include/cpuconf.h Modified: stable/8/s

svn commit: r215335 - head/sys/dev/usb/net

2010-11-14 Thread Kevin Lo
Author: kevlo Date: Mon Nov 15 06:04:25 2010 New Revision: 215335 URL: http://svn.freebsd.org/changeset/base/215335 Log: Remove unused struct rue_type Modified: head/sys/dev/usb/net/if_ruereg.h Modified: head/sys/dev/usb/net/if_ruereg.h ===

svn commit: r215518 - head/usr.bin/at

2010-11-19 Thread Kevin Lo
Author: kevlo Date: Fri Nov 19 10:15:29 2010 New Revision: 215518 URL: http://svn.freebsd.org/changeset/base/215518 Log: Close file and directory descriptors MFC after:3 days Modified: head/usr.bin/at/at.c Modified: head/usr.bin/at/at.c ==

svn commit: r215519 - head/usr.bin/chkey

2010-11-19 Thread Kevin Lo
Author: kevlo Date: Fri Nov 19 10:18:58 2010 New Revision: 215519 URL: http://svn.freebsd.org/changeset/base/215519 Log: Fix fd leak MFC after:3 days Modified: head/usr.bin/chkey/chkey.c Modified: head/usr.bin/chkey/chkey.c ===

svn commit: r215569 - head/usr.bin/vmstat

2010-11-20 Thread Kevin Lo
Author: kevlo Date: Sat Nov 20 15:22:16 2010 New Revision: 215569 URL: http://svn.freebsd.org/changeset/base/215569 Log: Remove unused variable Modified: head/usr.bin/vmstat/vmstat.c Modified: head/usr.bin/vmstat/vmstat.c ==

svn commit: r215607 - head/sbin/devd

2010-11-20 Thread Kevin Lo
Author: kevlo Date: Sun Nov 21 04:02:37 2010 New Revision: 215607 URL: http://svn.freebsd.org/changeset/base/215607 Log: Fix missing closedir() Reviewed by: imp Modified: head/sbin/devd/devd.cc Modified: head/sbin/devd/devd.cc ===

svn commit: r215654 - stable/8/sys/dev/usb/net

2010-11-21 Thread Kevin Lo
Author: kevlo Date: Mon Nov 22 06:31:42 2010 New Revision: 215654 URL: http://svn.freebsd.org/changeset/base/215654 Log: MFC r215335: Remove unused struct rue_type Modified: stable/8/sys/dev/usb/net/if_ruereg.h Modified: stable/8/sys/dev/usb/net/if_ruereg.h

svn commit: r215655 - stable/8/usr.bin/at

2010-11-21 Thread Kevin Lo
Author: kevlo Date: Mon Nov 22 06:37:21 2010 New Revision: 215655 URL: http://svn.freebsd.org/changeset/base/215655 Log: MFC r215518: Close file and directory descriptors Modified: stable/8/usr.bin/at/at.c Modified: stable/8/usr.bin/at/at.c =

svn commit: r215656 - stable/8/usr.bin/chkey

2010-11-21 Thread Kevin Lo
Author: kevlo Date: Mon Nov 22 06:38:52 2010 New Revision: 215656 URL: http://svn.freebsd.org/changeset/base/215656 Log: MFC r215519: Fix fd leak Modified: stable/8/usr.bin/chkey/chkey.c Modified: stable/8/usr.bin/chkey/chkey.c ==

svn commit: r215657 - stable/8/sbin/devd

2010-11-21 Thread Kevin Lo
Author: kevlo Date: Mon Nov 22 06:41:05 2010 New Revision: 215657 URL: http://svn.freebsd.org/changeset/base/215657 Log: MFC r215607: Fix missing closedir() Modified: stable/8/sbin/devd/devd.cc Modified: stable/8/sbin/devd/devd.cc ===

svn commit: r215658 - head/sbin/ddb

2010-11-21 Thread Kevin Lo
Author: kevlo Date: Mon Nov 22 07:00:47 2010 New Revision: 215658 URL: http://svn.freebsd.org/changeset/base/215658 Log: Plug an fd leak Modified: head/sbin/ddb/ddb.c Modified: head/sbin/ddb/ddb.c == --- head/sbin/dd

svn commit: r216047 - head/usr.sbin/kbdmap

2010-11-29 Thread Kevin Lo
Author: kevlo Date: Mon Nov 29 09:21:26 2010 New Revision: 216047 URL: http://svn.freebsd.org/changeset/base/216047 Log: Fix fd leak in get_font Modified: head/usr.sbin/kbdmap/kbdmap.c Modified: head/usr.sbin/kbdmap/kbdmap.c ===

svn commit: r216048 - stable/8/usr.sbin/kbdmap

2010-11-29 Thread Kevin Lo
Author: kevlo Date: Mon Nov 29 09:24:03 2010 New Revision: 216048 URL: http://svn.freebsd.org/changeset/base/216048 Log: MFC r216047: Fix fd leak in get_font Modified: stable/8/usr.sbin/kbdmap/kbdmap.c Modified: stable/8/usr.sbin/kbdmap/kbdmap.c

svn commit: r216051 - stable/8/usr.sbin/kbdmap

2010-11-29 Thread Kevin Lo
Author: kevlo Date: Mon Nov 29 10:22:45 2010 New Revision: 216051 URL: http://svn.freebsd.org/changeset/base/216051 Log: Revert previous change since it's without proper MFC period. Requested by kib Modified: stable/8/usr.sbin/kbdmap/kbdmap.c Modified: stable/8/usr.sbin/kbdmap/kbdmap.c ===

Re: svn commit: r216048 - stable/8/usr.sbin/kbdmap

2010-11-29 Thread Kevin Lo
On Mon, Nov 29, 2010 at 11:27:06AM +0200, Kostik Belousov wrote: > On Mon, Nov 29, 2010 at 09:24:03AM +0000, Kevin Lo wrote: > > Author: kevlo > > Date: Mon Nov 29 09:24:03 2010 > > New Revision: 216048 > > URL: http://svn.freebsd.org/changeset/base/216048 >

svn commit: r216095 - head/sbin/bsdlabel

2010-12-01 Thread Kevin Lo
Author: kevlo Date: Wed Dec 1 08:07:32 2010 New Revision: 216095 URL: http://svn.freebsd.org/changeset/base/216095 Log: Closing file descriptors when it's done Modified: head/sbin/bsdlabel/bsdlabel.c Modified: head/sbin/bsdlabel/bsdlabel.c ===

svn commit: r216106 - head/usr.bin/find

2010-12-01 Thread Kevin Lo
Author: kevlo Date: Thu Dec 2 01:46:06 2010 New Revision: 216106 URL: http://svn.freebsd.org/changeset/base/216106 Log: Don't error out while searching for empty directories. Submitted by: Bakul Shah Modified: head/usr.bin/find/function.c Modified: head/usr.bin/find/function.c ===

svn commit: r216227 - in head: libexec/mknetid sys/arm/at91 sys/dev/bwn sys/dev/mps sys/dev/siba sys/dev/sis sys/mips/mips usr.sbin/ac

2010-12-06 Thread Kevin Lo
Author: kevlo Date: Mon Dec 6 10:24:06 2010 New Revision: 216227 URL: http://svn.freebsd.org/changeset/base/216227 Log: Fix double ;; Modified: head/libexec/mknetid/parse_group.c head/sys/arm/at91/at91_pmc.c head/sys/dev/bwn/if_bwn.c head/sys/dev/mps/mps.c head/sys/dev/siba/siba_bwn.

svn commit: r216285 - head/usr.sbin/cxgbtool

2010-12-07 Thread Kevin Lo
Author: kevlo Date: Wed Dec 8 01:35:19 2010 New Revision: 216285 URL: http://svn.freebsd.org/changeset/base/216285 Log: Closing file descriptors when it's done Reviewed by: np Modified: head/usr.sbin/cxgbtool/cxgbtool.c Modified: head/usr.sbin/cxgbtool/cxgbtool.c =

svn commit: r216292 - head/usr.sbin/extattrctl

2010-12-08 Thread Kevin Lo
Author: kevlo Date: Wed Dec 8 10:27:07 2010 New Revision: 216292 URL: http://svn.freebsd.org/changeset/base/216292 Log: Close fd in initattr() and showattr(). Reviewed by: rwatson Modified: head/usr.sbin/extattrctl/extattrctl.c Modified: head/usr.sbin/extattrctl/extattrctl.c =

svn commit: r216321 - head/usr.sbin/fwcontrol

2010-12-09 Thread Kevin Lo
Author: kevlo Date: Thu Dec 9 08:36:23 2010 New Revision: 216321 URL: http://svn.freebsd.org/changeset/base/216321 Log: Closing fd when it's done Reviewed by: sbruno Modified: head/usr.sbin/fwcontrol/fwcontrol.c Modified: head/usr.sbin/fwcontrol/fwcontrol.c ===

svn commit: r216369 - head/lib/libipsec

2010-12-11 Thread Kevin Lo
Author: kevlo Date: Sat Dec 11 08:07:21 2010 New Revision: 216369 URL: http://svn.freebsd.org/changeset/base/216369 Log: The use of snprintf() to append to a buffer is not valid according to C99 Modified: head/lib/libipsec/ipsec_dump_policy.c Modified: head/lib/libipsec/ipsec_dump_policy.c =

svn commit: r216431 - head/lib/libusb

2010-12-14 Thread Kevin Lo
Author: kevlo Date: Tue Dec 14 15:11:49 2010 New Revision: 216431 URL: http://svn.freebsd.org/changeset/base/216431 Log: Check the return value of malloc(). Reviewed by: hselasky MFC after:3 days Modified: head/lib/libusb/libusb20_compat01.c Modified: head/lib/libusb/libusb20_com

svn commit: r216432 - head/lib/libproc

2010-12-14 Thread Kevin Lo
Author: kevlo Date: Tue Dec 14 15:14:08 2010 New Revision: 216432 URL: http://svn.freebsd.org/changeset/base/216432 Log: Fix a memory leak on the error condition Reviewed by: rpaulo Modified: head/lib/libproc/proc_create.c Modified: head/lib/libproc/proc_create.c ==

svn commit: r216499 - head/etc/rc.d

2010-12-17 Thread Kevin Lo
Author: kevlo Date: Fri Dec 17 09:38:55 2010 New Revision: 216499 URL: http://svn.freebsd.org/changeset/base/216499 Log: Add pf in quiet mode Modified: head/etc/rc.d/pf Modified: head/etc/rc.d/pf == --- head/etc/rc.d

svn commit: r225882 - in head/sys/arm: at91 econa

2011-09-29 Thread Kevin Lo
Author: kevlo Date: Fri Sep 30 04:55:23 2011 New Revision: 225882 URL: http://svn.freebsd.org/changeset/base/225882 Log: Remove pointless semicolons after label Modified: head/sys/arm/at91/at91_mci.c head/sys/arm/at91/at91_pio.c head/sys/arm/at91/at91_rtc.c head/sys/arm/at91/at91_spi.c

svn commit: r226832 - in head/sys/arm: at91 econa xscale/i80321 xscale/i8134x xscale/ixp425 xscale/pxa

2011-10-27 Thread Kevin Lo
Author: kevlo Date: Thu Oct 27 10:21:40 2011 New Revision: 226832 URL: http://svn.freebsd.org/changeset/base/226832 Log: Check the return value of BUS_SETUP_INTR() Reviewed by: imp Modified: head/sys/arm/at91/at91.c head/sys/arm/econa/econa.c head/sys/arm/xscale/i80321/iq80321.c h

svn commit: r226938 - head/sys/contrib/pf/net

2011-10-30 Thread Kevin Lo
Author: kevlo Date: Sun Oct 30 14:55:00 2011 New Revision: 226938 URL: http://svn.freebsd.org/changeset/base/226938 Log: Add missing PF_UNLOCK in pf_test Reviewed by: bz Modified: head/sys/contrib/pf/net/pf.c Modified: head/sys/contrib/pf/net/pf.c ==

svn commit: r227332 - in head/sys: amd64/conf i386/conf

2011-11-08 Thread Kevin Lo
Author: kevlo Date: Tue Nov 8 08:29:05 2011 New Revision: 227332 URL: http://svn.freebsd.org/changeset/base/227332 Log: Enable PCI MMC/SD support by default on i386 and amd64 Modified: head/sys/amd64/conf/GENERIC head/sys/i386/conf/GENERIC Modified: head/sys/amd64/conf/GENERIC ===

svn commit: r227414 - head/lib/libc/regex

2011-11-09 Thread Kevin Lo
Author: kevlo Date: Thu Nov 10 01:44:05 2011 New Revision: 227414 URL: http://svn.freebsd.org/changeset/base/227414 Log: - Don't handle out-of-memory condition - Fix types of function arguments match their declaration Reviewed by: delphij Obtained from:NetBSD Modified: head/

svn commit: r227435 - head/lib/libc/regex

2011-11-10 Thread Kevin Lo
Author: kevlo Date: Fri Nov 11 01:35:07 2011 New Revision: 227435 URL: http://svn.freebsd.org/changeset/base/227435 Log: Converting int to wint_t leads to broekn comparison of raw char and encoded wint_t. Spotted by: ache Modified: head/lib/libc/regex/regcomp.c Modified: head/lib/li

svn commit: r227650 - in head: lib/libkiconv sys/conf sys/fs/msdosfs sys/fs/smbfs sys/kern sys/libkern sys/modules/libiconv sys/modules/libmchain sys/netsmb sys/sys

2011-11-17 Thread Kevin Lo
Author: kevlo Date: Fri Nov 18 03:05:20 2011 New Revision: 227650 URL: http://svn.freebsd.org/changeset/base/227650 Log: Add unicode support to msdosfs and smbfs; original pathes from imura, bug fixes by Kuan-Chung Chiu . Tested by me in production for several days at work. Added: head

svn commit: r216750 - stable/8/usr.bin/find

2010-12-27 Thread Kevin Lo
Author: kevlo Date: Tue Dec 28 02:25:32 2010 New Revision: 216750 URL: http://svn.freebsd.org/changeset/base/216750 Log: MFC r216106: Don't error out while searching for empty directories. Submitted by: Bakul Shah Modified: stable/8/usr.bin/find/function.c Modified: stable/8/usr.bin/

svn commit: r216751 - stable/8/lib/libusb

2010-12-27 Thread Kevin Lo
Author: kevlo Date: Tue Dec 28 02:43:28 2010 New Revision: 216751 URL: http://svn.freebsd.org/changeset/base/216751 Log: MFC r216431: Check return value of malloc(). Reviewed by: hselasky Modified: stable/8/lib/libusb/libusb20_compat01.c Modified: stable/8/lib/libusb/libusb20_compat0

svn commit: r216752 - stable/8/lib/libproc

2010-12-27 Thread Kevin Lo
Author: kevlo Date: Tue Dec 28 02:45:24 2010 New Revision: 216752 URL: http://svn.freebsd.org/changeset/base/216752 Log: MFC r216432: Fix a memory leak on the error condition Reviewed by: rpaulo Modified: stable/8/lib/libproc/proc_create.c Modified: stable/8/lib/libproc/proc_create.c

svn commit: r218507 - head/sys/conf

2011-02-09 Thread Kevin Lo
Author: kevlo Date: Thu Feb 10 05:33:40 2011 New Revision: 218507 URL: http://svn.freebsd.org/changeset/base/218507 Log: Add tmpfs(5) to NOTES Modified: head/sys/conf/NOTES Modified: head/sys/conf/NOTES == --- head/s

svn commit: r223145 - head/sys/net80211

2011-06-16 Thread Kevin Lo
Author: kevlo Date: Thu Jun 16 09:37:20 2011 New Revision: 223145 URL: http://svn.freebsd.org/changeset/base/223145 Log: Change i_len in ieee80211req to be unsigned and fix other signed/unsigned issues. Reviewed by: bschmidt Obtained from:NetBSD Modified: head/sys/net80211/i

svn commit: r223420 - stable/8/sys/dev/usb/wlan

2011-06-22 Thread Kevin Lo
Author: kevlo Date: Wed Jun 22 09:16:32 2011 New Revision: 223420 URL: http://svn.freebsd.org/changeset/base/223420 Log: MFC r221199: Guard against default ni_chan PR: kern/144642 Submitted by: Arthur Hartwig Modified: stable/8/sys/dev/usb/wlan/if_rum.c Modified: stable/8/sys/dev

svn commit: r223492 - in head/usr.sbin: ancontrol ifmcstat nfsd pmcstat ppp rpc.yppasswdd rpc.ypupdated sysinstall wpa/ndis_events wpa/wpa_supplicant

2011-06-24 Thread Kevin Lo
Author: kevlo Date: Fri Jun 24 07:05:20 2011 New Revision: 223492 URL: http://svn.freebsd.org/changeset/base/223492 Log: Remove duplicated header files Modified: head/usr.sbin/ancontrol/ancontrol.c head/usr.sbin/ifmcstat/ifmcstat.c head/usr.sbin/nfsd/nfsd.c head/usr.sbin/pmcstat/pmcpl_c

svn commit: r223493 - in head/usr.bin: ktrace ncplogin systat tftp vmstat

2011-06-24 Thread Kevin Lo
Author: kevlo Date: Fri Jun 24 07:18:44 2011 New Revision: 223493 URL: http://svn.freebsd.org/changeset/base/223493 Log: Remove duplicated header files Modified: head/usr.bin/ktrace/ktrace.c head/usr.bin/ncplogin/ncplogin.c head/usr.bin/systat/netstat.c head/usr.bin/tftp/main.c head/u

svn commit: r223494 - in head: bin/rcp bin/sh sbin/savecore

2011-06-24 Thread Kevin Lo
Author: kevlo Date: Fri Jun 24 07:29:04 2011 New Revision: 223494 URL: http://svn.freebsd.org/changeset/base/223494 Log: Remove duplicated header files Modified: head/bin/rcp/rcp.c head/bin/sh/mkinit.c head/sbin/savecore/savecore.c Modified: head/bin/rcp/rcp.c ===

Re: svn commit: r223493 - in head/usr.bin: ktrace ncplogin systat tftp vmstat

2011-06-24 Thread Kevin Lo
On δΊ”, 2011-06-24 at 09:21 +0200, Roman Divacky wrote: > On Fri, Jun 24, 2011 at 07:18:44AM +0000, Kevin Lo wrote: > > Author: kevlo > > Date: Fri Jun 24 07:18:44 2011 > > New Revision: 223493 > > URL: http://svn.freebsd.org/changeset/base/223493 > > > > Lo

Re: svn commit: r223537 - head/sys/dev/usb/wlan

2011-06-26 Thread Kevin Lo
On Sat, 2011-06-25 at 20:55 +0200, Hans Petter Selasky wrote: > On Saturday 25 June 2011 20:51:38 Hans Petter Selasky wrote: > > On Saturday 25 June 2011 20:43:59 Hans Petter Selasky wrote: > > > On Saturday 25 June 2011 20:26:19 Gavin Atkinson wrote: > > > > On Sat, 25 Jun 2011, Hans Petter Selask

svn commit: r223562 - in head/sys: arm/at91 arm/sa11x0 mips/atheros mips/mips mips/rmi mips/rmi/dev/xlr mips/sentry5 mips/sibyte

2011-06-26 Thread Kevin Lo
Author: kevlo Date: Sun Jun 26 10:07:48 2011 New Revision: 223562 URL: http://svn.freebsd.org/changeset/base/223562 Log: Remove duplicate header includes Modified: head/sys/arm/at91/at91_machdep.c head/sys/arm/sa11x0/assabet_machdep.c head/sys/arm/sa11x0/sa11x0.c head/sys/mips/atheros/a

svn commit: r223624 - in head/sys/dev: acpica an dc en et fdc iicbus mfi my sis tdfx usb

2011-06-28 Thread Kevin Lo
Author: kevlo Date: Tue Jun 28 08:36:48 2011 New Revision: 223624 URL: http://svn.freebsd.org/changeset/base/223624 Log: Remove duplicate header includes Modified: head/sys/dev/acpica/acpi_thermal.c head/sys/dev/an/if_an.c head/sys/dev/dc/dcphy.c head/sys/dev/dc/pnphy.c head/sys/dev/e

svn commit: r223665 - head/sys/arm/mv

2011-06-29 Thread Kevin Lo
Author: kevlo Date: Wed Jun 29 09:35:40 2011 New Revision: 223665 URL: http://svn.freebsd.org/changeset/base/223665 Log: Typo Submitted by: Damjan Marion MFC after:3 days Modified: head/sys/arm/mv/common.c Modified: head/sys/arm/mv/common.c ===

svn commit: r223832 - head/usr.sbin/bsdinstall/partedit

2011-07-06 Thread Kevin Lo
Author: kevlo Date: Thu Jul 7 01:22:50 2011 New Revision: 223832 URL: http://svn.freebsd.org/changeset/base/223832 Log: Add an extra tab between fs_file and fs_vfstype Reviewed by: nwhitehorn Modified: head/usr.sbin/bsdinstall/partedit/partedit.c Modified: head/usr.sbin/bsdinstall/par

svn commit: r223842 - head/sys/net80211

2011-07-07 Thread Kevin Lo
Author: kevlo Date: Thu Jul 7 15:41:40 2011 New Revision: 223842 URL: http://svn.freebsd.org/changeset/base/223842 Log: Fix memset sizeofs Reviewed by: bschmidt Modified: head/sys/net80211/ieee80211_ageq.c head/sys/net80211/ieee80211_power.c Modified: head/sys/net80211/ieee80211_age

svn commit: r223877 - in head: include/rpc lib/libc/xdr

2011-07-09 Thread Kevin Lo
Author: kevlo Date: Sat Jul 9 07:43:56 2011 New Revision: 223877 URL: http://svn.freebsd.org/changeset/base/223877 Log: - Add xdr_sizeof(3) to libc - Document xdr_sizeof(3); from NetBSD Discussed with: kib Modified: head/include/rpc/xdr.h head/lib/libc/xdr/Makefile.inc head/

svn commit: r223903 - head/lib/libc/xdr

2011-07-09 Thread Kevin Lo
Author: kevlo Date: Sun Jul 10 06:57:00 2011 New Revision: 223903 URL: http://svn.freebsd.org/changeset/base/223903 Log: Add a HISTORY section Requested by: arundel Modified: head/lib/libc/xdr/xdr.3 Modified: head/lib/libc/xdr/xdr.3 ==

Re: svn commit: r223877 - in head: include/rpc lib/libc/xdr

2011-07-09 Thread Kevin Lo
On Sat, 2011-07-09 at 08:14 +, Alexander Best wrote: > On Sat Jul 9 11, Kevin Lo wrote: > > Author: kevlo > > Date: Sat Jul 9 07:43:56 2011 > > New Revision: 223877 > > URL: http://svn.freebsd.org/changeset/base/223877 > > > > Log: > >

Re: svn commit: r223877 - in head: include/rpc lib/libc/xdr

2011-07-10 Thread Kevin Lo
On Sun, 2011-07-10 at 03:45 +1000, Bruce Evans wrote: > On Sat, 9 Jul 2011, Kevin Lo wrote: > > > Log: > > - Add xdr_sizeof(3) to libc > > - Document xdr_sizeof(3); from NetBSD > > > > Discussed with:kib > > Any reason to further break the style

svn commit: r223904 - head/lib/libstand

2011-07-10 Thread Kevin Lo
Author: kevlo Date: Sun Jul 10 07:14:32 2011 New Revision: 223904 URL: http://svn.freebsd.org/changeset/base/223904 Log: style(9) cleanup Modified: head/lib/libstand/zalloc_defs.h Modified: head/lib/libstand/zalloc_defs.h ==

svn commit: r223906 - head/include/rpc

2011-07-10 Thread Kevin Lo
Author: kevlo Date: Sun Jul 10 14:03:13 2011 New Revision: 223906 URL: http://svn.freebsd.org/changeset/base/223906 Log: Revert the previous change and add xdr_sizeof Requested by: bde Modified: head/include/rpc/xdr.h Modified: head/include/rpc/xdr.h

svn commit: r224048 - head/etc/rc.d

2011-07-14 Thread Kevin Lo
Author: kevlo Date: Fri Jul 15 01:59:08 2011 New Revision: 224048 URL: http://svn.freebsd.org/changeset/base/224048 Log: Remove "-n" from echo Reviewed by: dougb Modified: head/etc/rc.d/routing Modified: head/etc/rc.d/routing

svn commit: r224702 - head/usr.bin/xlint/lint1

2011-08-07 Thread Kevin Lo
Author: kevlo Date: Mon Aug 8 05:22:09 2011 New Revision: 224702 URL: http://svn.freebsd.org/changeset/base/224702 Log: catstrg() does not set the resulting string length. PR: bin/152549 Submitted by: Henning Petersen Approved by: re (hrs) Modified: head/usr.bin/xlint/lint1/tree

svn commit: r224703 - head/sys/net

2011-08-07 Thread Kevin Lo
Author: kevlo Date: Mon Aug 8 05:25:51 2011 New Revision: 224703 URL: http://svn.freebsd.org/changeset/base/224703 Log: In rtinit1(), before rtrequest1_fib() is called, info.rti_flags is initialized by flags (function argument) or-ed with ifa->ifa_flags. If both NIC has a loopback route to

svn commit: r224747 - head/sys/netinet

2011-08-09 Thread Kevin Lo
Author: kevlo Date: Wed Aug 10 06:17:06 2011 New Revision: 224747 URL: http://svn.freebsd.org/changeset/base/224747 Log: If RTF_HOST flag is specified, then we are interested in destination address. PR: kern/159600 Submitted by: Svatopluk Kraus Approved by: re (hrs) Modif

svn commit: r219982 - head/sys/dev/usb/wlan

2011-03-24 Thread Kevin Lo
Author: kevlo Date: Fri Mar 25 05:01:13 2011 New Revision: 219982 URL: http://svn.freebsd.org/changeset/base/219982 Log: Fix panic while associating access point. While here, add the SMC SMCWUSB-G Modified: head/sys/dev/usb/wlan/if_zyd.c Modified: head/sys/dev/usb/wlan/if_zyd.c ===

svn commit: r220087 - stable/8/sys/dev/usb/wlan

2011-03-27 Thread Kevin Lo
Author: kevlo Date: Mon Mar 28 01:24:20 2011 New Revision: 220087 URL: http://svn.freebsd.org/changeset/base/220087 Log: MFC r219982: Fix panic while associating access point. While here, add the SMC SMCWUSB-G Modified: stable/8/sys/dev/usb/wlan/if_zyd.c Modified: stable/8/sys/dev/usb/wl

svn commit: r220235 - head/sys/dev/usb/wlan

2011-03-31 Thread Kevin Lo
Author: kevlo Date: Fri Apr 1 03:27:55 2011 New Revision: 220235 URL: http://svn.freebsd.org/changeset/base/220235 Log: - Minor style(9) cleanup - Make functions static Modified: head/sys/dev/usb/wlan/if_run.c Modified: head/sys/dev/usb/wlan/if_run.c ==

svn commit: r220236 - head/sys/conf

2011-03-31 Thread Kevin Lo
Author: kevlo Date: Fri Apr 1 03:41:41 2011 New Revision: 220236 URL: http://svn.freebsd.org/changeset/base/220236 Log: Add 'mos' interface to NOTES Modified: head/sys/conf/NOTES Modified: head/sys/conf/NOTES == ---

svn commit: r221199 - head/sys/dev/usb/wlan

2011-04-28 Thread Kevin Lo
Author: kevlo Date: Fri Apr 29 06:28:29 2011 New Revision: 221199 URL: http://svn.freebsd.org/changeset/base/221199 Log: Guard against default ni_chan PR: kern/144642 Submitted by: Arthur Hartwig Modified: head/sys/dev/usb/wlan/if_rum.c Modified: head/sys/dev/usb/wlan/if_rum.c ==

svn commit: r221200 - in head/sys: amd64/conf conf i386/conf

2011-04-28 Thread Kevin Lo
Author: kevlo Date: Fri Apr 29 06:36:39 2011 New Revision: 221200 URL: http://svn.freebsd.org/changeset/base/221200 Log: Add urtw(4) Modified: head/sys/amd64/conf/GENERIC head/sys/conf/NOTES head/sys/i386/conf/GENERIC Modified: head/sys/amd64/conf/GENERIC

svn commit: r222275 - in head/sys: amd64/conf i386/conf

2011-05-24 Thread Kevin Lo
Author: kevlo Date: Wed May 25 04:46:48 2011 New Revision: 75 URL: http://svn.freebsd.org/changeset/base/75 Log: run(4) needs firmware loaded to work Modified: head/sys/amd64/conf/GENERIC head/sys/i386/conf/GENERIC Modified: head/sys/amd64/conf/GENERIC =

svn commit: r222282 - in head/sys: amd64/conf i386/conf

2011-05-25 Thread Kevin Lo
Author: kevlo Date: Wed May 25 10:04:13 2011 New Revision: 82 URL: http://svn.freebsd.org/changeset/base/82 Log: Bring back r75. runfw(4) will statically link in rt2870.fw.uu to the kernel, though I have MODULES_OVERRIDE="" in GENERIC. Spotted by: thompsa Modified: head/s

svn commit: r222365 - head/usr.sbin/pc-sysinstall/backend

2011-05-27 Thread Kevin Lo
Author: kevlo Date: Fri May 27 16:17:35 2011 New Revision: 222365 URL: http://svn.freebsd.org/changeset/base/222365 Log: Whitespace fixes Reviewed by: jpaetzel Modified: head/usr.sbin/pc-sysinstall/backend/functions-cleanup.sh Modified: head/usr.sbin/pc-sysinstall/backend/functions-cle

svn commit: r190588 - in head/sys/dev/usb: . wlan

2009-03-31 Thread Kevin Lo
Author: kevlo Date: Tue Mar 31 07:40:36 2009 New Revision: 190588 URL: http://svn.freebsd.org/changeset/base/190588 Log: Add another rum(4) device found in http://www.fit-pc.com/new/whats-new.html Modified: head/sys/dev/usb/usbdevs head/sys/dev/usb/wlan/if_rum.c Modified: head/sys/dev/us

svn commit: r191197 - head/share/misc

2009-04-17 Thread Kevin Lo
Author: kevlo Date: Fri Apr 17 08:01:18 2009 New Revision: 191197 URL: http://svn.freebsd.org/changeset/base/191197 Log: Change Taiwan, Province of China to Taiwan, Republic of China Modified: head/share/misc/iso3166 Modified: head/share/misc/iso3166 =

Re: svn commit: r191197 - head/share/misc

2009-04-17 Thread Kevin Lo
Juli Mallett wrote: > On Fri, Apr 17, 2009 at 1:01 AM, Kevin Lo wrote: > > Log: > > Change Taiwan, Province of China to Taiwan, Republic of China > > > > Modified: > > head/share/misc/iso3166 > > Do you have a source for this change? The ISO site

svn commit: r191347 - head/share/misc

2009-04-21 Thread Kevin Lo
Author: kevlo Date: Tue Apr 21 07:22:12 2009 New Revision: 191347 URL: http://svn.freebsd.org/changeset/base/191347 Log: Back out my previous change Modified: head/share/misc/iso3166 Modified: head/share/misc/iso3166 ===

svn commit: r264212 - in head: lib/libc/net sys/netinet sys/netinet6 sys/sys

2014-04-06 Thread Kevin Lo
University of California. * Copyright (c) 2008 Robert N. M. Watson * Copyright (c) 2010-2011 Juniper Networks, Inc. + * Copyright (c) 2014 Kevin Lo * All rights reserved. * * Portions of this software were developed by Robert N. M. Watson under @@ -87,6 +88,7 @@ __FBSDID("$FreeBSD

svn commit: r264213 - in head/sys: netinet netinet6

2014-04-06 Thread Kevin Lo
Author: kevlo Date: Mon Apr 7 01:55:53 2014 New Revision: 264213 URL: http://svnweb.freebsd.org/changeset/base/264213 Log: Minor style cleanups. Modified: head/sys/netinet/udp_usrreq.c head/sys/netinet/udp_var.h head/sys/netinet6/in6_proto.c Modified: head/sys/netinet/udp_usrreq.c =

svn commit: r264215 - head/share/man/man4

2014-04-06 Thread Kevin Lo
) +++ head/share/man/man4/udplite.4 Mon Apr 7 01:57:51 2014 (r264215) @@ -0,0 +1,96 @@ +.\" Copyright (c) 2014, Kevin Lo. +.\" All rights reserved. +.\" +.\" Redistribution and use in source and binary forms, with or without +.\" modification, are permitted pr

svn commit: r264248 - head/sys/netinet

2014-04-07 Thread Kevin Lo
Author: kevlo Date: Tue Apr 8 01:54:50 2014 New Revision: 264248 URL: http://svnweb.freebsd.org/changeset/base/264248 Log: Remove a bogus re-assignment. Modified: head/sys/netinet/udp_usrreq.c Modified: head/sys/netinet/udp_usrreq.c ==

svn commit: r264317 - in head: share/man/man4 sys/dev/usb sys/dev/usb/wlan

2014-04-10 Thread Kevin Lo
Author: kevlo Date: Thu Apr 10 14:37:37 2014 New Revision: 264317 URL: http://svnweb.freebsd.org/changeset/base/264317 Log: Add the Asus USB-N10 NANO. Tested by:Kuan-Chung Chiu Modified: head/share/man/man4/urtwn.4 head/sys/dev/usb/usbdevs head/sys/dev/usb/wlan/if_urtwn.c Modif

svn commit: r264801 - head/sys/dev/usb/serial

2014-04-22 Thread Kevin Lo
Author: kevlo Date: Wed Apr 23 05:53:03 2014 New Revision: 264801 URL: http://svnweb.freebsd.org/changeset/base/264801 Log: Add a missing break. Modified: head/sys/dev/usb/serial/uftdi.c Modified: head/sys/dev/usb/serial/uftdi.c ===

svn commit: r264802 - head/sys/dev/usb/serial

2014-04-22 Thread Kevin Lo
Author: kevlo Date: Wed Apr 23 05:54:55 2014 New Revision: 264802 URL: http://svnweb.freebsd.org/changeset/base/264802 Log: Oops, revert r264801. Modified: head/sys/dev/usb/serial/uftdi.c Modified: head/sys/dev/usb/serial/uftdi.c ==

svn commit: r264864 - head/sys/dev/usb/wlan

2014-04-23 Thread Kevin Lo
Author: kevlo Date: Thu Apr 24 03:16:47 2014 New Revision: 264864 URL: http://svnweb.freebsd.org/changeset/base/264864 Log: Fix panic by adding mtx_assert() to urtwn_init_locked() and urtwn_stop_locked(). Tested by:Anthony Jenkins Modified: head/sys/dev/usb/wlan/if_urtwn.c Modifi

svn commit: r264912 - in head: share/man/man4 sys/conf sys/contrib/dev/urtwn sys/dev/usb sys/dev/usb/wlan sys/modules/usb/urtwnfw sys/modules/usb/urtwnfw/urtwnrtl8188eu

2014-04-25 Thread Kevin Lo
/"0@6K@)'OYY#2!=1,!]12)%746!'O^>H!Y,Q(K[9"!;>#_D(%LX/WD +MD(&\\'L&$F/AD(%HX"0"_Y"!:N`O\`$7(I`"">#]$A^D_J\%[2Z0@#WPD``! +M$A^]_^TOD(`^\)```A(?O?_M+Y"`/_"0``,2'[W_[2^0@$#PD``$$A^]_ZX% +M[2^0@$'P(I```A(?O?\PX"82&

svn commit: r264972 - head/sys/dev/usb/wlan

2014-04-26 Thread Kevin Lo
Author: kevlo Date: Sat Apr 26 14:39:58 2014 New Revision: 264972 URL: http://svnweb.freebsd.org/changeset/base/264972 Log: Initialize rssi variable. Modified: head/sys/dev/usb/wlan/if_urtwn.c Modified: head/sys/dev/usb/wlan/if_urtwn.c

svn commit: r265139 - head/share/man/man9

2014-04-30 Thread Kevin Lo
Author: kevlo Date: Wed Apr 30 07:17:51 2014 New Revision: 265139 URL: http://svnweb.freebsd.org/changeset/base/265139 Log: Change type from int to short to match function prototypes. Reviewed by: glebius Modified: head/share/man/man9/mbuf.9 Modified: head/share/man/man9/mbuf.9 ===

  1   2   3   4   5   6   7   >