CVS commit: src/sys/dev/pci/ixgbe

2017-02-10 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Fri Feb 10 08:41:13 UTC 2017

Modified Files:
src/sys/dev/pci/ixgbe: ixgbe.c ixv.c

Log Message:
 Change the Interrupt Moderation flag from global variable to per device.


To generate a diff of this commit:
cvs rdiff -u -r1.72 -r1.73 src/sys/dev/pci/ixgbe/ixgbe.c
cvs rdiff -u -r1.49 -r1.50 src/sys/dev/pci/ixgbe/ixv.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/doc

2017-02-10 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Fri Feb 10 08:48:06 UTC 2017

Modified Files:
src/doc: CHANGES

Log Message:
ixg(4): Support TX/RX multiqueue


To generate a diff of this commit:
cvs rdiff -u -r1.2247 -r1.2248 src/doc/CHANGES

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/lib/libossaudio

2017-02-10 Thread Maya Rashish
Module Name:src
Committed By:   maya
Date:   Fri Feb 10 08:50:27 UTC 2017

Modified Files:
src/lib/libossaudio: ossaudio.c

Log Message:
strncpy->strlcpy. use sizeof instead of numbers.


To generate a diff of this commit:
cvs rdiff -u -r1.30 -r1.31 src/lib/libossaudio/ossaudio.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/lib/libossaudio

2017-02-10 Thread Maya Rashish
Module Name:src
Committed By:   maya
Date:   Fri Feb 10 08:52:04 UTC 2017

Modified Files:
src/lib/libossaudio: ossaudio.c

Log Message:
speed limit is 80 (missed this one)


To generate a diff of this commit:
cvs rdiff -u -r1.31 -r1.32 src/lib/libossaudio/ossaudio.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



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

2017-02-10 Thread Maxime Villard
Module Name:src
Committed By:   maxv
Date:   Fri Feb 10 09:57:04 UTC 2017

Modified Files:
src/sys/arch/x86/x86: x86_machdep.c

Log Message:
Import iomem_ex locally.


To generate a diff of this commit:
cvs rdiff -u -r1.84 -r1.85 src/sys/arch/x86/x86/x86_machdep.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



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

2017-02-10 Thread Maxime Villard
Module Name:src
Committed By:   maxv
Date:   Fri Feb 10 10:02:26 UTC 2017

Modified Files:
src/sys/arch/x86/x86: x86_machdep.c

Log Message:
Use macros instead of hard-coded constants. By the way, I don't think this
code is correct, but whatever.


To generate a diff of this commit:
cvs rdiff -u -r1.85 -r1.86 src/sys/arch/x86/x86/x86_machdep.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



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

2017-02-10 Thread Maxime Villard
Module Name:src
Committed By:   maxv
Date:   Fri Feb 10 10:39:36 UTC 2017

Modified Files:
src/sys/arch/x86/x86: x86_machdep.c

Log Message:
If the segment list is full, print a warning on the console and launch the
system with the available segments.

High memory systems may have more than VM_PHYSSEG_MAX segments; it is
better to truncate the memory and allow the system to work rather than
just panicking. The user can still increase VM_PHYSSEG_MAX (or ask us to).

Fixes issues such as PR/47093.

Note: the warning is logged but does not appear in dmesg, this too needs
to be fixed for the rest of the bootstrap procedure.


To generate a diff of this commit:
cvs rdiff -u -r1.86 -r1.87 src/sys/arch/x86/x86/x86_machdep.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/net

2017-02-10 Thread Ryota Ozaki
Module Name:src
Committed By:   ozaki-r
Date:   Fri Feb 10 13:44:47 UTC 2017

Modified Files:
src/sys/net: route.c

Log Message:
Fix locking against myself in ifa_ifwithroute_psref

It happened on the path: rtrequest1 => rt_getifa => ifa_ifwithroute_psref.

Reported by ryo@


To generate a diff of this commit:
cvs rdiff -u -r1.188 -r1.189 src/sys/net/route.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/net

