CVS commit: [pgoyette-localcount] src/sys

2016-07-23 Thread Paul Goyette
Module Name:src Committed By: pgoyette Date: Sun Jul 24 05:39:29 UTC 2016 Modified Files: src/sys/kern [pgoyette-localcount]: subr_autoconf.c src/sys/sys [pgoyette-localcount]: device.h Log Message: Add a device_acquire() for when we need to grab a reference and

CVS commit: [pgoyette-localcount] src/sys/dev

2016-07-23 Thread Paul Goyette
Module Name:src Committed By: pgoyette Date: Sun Jul 24 00:14:08 UTC 2016 Modified Files: src/sys/dev [pgoyette-localcount]: cgd.c Log Message: Remove cgd_release() - it's not needed now that getcgd_softc() provides access to the device_t Restore original cgdattach() -

CVS commit: [pgoyette-localcount] src/sys/miscfs/specfs

2016-07-23 Thread Paul Goyette
Module Name:src Committed By: pgoyette Date: Sat Jul 23 21:54:50 UTC 2016 Modified Files: src/sys/miscfs/specfs [pgoyette-localcount]: spec_vnops.c Log Message: Simplify, remove redundant code. To generate a diff of this commit: cvs rdiff -u -r1.162.2.4 -r1.162.2.5

CVS commit: src/sys/uvm/pmap

2016-07-23 Thread Matt Thomas
Module Name:src Committed By: matt Date: Sat Jul 23 20:06:25 UTC 2016 Modified Files: src/sys/uvm/pmap: pmap_tlb.c Log Message: Lock the tlbinfo if it wasn't when doing a pmap_tlb_pai_check To generate a diff of this commit: cvs rdiff -u -r1.17 -r1.18

CVS commit: src/sys/dev/i2c

2016-07-23 Thread Jonathan A. Kollasch
Module Name:src Committed By: jakllsch Date: Sat Jul 23 19:14:36 UTC 2016 Modified Files: src/sys/dev/i2c: as3722.c Log Message: Fix typo in string. This is a driver for the AS3722 PMIC, not the AS3822 LED driver. To generate a diff of this commit: cvs rdiff -u -r1.4

CVS commit: src/sys/dev/i2c

2016-07-23 Thread Jonathan A. Kollasch
Module Name:src Committed By: jakllsch Date: Sat Jul 23 18:02:10 UTC 2016 Modified Files: src/sys/dev/i2c: at24cxx.c Log Message: Also check the compatibles table when the size is below zero. Fixes an aprint_error() on Jetson TK1. To generate a diff of this commit: cvs

CVS commit: src/sys/dev/i2c

2016-07-23 Thread Jonathan A. Kollasch
Module Name:src Committed By: jakllsch Date: Sat Jul 23 18:00:01 UTC 2016 Modified Files: src/sys/dev/i2c: i2c.c Log Message: Use one more value from "locators.h", also make sure 'size' is initialized. To generate a diff of this commit: cvs rdiff -u -r1.53 -r1.54

CVS commit: src/sys/dev/i2c

2016-07-23 Thread Jonathan A. Kollasch
Module Name:src Committed By: jakllsch Date: Sat Jul 23 17:42:37 UTC 2016 Modified Files: src/sys/dev/i2c: i2c.c Log Message: Use values from "locators.h" when constructing locators array to be sure of correct index; To generate a diff of this commit: cvs rdiff -u

CVS commit: src/sys/netinet

2016-07-23 Thread Ignatios Souvatzis
Module Name:src Committed By: is Date: Sat Jul 23 13:37:11 UTC 2016 Modified Files: src/sys/netinet: ip_carp.c Log Message: Print the IPv6 or IPv4 source addresses of packets with wrong hash, to help debugging. To generate a diff of this commit: cvs rdiff -u -r1.75

CVS commit: [netbsd-7] src/sys/netinet

2016-07-23 Thread Ignatios Souvatzis
Module Name:src Committed By: is Date: Sat Jul 23 13:33:32 UTC 2016 Modified Files: src/sys/netinet [netbsd-7]: ip_carp.c Log Message: backout last change (wrong branch). To generate a diff of this commit: cvs rdiff -u -r1.59.2.1 -r1.59.2.2 src/sys/netinet/ip_carp.c

CVS commit: [netbsd-7] src/sys/netinet

2016-07-23 Thread Ignatios Souvatzis
Module Name:src Committed By: is Date: Sat Jul 23 13:24:40 UTC 2016 Modified Files: src/sys/netinet [netbsd-7]: ip_carp.c Log Message: Log the IPv4/IPv6 source of incorrect hash packets, too. Needed for meaningful debugging. To generate a diff of this commit: cvs rdiff

CVS commit: src/sys/netinet

2016-07-23 Thread Ignatios Souvatzis
Module Name:src Committed By: is Date: Sat Jul 23 12:19:08 UTC 2016 Modified Files: src/sys/netinet: ip_carp.c Log Message: Workaround for PR 47013 by bouyer@. Only works for mixed IPv4/IPv6 environemnts, not for pure-IPv6 yet. A real fix is still needed. To generate a

CVS commit: [pgoyette-localcount] src/sys/rump/dev/lib/libcgd

2016-07-23 Thread Paul Goyette
Module Name:src Committed By: pgoyette Date: Sat Jul 23 07:41:14 UTC 2016 Modified Files: src/sys/rump/dev/lib/libcgd [pgoyette-localcount]: cgd_component.c Log Message: Use correct function name - devsw_detach() vs cdevsw_detach()

CVS commit: src/etc

2016-07-23 Thread Robert Elz
Module Name:src Committed By: kre Date: Sat Jul 23 06:48:27 UTC 2016 Modified Files: src/etc: MAKEDEV.tmpl Log Message: Always define MKNOD, even if we don't think we need it (turns out we do, sometimes...) Noticed by Michael Plass reported on current-users. To