2017-02-10 Thread Ryota Ozaki
Module Name:src
Committed By:   ozaki-r
Date:   Fri Feb 10 13:48:06 UTC 2017

Modified Files:
src/sys/net: route.c

Log Message:
Ensure that nobody references a rtentry that is passed to rt_setgate


To generate a diff of this commit:
cvs rdiff -u -r1.189 -r1.190 src/sys/net/route.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/distrib

2017-02-10 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Fri Feb 10 16:43:59 UTC 2017

Modified Files:
src/distrib/amd64/cdroms: Makefile.cdrom
src/distrib/amd64/uefi-installimage: Makefile.bootimage
Makefile.installimage
src/distrib/common: Makefile.bootcd
src/distrib/common/bootimage: Makefile.bootimage Makefile.installimage
Makefile.liveimage
src/distrib/i386/cdroms: Makefile.cdrom
src/distrib/ofppc/cdroms/installcd: Makefile
src/distrib/sparc64/cdroms/installcd: Makefile
src/distrib/vax/cdroms/installcd: Makefile

Log Message:
Initial pass to be unaffected by build umask on build artifacts
1. ${MKDIR} -> ${MKDIR} ${MKDIRPERM}
2. ${CP} -> ${INSTALL} ${COPY} -m 


To generate a diff of this commit:
cvs rdiff -u -r1.21 -r1.22 src/distrib/amd64/cdroms/Makefile.cdrom
cvs rdiff -u -r1.1 -r1.2 \
src/distrib/amd64/uefi-installimage/Makefile.bootimage \
src/distrib/amd64/uefi-installimage/Makefile.installimage
cvs rdiff -u -r1.35 -r1.36 src/distrib/common/Makefile.bootcd
cvs rdiff -u -r1.13 -r1.14 src/distrib/common/bootimage/Makefile.bootimage
cvs rdiff -u -r1.4 -r1.5 src/distrib/common/bootimage/Makefile.installimage
cvs rdiff -u -r1.3 -r1.4 src/distrib/common/bootimage/Makefile.liveimage
cvs rdiff -u -r1.40 -r1.41 src/distrib/i386/cdroms/Makefile.cdrom
cvs rdiff -u -r1.4 -r1.5 src/distrib/ofppc/cdroms/installcd/Makefile
cvs rdiff -u -r1.27 -r1.28 src/distrib/sparc64/cdroms/installcd/Makefile
cvs rdiff -u -r1.15 -r1.16 src/distrib/vax/cdroms/installcd/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/share/mk

2017-02-10 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Fri Feb 10 16:44:55 UTC 2017

Modified Files:
src/share/mk: bsd.own.mk

Log Message:
Add MKDIRMODE


To generate a diff of this commit:
cvs rdiff -u -r1.1003 -r1.1004 src/share/mk/bsd.own.mk

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/share/mk

2017-02-10 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Fri Feb 10 16:46:55 UTC 2017

Modified Files:
src/share/mk: bsd.own.mk

Log Message:
add MKDIRPERM


To generate a diff of this commit:
cvs rdiff -u -r1.1004 -r1.1005 src/share/mk/bsd.own.mk

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/distrib/amd64

2017-02-10 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Fri Feb 10 16:53:51 UTC 2017

Modified Files:
src/distrib/amd64/cdroms: Makefile.cdrom
src/distrib/amd64/uefi-installimage: Makefile.bootimage

Log Message:
MKREPRO_TIMESTAMP fixes for efiboot


To generate a diff of this commit:
cvs rdiff -u -r1.22 -r1.23 src/distrib/amd64/cdroms/Makefile.cdrom
cvs rdiff -u -r1.2 -r1.3 \
src/distrib/amd64/uefi-installimage/Makefile.bootimage

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS import: src/external/bsd/file/dist

2017-02-10 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Fri Feb 10 17:43:01 UTC 2017

Update of /cvsroot/src/external/bsd/file/dist
In directory ivanova.netbsd.org:/tmp/cvs-serv7355

Log Message:
2017-02-10  12:24  Christos Zoulas 

* release 5.30

2017-02-07  23:27  Christos Zoulas 

* If we exceeded the offset in a search return no match
  (Christoph Biedl)
* Be more lenient on corrupt CDF files (Christoph Biedl)

2017-02-04  16:46  Christos Zoulas 

* pacify ubsan sign extension (oss-fuzz/524)

2017-02-01  12:42  Christos Zoulas 

* off by one in cdf parsing (PR/593)
* report debugging sections in elf (PR/591)

2016-11-06  10:52  Christos Zoulas 

* Allow @@@ in extensions
* Add missing overflow check in der magic (Jonas Wagner)

2016-10-25  10:40  Christos Zoulas 

* release 5.29

2016-10-24  11:20  Christos Zoulas 

* der getlength overflow (Jonas Wagner)
* multiple magic file load failure (Christoph Biedl)

2016-10-17  11:26  Christos Zoulas 

* CDF parsing improvements (Guy Helmer)

2016-07-20   7:26  Christos Zoulas 

* Add support for signed indirect offsets

2016-07-18   7:41  Christos Zoulas 

* cat /dev/null | file - should print empty (Christoph Biedl)

2016-07-05  15:20  Christos Zoulas 

* Bump string size from 64 to 96.

2016-06-13  20:20  Christos Zoulas 

* PR/556: Fix separators on annotations.

2016-06-13  19:40  Christos Zoulas 

* release 5.28
* fix leak on allocation failure

2016-06-01   1:20  Christos Zoulas 

* PR/555: Avoid overflow for offset > nbytes
* PR/550: Segv on DER parsing:
- use the correct variable for length
- set offset to 0 on failure.

2016-05-13  12:00  Christos Zoulas 

* release 5.27

2016-04-18   9:35  Christos Zoulas 

* Errors comparing DER entries or computing offsets
  are just indications of malformed non-DER files.
  Don't print them.
* Offset comparison was off-by-one.
* Fix compression code (Werner Fink)
* Put new bytes constant in the right file (not the generated one)

2016-04-16  18:34  Christos Zoulas 

* release 5.26

2016-03-31  13:50  Christos Zoulas 

* make the number of bytes read from files configurable.

2016-03-21  13:40  Christos Zoulas 

* Add bounds checks for DER code (discovered by Thomas Jarosch)
* Change indirect recursion limit to indirect use count and
  bump from 15 to 50 to prevent abuse.

2016-03-13  20:39  Christos Zoulas 

* Add -00 which prints filename\0description\0

2016-03-01  13:28  Christos Zoulas 

* Fix ID3 indirect parsing

2016-01-19  10:18  Christos Zoulas 

* add DER parsing capability

2015-11-13  10:35  Christos Zoulas 

* provide dprintf(3) for the OS's that don't have it.

2015-11-11  16:25  Christos Zoulas 

* redo the compression code report decompression errors

2015-11-10  23:25  Christos Zoulas 

* REG_STARTEND code is not working as expected, delete it.

2015-11-09  16:05  Christos Zoulas 

* Add zlib support if we have it.

2015-11-05  11:22  Christos Zoulas 

* PR/492: compression forking was broken with magic_buffer.

2015-09-16   9:50  Christos Zoulas 

* release 5.25

2015-09-11  13:25  Christos Zoulas 

* add a limit to the length of regex searches

2015-09-08   9:50  Christos Zoulas 

* fix problems with --parameter (Christoph Biedl)

2015-07-11  10:35  Christos Zoulas 

* Windows fixes PR/466 (Jason Hood)

2015-07-09  10:35  Christos Zoulas 

* release 5.24

2015-06-11   8:52  Christos Zoulas 

* redo long option encoding to fix off-by-one in 5.23

2015-06-10  13:50  Christos Zoulas 

* release 5.23

2015-06-09  16:10  Christos Zoulas 

* Fix issue with regex range for magic with offset
* Always return true from mget with USE (success to mget not match
  indication). Fixes mime evaluation after USE magic
* PR/459: Don't insert magic entries to the list if there are parsing
  errors for them.

2015-06-03  16:00  Christos Zoulas 

* PR/455: Add utf-7 encoding

2015-06-03  14:30  Christos Zoulas 

* PR/455: Implement -Z, look inside, but don't report on compression
* PR/454: Fix allocation error on bad magic.

2015-05-29  10:30  Christos Zoulas 

* handle MAGIC_CONTINUE everywhere, not just in softmagic

2015-05-21  14:30  Christos Zoulas 

* don't print descriptions for NAME types when mime.

2015-04-09  15:59  Christos Zoulas 

* Add --extension to list the known extensions for this file type
  Idea by Andrew J Roazen

2015-02-14  12:23  Christos Zoulas 

* Bump file search buffer size to 1M.

2015-01-09  14:35  Christos Zoulas 

* Fix

CVS commit: src/external/bsd/file

2017-02-10 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Fri Feb 10 17:53:25 UTC 2017

Modified Files:
src/external/bsd/file/dist: ChangeLog Makefile.in aclocal.m4 compile
config.guess config.h.in config.sub configure configure.ac depcomp
missing
src/external/bsd/file/dist/doc: Makefile.in file.1 libmagic.3 magic.5
src/external/bsd/file/dist/magic: Makefile.am Makefile.in
src/external/bsd/file/dist/magic/magdir: apple archive elf filesystems
jpeg netbsd pgp
src/external/bsd/file/dist/python: Makefile.in
src/external/bsd/file/dist/src: Makefile.in apprentice.c cdf.c
compress.c encoding.c file.c file.h fsmagic.c funcs.c magic.c
print.c readcdf.c readelf.c softmagic.c
src/external/bsd/file/dist/tests: Makefile.in
src/external/bsd/file/include: config.h

Log Message:
merge conflicts


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/external/bsd/file/dist/ChangeLog
cvs rdiff -u -r1.12 -r1.13 src/external/bsd/file/dist/Makefile.in
cvs rdiff -u -r1.9 -r1.10 src/external/bsd/file/dist/aclocal.m4
cvs rdiff -u -r1.7 -r1.8 src/external/bsd/file/dist/compile \
src/external/bsd/file/dist/config.sub
cvs rdiff -u -r1.8 -r1.9 src/external/bsd/file/dist/config.guess
cvs rdiff -u -r1.10 -r1.11 src/external/bsd/file/dist/config.h.in
cvs rdiff -u -r1.14 -r1.15 src/external/bsd/file/dist/configure
cvs rdiff -u -r1.11 -r1.12 src/external/bsd/file/dist/configure.ac
cvs rdiff -u -r1.5 -r1.6 src/external/bsd/file/dist/depcomp
cvs rdiff -u -r1.6 -r1.7 src/external/bsd/file/dist/missing
cvs rdiff -u -r1.9 -r1.10 src/external/bsd/file/dist/doc/Makefile.in
cvs rdiff -u -r1.17 -r1.18 src/external/bsd/file/dist/doc/file.1
cvs rdiff -u -r1.14 -r1.15 src/external/bsd/file/dist/doc/libmagic.3 \
src/external/bsd/file/dist/doc/magic.5
cvs rdiff -u -r1.11 -r1.12 src/external/bsd/file/dist/magic/Makefile.am
cvs rdiff -u -r1.14 -r1.15 src/external/bsd/file/dist/magic/Makefile.in
cvs rdiff -u -r1.5 -r1.6 src/external/bsd/file/dist/magic/magdir/apple
cvs rdiff -u -r1.10 -r1.11 src/external/bsd/file/dist/magic/magdir/archive \
src/external/bsd/file/dist/magic/magdir/filesystems
cvs rdiff -u -r1.13 -r1.14 src/external/bsd/file/dist/magic/magdir/elf
cvs rdiff -u -r1.2 -r1.3 src/external/bsd/file/dist/magic/magdir/jpeg \
src/external/bsd/file/dist/magic/magdir/netbsd
cvs rdiff -u -r1.3 -r1.4 src/external/bsd/file/dist/magic/magdir/pgp
cvs rdiff -u -r1.9 -r1.10 src/external/bsd/file/dist/python/Makefile.in
cvs rdiff -u -r1.12 -r1.13 src/external/bsd/file/dist/src/Makefile.in \
src/external/bsd/file/dist/src/readcdf.c
cvs rdiff -u -r1.14 -r1.15 src/external/bsd/file/dist/src/apprentice.c \
src/external/bsd/file/dist/src/file.h
cvs rdiff -u -r1.11 -r1.12 src/external/bsd/file/dist/src/cdf.c \
src/external/bsd/file/dist/src/fsmagic.c \
src/external/bsd/file/dist/src/readelf.c
cvs rdiff -u -r1.10 -r1.11 src/external/bsd/file/dist/src/compress.c \
src/external/bsd/file/dist/src/funcs.c \
src/external/bsd/file/dist/src/magic.c
cvs rdiff -u -r1.4 -r1.5 src/external/bsd/file/dist/src/encoding.c
cvs rdiff -u -r1.7 -r1.8 src/external/bsd/file/dist/src/file.c
cvs rdiff -u -r1.8 -r1.9 src/external/bsd/file/dist/src/print.c
cvs rdiff -u -r1.13 -r1.14 src/external/bsd/file/dist/src/softmagic.c
cvs rdiff -u -r1.9 -r1.10 src/external/bsd/file/dist/tests/Makefile.in
cvs rdiff -u -r1.8 -r1.9 src/external/bsd/file/include/config.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/external/bsd/file/dist

2017-02-10 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Fri Feb 10 17:56:27 UTC 2017

Modified Files:
src/external/bsd/file/dist: configure

Log Message:
put back maintainer mode


To generate a diff of this commit:
cvs rdiff -u -r1.15 -r1.16 src/external/bsd/file/dist/configure

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/external/bsd/file/dist/src

2017-02-10 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Fri Feb 10 18:06:59 UTC 2017

Modified Files:
src/external/bsd/file/dist/src: apprentice.c cdf.c compress.c print.c
readelf.c softmagic.c

Log Message:
pacify lint.


To generate a diff of this commit:
cvs rdiff -u -r1.15 -r1.16 src/external/bsd/file/dist/src/apprentice.c
cvs rdiff -u -r1.12 -r1.13 src/external/bsd/file/dist/src/cdf.c \
src/external/bsd/file/dist/src/readelf.c
cvs rdiff -u -r1.11 -r1.12 src/external/bsd/file/dist/src/compress.c
cvs rdiff -u -r1.9 -r1.10 src/external/bsd/file/dist/src/print.c
cvs rdiff -u -r1.14 -r1.15 src/external/bsd/file/dist/src/softmagic.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/external/bsd/file

2017-02-10 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Fri Feb 10 18:11:18 UTC 2017

Modified Files:
src/external/bsd/file/dist/src: der.c
src/external/bsd/file/lib: Makefile shlib_version

Log Message:
fix der.c bump shared library


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.1 -r1.2 src/external/bsd/file/dist/src/der.c
cvs rdiff -u -r1.7 -r1.8 src/external/bsd/file/lib/Makefile
cvs rdiff -u -r1.5 -r1.6 src/external/bsd/file/lib/shlib_version

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/distrib/sets/lists

2017-02-10 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Fri Feb 10 18:11:56 UTC 2017

Modified Files:
src/distrib/sets/lists/base: shl.mi
src/distrib/sets/lists/debug: shl.mi

Log Message:
bump libmagic


To generate a diff of this commit:
cvs rdiff -u -r1.801 -r1.802 src/distrib/sets/lists/base/shl.mi
cvs rdiff -u -r1.161 -r1.162 src/distrib/sets/lists/debug/shl.mi

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/doc

2017-02-10 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Fri Feb 10 18:12:52 UTC 2017

Modified Files:
src/doc: 3RDPARTY CHANGES

Log Message:
new file


To generate a diff of this commit:
cvs rdiff -u -r1.1411 -r1.1412 src/doc/3RDPARTY
cvs rdiff -u -r1.2248 -r1.2249 src/doc/CHANGES

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src

2017-02-10 Thread Nathanial Sloss
Module Name:src
Committed By:   nat
Date:   Fri Feb 10 19:31:42 UTC 2017

Modified Files:
src/share/man/man4: audio.4
src/sys/dev: audio.c audiobell.c audiovar.h
src/sys/sys: audioio.h file.h
src/usr.bin/audio/ctl: audioctl.1 ctl.c

Log Message:
Audio now uses fdclone, there is no longer a limitation of one audio
instance per process.  Virtual channels are placed in a queue, so there is
no longer a compile time limit of VAUDIOCHANS.

A new sysctl has been added to control multiple user access.
Mixer labels on virtual channels are now prefixed by vchan.

audiobell.c and audioctl have been updated to reflect these changes.

Use of fdclone was posted to tech-kern@ and improvements made.
Multiuser access control changes and the use of a queue were suggessted by
pgoyette@


To generate a diff of this commit:
cvs rdiff -u -r1.73 -r1.74 src/share/man/man4/audio.4
cvs rdiff -u -r1.301 -r1.302 src/sys/dev/audio.c
cvs rdiff -u -r1.12 -r1.13 src/sys/dev/audiobell.c
cvs rdiff -u -r1.49 -r1.50 src/sys/dev/audiovar.h
cvs rdiff -u -r1.35 -r1.36 src/sys/sys/audioio.h
cvs rdiff -u -r1.80 -r1.81 src/sys/sys/file.h
cvs rdiff -u -r1.20 -r1.21 src/usr.bin/audio/ctl/audioctl.1
cvs rdiff -u -r1.41 -r1.42 src/usr.bin/audio/ctl/ctl.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/arch/arm/xscale

2017-02-10 Thread Tobias Nygren
Module Name:src
Committed By:   tnn
Date:   Fri Feb 10 20:30:39 UTC 2017

Modified Files:
src/sys/arch/arm/xscale: ixp425-fw.README

Log Message:
update firmware download URL


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/sys/arch/arm/xscale/ixp425-fw.README

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/net

2017-02-10 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Fri Feb 10 20:56:21 UTC 2017

Modified Files:
src/sys/net: if.c

Log Message:
make attach and detach locking symmetric (detaching cloners failed)


To generate a diff of this commit:
cvs rdiff -u -r1.376 -r1.377 src/sys/net/if.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/dev

2017-02-10 Thread Nathanial Sloss
Module Name:src
Committed By:   nat
Date:   Fri Feb 10 21:03:15 UTC 2017

Modified Files:
src/sys/dev: audiobell.c

Log Message:
Committed a temporary copy with extra lines of code not needed. Opps...


To generate a diff of this commit:
cvs rdiff -u -r1.13 -r1.14 src/sys/dev/audiobell.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/arch/arm/xscale

2017-02-10 Thread Tobias Nygren
Module Name:src
Committed By:   tnn
Date:   Fri Feb 10 23:11:30 UTC 2017

Modified Files:
src/sys/arch/arm/xscale: ixp425-fw.README

Log Message:
remove misleading comment about version 3.0 microcode

The last known microcode to work is 2.4. Version 3.0 changes
the header signature and fails with "block too big for NPE memory".
Provide a backup download URL since intel removed version < 3.0.


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/sys/arch/arm/xscale/ixp425-fw.README

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/arch/sparc64

2017-02-10 Thread Palle Lyckegaard
Module Name:src
Committed By:   palle
Date:   Fri Feb 10 23:26:23 UTC 2017

Modified Files:
src/sys/arch/sparc64/include: cpu.h hypervisor.h
src/sys/arch/sparc64/sparc64: cpu.c genassym.cf locore.s pmap.c trap.c

Log Message:
sun4v: Added handling of trap type 0x034 (address alignment error) + fixed typo 
mmfsa -> mmufsa. Verified for both sun4u and sun4v using qemu.


To generate a diff of this commit:
cvs rdiff -u -r1.122 -r1.123 src/sys/arch/sparc64/include/cpu.h
cvs rdiff -u -r1.5 -r1.6 src/sys/arch/sparc64/include/hypervisor.h
cvs rdiff -u -r1.129 -r1.130 src/sys/arch/sparc64/sparc64/cpu.c
cvs rdiff -u -r1.80 -r1.81 src/sys/arch/sparc64/sparc64/genassym.cf
cvs rdiff -u -r1.407 -r1.408 src/sys/arch/sparc64/sparc64/locore.s
cvs rdiff -u -r1.306 -r1.307 src/sys/arch/sparc64/sparc64/pmap.c
cvs rdiff -u -r1.184 -r1.185 src/sys/arch/sparc64/sparc64/trap.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/distrib

2017-02-10 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Sat Feb 11 03:07:06 UTC 2017

Modified Files:
src/distrib/amd64/uefi-installimage: Makefile.bootimage
src/distrib/cdrom: Makefile
src/distrib/common: Makefile.bootcd Makefile.image Makefile.tarfloppy
buildfloppies.sh
src/distrib/common/bootimage: Makefile.bootimage
src/distrib/evbarm/instkernel/sshramdisk: Makefile
src/distrib/vax/floppy: Makefile
src/distrib/x68k/stand: Makefile

Log Message:
more MKREPRO_TIMESTAMP fixes (for pax/tar generated files)


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 \
src/distrib/amd64/uefi-installimage/Makefile.bootimage
cvs rdiff -u -r1.50 -r1.51 src/distrib/cdrom/Makefile
cvs rdiff -u -r1.36 -r1.37 src/distrib/common/Makefile.bootcd
cvs rdiff -u -r1.39 -r1.40 src/distrib/common/Makefile.image
cvs rdiff -u -r1.18 -r1.19 src/distrib/common/Makefile.tarfloppy
cvs rdiff -u -r1.17 -r1.18 src/distrib/common/buildfloppies.sh
cvs rdiff -u -r1.14 -r1.15 src/distrib/common/bootimage/Makefile.bootimage
cvs rdiff -u -r1.12 -r1.13 src/distrib/evbarm/instkernel/sshramdisk/Makefile
cvs rdiff -u -r1.13 -r1.14 src/distrib/vax/floppy/Makefile
cvs rdiff -u -r1.9 -r1.10 src/distrib/x68k/stand/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/distrib/common/bootimage

2017-02-10 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Sat Feb 11 04:19:25 UTC 2017

Modified Files:
src/distrib/common/bootimage: Makefile.bootimage

Log Message:
remove extra endif


To generate a diff of this commit:
cvs rdiff -u -r1.15 -r1.16 src/distrib/common/bootimage/Makefile.bootimage

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/crypto/external/bsd/heimdal/lib/libasn1

2017-02-10 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Sat Feb 11 04:56:37 UTC 2017

Modified Files:
src/crypto/external/bsd/heimdal/lib/libasn1: Makefile

Log Message:
Add hack for profiling bimodal label generation with -m32 on sparc64


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/crypto/external/bsd/heimdal/lib/libasn1/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/doc

2017-02-10 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Sat Feb 11 04:59:01 UTC 2017

Modified Files:
src/doc: HACKS

Log Message:
add sparc64 hack


To generate a diff of this commit:
cvs rdiff -u -r1.176 -r1.177 src/doc/HACKS

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.