Link [ NetBSD | NetBSD OpenGrok source search | PR fulltext-search | Summary of daily snapshot builds | history of daily build result | pkgsrc commit viewer ]


   
        usage: [branch:branch] [user:user] [path@revision] keyword [... [-excludekeyword [...]]] (e.g. branch:MAIN sys/arch/arm, if_wm.c@1.234 )




switch to index mode

recent branches: MAIN (24m)  netbsd-8 (5d)  netbsd-10 (6d)  netbsd-9 (12d)  thorpej-ifq (176d)  thorpej-altq-separation (178d) 

2024-05-10 15:07:04 UTC Now

2013-09-25 03:28:21 UTC MAIN commitmail json YAML

Fix a NULL dereference if the exit_alt_charset_mode capability is not defined.

The previous version of this file changed a terminal initialisation test on
the exit_attribute_mode capability, checking for the exit_alt_charset_mode
capability as a substring, rather than performing a search for the hard-coded
^O character.

That works better on terminals where ^O is not the correct value for
exit_alt_charset_mode.  But it works worse on terminals that don't have a
definition specified for exit_alt_charset_mode.

For example:

% TERMCAP='xterm:me=\E[m:' TERM=xterm vi
segmentation fault (core dumped)  TERMCAP='xterm:me=\E[m:' TERM=xterm vi

The crash can be avoided (without fixing the bug) by defining
exit_alt_charset_mode:

% TERMCAP='xterm|:me=\E[m:ae=:' TERM=xterm vi
ex/vi: Error: xterm: No such process

We now test exit_alt_charset_mode for NULL before continuing with the fatal
test, restoring the original no-crash behaviour.

XXX does_ctrl_o() is now just a naive reimplementation of strstr(), so should
probably just use strstr() instead.

(dsainty)

2013-09-25 03:14:55 UTC MAIN commitmail json YAML

Fix spurious kassert on interrupted blocking read from /dev/random.

Return EINTR in this case instead.  While here, clarify comment.

Fixes PR kern/48119, simpler than the patch attached there, per
discussion with tls@, who had this right in the earlier version
of rndpseudo.c before I broke it (oops!).

(riastradh)

2013-09-24 23:45:16 UTC MAIN commitmail json YAML

rumpuser_rwlock: replace internal pthread_spin_lock (for protecting reader
count) with atomic operations.  As pthread_spin_lock is not adaptive lock, it
can have hugely negative impact if contended here, especially with priority
inversions.  Now contended rwlock(9) no longer falls flat in RUMP kernels.

(rmind)

2013-09-24 22:52:14 UTC MAIN commitmail json YAML

2013-09-24 22:08:06 UTC MAIN commitmail json YAML

Improve description.
From J辿r辿mie Courr竪ges-Anglas <jca@wxcvbn.org>.

(wiz)

2013-09-24 18:23:07 UTC MAIN commitmail json YAML

Work around invalid root PCI bus bus-range (0x00-0xff) by checking the
bus-range of any child buses, and altering the root bus bus-range to
suit.  Required for cardbus bridge attach on SPARCle.

(jdc)

2013-09-24 18:12:59 UTC MAIN commitmail json YAML

Remove spdmem entries for indirect configuration on SPARCle.  This is now
handled in sparc64/autoconf.c (since r1.192).

(jdc)

2013-09-24 18:11:55 UTC MAIN commitmail json YAML

If we're running on SPARCle, add spdmem entries on the i2c bus directly,
because they are not known by firmware.  Idea from martin@.

(jdc)

2013-09-24 18:04:53 UTC MAIN commitmail json YAML

Add a property "i2c-indirect-config" to allow/disallow i2c indirect config.
If missing, "allowed" is assumed.  Set it to false for OFW machines.
Patch from martin@.  Removes erroneous i2c probe messages that appeared with
wildcard support.

(jdc)

2013-09-24 13:28:51 UTC MAIN commitmail json YAML

2013-09-24 13:27:50 UTC MAIN commitmail json YAML

2013-09-24 02:44:20 UTC MAIN commitmail json YAML

2013-09-24 02:04:22 UTC MAIN commitmail json YAML

2013-09-23 21:00:35 UTC MAIN commitmail json YAML

Missing , in table initializer

(martin)

2013-09-23 20:44:24 UTC MAIN commitmail json YAML

don't use IO_APPEND. In the vdev_file.c we end up appending to our virtual
file as a filesystem! With this change:

    $ dd if=/dev/zero of=disk1 count=266144
    $ zpool create crap $PWD/disk1

mounts /crap and it seems to work ok, until I try unmounting

(christos)

2013-09-23 20:41:19 UTC MAIN commitmail json YAML

not nice to play with resid before checking for error, but this is how they
fixed it, and I am following suit. I would have preferred if (error && resid)
instead.

(christos)

2013-09-23 19:44:21 UTC MAIN commitmail json YAML

Hack: Instead of dying in vrele with a kernel assertion, detect that the
usecount of the vnode is 0 and treat it as a noop. This is wrong, buf it
get us through the VN_RELE() after the close in vdev_file.c

(christos)

2013-09-23 19:42:42 UTC MAIN commitmail json YAML

Don't forget to destroy the mutex we created to the zfsvfs transient object,
otherwise if we load and unload the module the lockdebug code will blow chunks.

(christos)

2013-09-23 17:57:59 UTC MAIN commitmail json YAML

+BUS_DMA_TAG_IS_VALID

(pooka)

2013-09-23 17:27:09 UTC MAIN commitmail json YAML

2013-09-23 17:11:22 UTC MAIN commitmail json YAML

Misc cleanup.

- use bool instead of int
- avoid an assignment as a value with extra parentheses
- use aprint_normal(9) for attach message
- remove parentheses from return value

(tsutsui)

2013-09-23 17:02:18 UTC MAIN commitmail json YAML

2013-09-23 16:50:12 UTC MAIN commitmail json YAML

KNF and TAB/space cleanup.

(tsutsui)

2013-09-23 16:44:30 UTC MAIN commitmail json YAML

Remove a 'register' declaration. Noted in PR port-alpha/48148.

(tsutsui)

2013-09-23 16:41:57 UTC MAIN commitmail json YAML

Add support for AlphaStation DS15.

Ported from OpenBSD via PR port-alpha/48148 by nullnilaki.
Note support for the secondary PCI bus still needs more improvements.

(tsutsui)

2013-09-23 15:30:32 UTC MAIN commitmail json YAML

Update npftest.conf for the recent syntax adjustments.

(rmind)

2013-09-23 14:28:13 UTC netbsd-6 commitmail json YAML

Pull up following revision(s) (requested by tsutsui in ticket #955):
sys/arch/mvmeppc/stand/libsa/Makefile.inc: revision 1.2
sys/arch/mvmeppc/stand/Makefile.booters: revision 1.13
sys/arch/mvmeppc/stand/libsa/Makefile: revision 1.11
Explicitly link srt0.o (Standalone RunTime startup code) first.
Taken from the similar fix of mvme68k:
http://mail-index.netbsd.org/source-changes/2013/09/21/msg047819.html
MVME PROM requires raw binaries (by objcopy -O binary) so we have to
make sure the entry point is located at the first address of the binaries.
The original changes to switch to using MI libsa is:
http://mail-index.netbsd.org/source-changes/2011/01/02/msg016563.html
Should be pulled up to netbsd-6 branches.
(though untested since there seems no users of mvmeppc)

(riz)

2013-09-23 14:28:03 UTC netbsd-6-1 commitmail json YAML

2013-09-23 14:27:51 UTC netbsd-6-1 commitmail json YAML

Pull up following revision(s) (requested by tsutsui in ticket #955):
sys/arch/mvmeppc/stand/libsa/Makefile.inc: revision 1.2
sys/arch/mvmeppc/stand/Makefile.booters: revision 1.13
sys/arch/mvmeppc/stand/libsa/Makefile: revision 1.11
Explicitly link srt0.o (Standalone RunTime startup code) first.
Taken from the similar fix of mvme68k:
http://mail-index.netbsd.org/source-changes/2013/09/21/msg047819.html
MVME PROM requires raw binaries (by objcopy -O binary) so we have to
make sure the entry point is located at the first address of the binaries.
The original changes to switch to using MI libsa is:
http://mail-index.netbsd.org/source-changes/2011/01/02/msg016563.html
Should be pulled up to netbsd-6 branches.
(though untested since there seems no users of mvmeppc)

(riz)

2013-09-23 14:27:37 UTC netbsd-6-0 commitmail json YAML

2013-09-23 14:27:23 UTC netbsd-6-0 commitmail json YAML

Pull up following revision(s) (requested by tsutsui in ticket #955):
sys/arch/mvmeppc/stand/libsa/Makefile.inc: revision 1.2
sys/arch/mvmeppc/stand/Makefile.booters: revision 1.13
sys/arch/mvmeppc/stand/libsa/Makefile: revision 1.11
Explicitly link srt0.o (Standalone RunTime startup code) first.
Taken from the similar fix of mvme68k:
http://mail-index.netbsd.org/source-changes/2013/09/21/msg047819.html
MVME PROM requires raw binaries (by objcopy -O binary) so we have to
make sure the entry point is located at the first address of the binaries.
The original changes to switch to using MI libsa is:
http://mail-index.netbsd.org/source-changes/2011/01/02/msg016563.html
Should be pulled up to netbsd-6 branches.
(though untested since there seems no users of mvmeppc)

(riz)

2013-09-23 14:22:25 UTC netbsd-6-0 commitmail json YAML

2013-09-23 14:21:56 UTC netbsd-6-1 commitmail json YAML

2013-09-23 14:21:20 UTC netbsd-6-1 commitmail json YAML

Pull up following revision(s) (requested by tsutsui in ticket #954):
sys/arch/mvme68k/stand/libbug/outln.c: revision 1.4
sys/arch/mvme68k/stand/libsa/Makefile.inc: revision 1.6
sys/arch/mvme68k/stand/Makefile.booters: revision 1.24
sys/arch/mvme68k/include/prom.h: revision 1.18
sys/arch/mvme68k/stand/libsa/Makefile: revision 1.34
sys/arch/mvme68k/stand/libbug/outstr.c: revision 1.4
Explicitly link SRT0.o (Standalone RunTime startup code) first.
This is my fault on changes to make mvme68k bootloaders use MI libsa:
http://mail-index.netbsd.org/source-changes/2011/01/02/msg016539.html
MVME PROM requires raw binaries (by objcopy -O binary) so we have to
make sure the entry point is located at the first address of the binaries.
The problem (6.1 netboot fails with an illegal instruction message)
is reported by Andrew Gillham on port-mvme68k@:
http://mail-index.netbsd.org/port-mvme68k/2013/09/17/msg000082.html
Note mvme68k bootloadres in netbsd-6 still have another bug triggered
by gcc-4.5.
Should be pulled up to netbsd-6 branches.
Make MVMEPROM_ARG2() macro take two args in a single asm statement.
Fixes a problem that a wrong address is passed to the MVMEPROM outstr
function (then caused garbages on screen) after we switched to gcc-4.5.
Reported and confirmed by Andrew Gillham on port-mvme68k@:
http://mail-index.NetBSD.org/port-mvme68k/2013/09/17/msg000084.html
http://mail-index.NetBSD.org/port-mvme68k/2013/09/19/msg000085.html
http://mail-index.NetBSD.org/port-mvme68k/2013/09/22/msg000095.html
http://mail-index.NetBSD.org/port-mvme68k/2013/09/22/msg000097.html
No error on "build.sh -m mvme68k build" builds.
Should be pulled up to netbsd-6 branches.

(riz)

2013-09-23 14:20:42 UTC netbsd-6 commitmail json YAML

Pull up following revision(s) (requested by tsutsui in ticket #954):
sys/arch/mvme68k/stand/libbug/outln.c: revision 1.4
sys/arch/mvme68k/stand/libsa/Makefile.inc: revision 1.6
sys/arch/mvme68k/stand/Makefile.booters: revision 1.24
sys/arch/mvme68k/include/prom.h: revision 1.18
sys/arch/mvme68k/stand/libsa/Makefile: revision 1.34
sys/arch/mvme68k/stand/libbug/outstr.c: revision 1.4
Explicitly link SRT0.o (Standalone RunTime startup code) first.
This is my fault on changes to make mvme68k bootloaders use MI libsa:
http://mail-index.netbsd.org/source-changes/2011/01/02/msg016539.html
MVME PROM requires raw binaries (by objcopy -O binary) so we have to
make sure the entry point is located at the first address of the binaries.
The problem (6.1 netboot fails with an illegal instruction message)
is reported by Andrew Gillham on port-mvme68k@:
http://mail-index.netbsd.org/port-mvme68k/2013/09/17/msg000082.html
Note mvme68k bootloadres in netbsd-6 still have another bug triggered
by gcc-4.5.
Should be pulled up to netbsd-6 branches.
Make MVMEPROM_ARG2() macro take two args in a single asm statement.
Fixes a problem that a wrong address is passed to the MVMEPROM outstr
function (then caused garbages on screen) after we switched to gcc-4.5.
Reported and confirmed by Andrew Gillham on port-mvme68k@:
http://mail-index.NetBSD.org/port-mvme68k/2013/09/17/msg000084.html
http://mail-index.NetBSD.org/port-mvme68k/2013/09/19/msg000085.html
http://mail-index.NetBSD.org/port-mvme68k/2013/09/22/msg000095.html
http://mail-index.NetBSD.org/port-mvme68k/2013/09/22/msg000097.html
No error on "build.sh -m mvme68k build" builds.
Should be pulled up to netbsd-6 branches.

(riz)

2013-09-23 12:41:37 UTC MAIN commitmail json YAML

2013-09-23 11:27:45 UTC MAIN commitmail json YAML

2013-09-23 10:46:35 UTC MAIN commitmail json YAML

2013-09-23 10:35:20 UTC MAIN commitmail json YAML

If pthread_create() fails with EAGAIN, try a few more times with short
sleeps in between.  If it helps, good.  If it doesn't, oh well, at
least we tried.  pthread_create() returning EAGAIN has been observed in
real life at least on Linux (buildrump.sh issue #40)

(pooka)

2013-09-23 08:39:28 UTC MAIN commitmail json YAML

Fix interrupt handler arg (needs to be softc instead of device_t)

(jandberg)

2013-09-23 01:39:27 UTC MAIN commitmail json YAML

Make MVMEPROM_ARG2() macro take two args in a single asm statement.

Fixes a problem that a wrong address is passed to the MVMEPROM outstr
function (then caused garbages on screen) after we switched to gcc-4.5.
Reported and confirmed by Andrew Gillham on port-mvme68k@:
http://mail-index.NetBSD.org/port-mvme68k/2013/09/17/msg000084.html
http://mail-index.NetBSD.org/port-mvme68k/2013/09/19/msg000085.html
http://mail-index.NetBSD.org/port-mvme68k/2013/09/22/msg000095.html
http://mail-index.NetBSD.org/port-mvme68k/2013/09/22/msg000097.html
No error on "build.sh -m mvme68k build" builds.

Should be pulled up to netbsd-6 branches.

(tsutsui)

2013-09-23 00:57:53 UTC rmind-smpnet commitmail json YAML

2013-09-22 22:43:10 UTC netbsd-5-2 commitmail json YAML

2013-09-22 22:12:05 UTC netbsd-5-1 commitmail json YAML

2013-09-22 20:51:18 UTC MAIN commitmail json YAML

Make dma_tag_t a bit more useful.

XXX: this header should definitely not exist, but given that it does,
let's use it to make life easier.  The implication of its existence is
that x86 port rump kernel components are not ABI-compatible with kernel
modules which use bus_space/bus_dma.  I'm not sure if anyone is interested
in that...

(pooka)

2013-09-22 20:30:55 UTC netbsd-6 commitmail json YAML

Add missing newline.

(msaitoh)

2013-09-22 18:56:11 UTC MAIN commitmail json YAML

2013-09-22 18:49:10 UTC MAIN commitmail json YAML

Disable XBSEN for the 7450.

(matt)

2013-09-22 18:05:16 UTC MAIN commitmail json YAML

Make sure ABE/SYNCBE are enabled in HID1 for the 7450 CPUs
Enable XBSEN for the 7450.

(matt)

2013-09-22 17:51:31 UTC MAIN commitmail json YAML

Define HID1_{SYNCBE,ABE} for the 7450

(matt)

2013-09-22 17:35:52 UTC netbsd-6-1 commitmail json YAML

2013-09-22 17:35:35 UTC netbsd-6-1 commitmail json YAML

Pull up following revision(s) (requested by tsutsui in ticket #953):
sys/arch/mvme68k/mvme68k/pmap_bootstrap.c: revision 1.52
Move physmem calculations before nptpage initialization.
Fixes mvme68k specific part of PR port-m68k/45915
(panic: pmap_enter_ptpage: can't get KPT page).
Reported and confirmed by Andrew Gillham on his MVME177:
http://mail-index.NetBSD.org/port-mvme68k/2013/09/17/msg000082.html
Should be pulled up to all netbsd-6 branches.

(riz)

2013-09-22 17:35:09 UTC netbsd-6-0 commitmail json YAML

2013-09-22 17:34:48 UTC netbsd-6-0 commitmail json YAML

Pull up following revision(s) (requested by tsutsui in ticket #953):
sys/arch/mvme68k/mvme68k/pmap_bootstrap.c: revision 1.52
Move physmem calculations before nptpage initialization.
Fixes mvme68k specific part of PR port-m68k/45915
(panic: pmap_enter_ptpage: can't get KPT page).
Reported and confirmed by Andrew Gillham on his MVME177:
http://mail-index.NetBSD.org/port-mvme68k/2013/09/17/msg000082.html
Should be pulled up to all netbsd-6 branches.

(riz)

2013-09-22 17:34:22 UTC netbsd-6 commitmail json YAML

2013-09-22 17:33:31 UTC netbsd-6 commitmail json YAML

Pull up following revision(s) (requested by tsutsui in ticket #953):
sys/arch/mvme68k/mvme68k/pmap_bootstrap.c: revision 1.52
Move physmem calculations before nptpage initialization.
Fixes mvme68k specific part of PR port-m68k/45915
(panic: pmap_enter_ptpage: can't get KPT page).
Reported and confirmed by Andrew Gillham on his MVME177:
http://mail-index.NetBSD.org/port-mvme68k/2013/09/17/msg000082.html
Should be pulled up to all netbsd-6 branches.

(riz)

2013-09-22 17:29:34 UTC netbsd-6 commitmail json YAML

2013-09-22 17:29:05 UTC netbsd-6 commitmail json YAML

Pull up following revision(s) (requested by rmind in ticket #952):
sys/net/npf/npf_ctl.c: revision 1.27
npfctl_rule: fixes for the dynamic rules.

(riz)

2013-09-22 17:28:34 UTC netbsd-6-1 commitmail json YAML

2013-09-22 17:27:45 UTC netbsd-6-1 commitmail json YAML

Pull up following revision(s) (requested by rmind in ticket #952):
sys/net/npf/npf_ctl.c: revision 1.27
npfctl_rule: fixes for the dynamic rules.

(riz)

2013-09-22 14:59:07 UTC MAIN commitmail json YAML

Remove redundant declaration of MUTEX_CLEAR_WAITERS without checking if
any of the !__HAVE_SIMPLE_MUTEX architectures need it based on the
assumption that HPPA is the only member of that category.

(joerg)

2013-09-22 14:55:07 UTC MAIN commitmail json YAML

Revert previous - it was wrong. hi joerg.

(skrll)

2013-09-22 10:02:05 UTC MAIN commitmail json YAML

Attempt to clarify that fsync() is like fsync_range() with the
FFILESYNC flag but not the FDISKSYNC flag.

Add a paragraph of weasel words about how writing to a permanent
storage device does not necessarily write to permanent storage media
within that device.

Move the description of FDISKSYNC into the same list as FDATASYNC
and FFILESYNC.

Change the order of paragraphs or sentences in an attempt to
improve the flow.

(apb)

2013-09-22 09:21:56 UTC MAIN commitmail json YAML

Removed duplicated lines introduced in version 1.36.

(adam)

2013-09-22 08:30:22 UTC MAIN commitmail json YAML

Adapt to usbmp. Compile tested only.

Did this ever work?

(skrll)

2013-09-22 07:26:42 UTC MAIN commitmail json YAML

Remove trailing whitespace.

(skrll)

2013-09-22 06:54:35 UTC MAIN commitmail json YAML

2013-09-22 06:52:11 UTC MAIN commitmail json YAML

Remove trailing whitespace.

(skrll)

2013-09-22 05:16:34 UTC netbsd-6-0 commitmail json YAML

2013-09-22 05:15:57 UTC netbsd-6-1 commitmail json YAML

2013-09-21 22:28:12 UTC MAIN commitmail json YAML

2013-09-21 19:51:33 UTC MAIN commitmail json YAML

In description of a locking mess, add reference to the PR for the bug
the mess is supposed to help with.

(dholland)

2013-09-21 16:40:20 UTC netbsd-6 commitmail json YAML

2013-09-21 16:39:58 UTC netbsd-6 commitmail json YAML

Pull up following revision(s) (requested by khorben in ticket #951):
usr.bin/flock/flock.1: revision 1.9
flock(1) really appeared first in NetBSD 6.1

(riz)

2013-09-21 16:38:45 UTC netbsd-6-1 commitmail json YAML

2013-09-21 16:36:12 UTC netbsd-6-1 commitmail json YAML

Pull up following revision(s) (requested by khorben in ticket #951):
usr.bin/flock/flock.1: revision 1.9
flock(1) really appeared first in NetBSD 6.1

(riz)

2013-09-21 15:01:14 UTC MAIN commitmail json YAML

flock(1) really appeared first in NetBSD 6.1

(khorben)

2013-09-21 13:22:48 UTC MAIN commitmail json YAML

2013-09-21 13:17:00 UTC MAIN commitmail json YAML

Improve a couple of DPRINTFs

(skrll)

2013-09-21 08:40:37 UTC MAIN commitmail json YAML

Explicitly link srt0.o (Standalone RunTime startup code) first.

Taken from the similar fix of mvme68k:
http://mail-index.netbsd.org/source-changes/2013/09/21/msg047819.html
> MVME PROM requires raw binaries (by objcopy -O binary) so we have to
> make sure the entry point is located at the first address of the binaries.
The original changes to switch to using MI libsa is:
http://mail-index.netbsd.org/source-changes/2011/01/02/msg016563.html

Should be pulled up to netbsd-6 branches.
(though untested since there seems no users of mvmeppc)

(tsutsui)

2013-09-21 08:32:39 UTC MAIN commitmail json YAML

Explicitly link SRT0.o (Standalone RunTime startup code) first.

This is my fault on changes to make mvme68k bootloaders use MI libsa:
http://mail-index.netbsd.org/source-changes/2011/01/02/msg016539.html
MVME PROM requires raw binaries (by objcopy -O binary) so we have to
make sure the entry point is located at the first address of the binaries.

The problem (6.1 netboot fails with an illegal instruction message)
is reported by Andrew Gillham on port-mvme68k@:
http://mail-index.netbsd.org/port-mvme68k/2013/09/17/msg000082.html
Note mvme68k bootloadres in netbsd-6 still have another bug triggered
by gcc-4.5.

Should be pulled up to netbsd-6 branches.

(tsutsui)

2013-09-21 06:24:43 UTC MAIN commitmail json YAML

Fix a build error on a kernel config without 68040 machines.

Reported by Andrew Gillham on port-hp300@:
http://mail-index.NetBSD.org/port-hp300/2013/09/09/msg000077.html
(I removed defined(68060) since hp300 doesn't have it)

Should be pulled up to netbsd-6.

(tsutsui)

2013-09-21 02:59:52 UTC netbsd-5-2 commitmail json YAML

2013-09-21 02:59:40 UTC netbsd-5-2 commitmail json YAML

Pull up following revision(s) (requested by apb in ticket #1880):
share/zoneinfo/australasia: revision 1.33
Merge the Fiji-related change from tzdata2013e.
This is the only urgent change in tzdata2013e.
    This year Fiji will start DST on October 27, not October 20.
    (Thanks to David Wheeler for the heads-up.)  For now, guess that
    Fiji will continue to spring forward the Sunday before the fourth
    Monday in October.

(riz)

2013-09-21 02:59:29 UTC netbsd-5-1 commitmail json YAML

2013-09-21 02:59:10 UTC netbsd-5-1 commitmail json YAML

Pull up following revision(s) (requested by apb in ticket #1880):
share/zoneinfo/australasia: revision 1.33
Merge the Fiji-related change from tzdata2013e.
This is the only urgent change in tzdata2013e.
    This year Fiji will start DST on October 27, not October 20.
    (Thanks to David Wheeler for the heads-up.)  For now, guess that
    Fiji will continue to spring forward the Sunday before the fourth
    Monday in October.

(riz)

2013-09-21 02:58:59 UTC netbsd-5 commitmail json YAML

2013-09-21 02:58:42 UTC netbsd-5 commitmail json YAML

Pull up following revision(s) (requested by apb in ticket #1880):
share/zoneinfo/australasia: revision 1.33
Merge the Fiji-related change from tzdata2013e.
This is the only urgent change in tzdata2013e.
    This year Fiji will start DST on October 27, not October 20.
    (Thanks to David Wheeler for the heads-up.)  For now, guess that
    Fiji will continue to spring forward the Sunday before the fourth
    Monday in October.

(riz)

2013-09-21 02:57:03 UTC netbsd-6-1 commitmail json YAML

2013-09-21 02:56:49 UTC netbsd-6-1 commitmail json YAML

Pull up following revision(s) (requested by apb in ticket #949):
share/zoneinfo/australasia: revision 1.33
Merge the Fiji-related change from tzdata2013e.
This is the only urgent change in tzdata2013e.
    This year Fiji will start DST on October 27, not October 20.
    (Thanks to David Wheeler for the heads-up.)  For now, guess that
    Fiji will continue to spring forward the Sunday before the fourth
    Monday in October.

(riz)

2013-09-21 02:56:40 UTC netbsd-6-0 commitmail json YAML

2013-09-21 02:56:24 UTC netbsd-6-0 commitmail json YAML

Pull up following revision(s) (requested by apb in ticket #949):
share/zoneinfo/australasia: revision 1.33
Merge the Fiji-related change from tzdata2013e.
This is the only urgent change in tzdata2013e.
    This year Fiji will start DST on October 27, not October 20.
    (Thanks to David Wheeler for the heads-up.)  For now, guess that
    Fiji will continue to spring forward the Sunday before the fourth
    Monday in October.

(riz)

2013-09-21 02:56:13 UTC netbsd-6 commitmail json YAML

2013-09-21 02:55:59 UTC netbsd-6 commitmail json YAML

Pull up following revision(s) (requested by apb in ticket #949):
share/zoneinfo/australasia: revision 1.33
Merge the Fiji-related change from tzdata2013e.
This is the only urgent change in tzdata2013e.
    This year Fiji will start DST on October 27, not October 20.
    (Thanks to David Wheeler for the heads-up.)  For now, guess that
    Fiji will continue to spring forward the Sunday before the fourth
    Monday in October.

(riz)

2013-09-20 23:19:52 UTC MAIN commitmail json YAML

bpfjit: replace malloc with kmem, KNF a little, add RCS ID.

(rmind)

2013-09-20 21:40:56 UTC MAIN commitmail json YAML

Remove trailing whitespace.

(wiz)

2013-09-20 21:39:59 UTC MAIN commitmail json YAML

2013-09-20 21:30:49 UTC MAIN commitmail json YAML

Remove trailing whitespace.

(wiz)

2013-09-20 20:46:01 UTC MAIN commitmail json YAML

Merge the Fiji-related change from tzdata2013e.
This is the only urgent change in tzdata2013e.

    This year Fiji will start DST on October 27, not October 20.
    (Thanks to David Wheeler for the heads-up.)  For now, guess that
    Fiji will continue to spring forward the Sunday before the fourth
    Monday in October.

(apb)

2013-09-20 19:13:39 UTC MAIN commitmail json YAML

mark mbuf as free when we return it to the pool (Beverly Schwartz)

(christos)

2013-09-20 19:09:06 UTC MAIN commitmail json YAML

mention new tzcode, hi apb!

(christos)

2013-09-20 19:07:29 UTC MAIN commitmail json YAML

the code specifies package info now.

(christos)

2013-09-20 19:06:54 UTC MAIN commitmail json YAML

Welcome to tzcode 2013e:

  Changes affecting API

    The 'zic' command now outputs a dummy transition when far-future
    data can't be summarized using a TZ string, and uses a 402-year
    window rather than a 400-year window.  For the current data, this
    affects only the Asia/Tehran file.  It does not affect any of the
    time stamps that this file represents, so zdump outputs the same
    information as before.  (Thanks to Andrew Main (Zefram).)

    The 'date' command has a new '-r' option, which lets you specify
    the integer time to display, a la FreeBSD.

    The 'tzselect' command has two new options '-c' and '-n', which lets you
    select a zone based on latitude and longitude.

    The 'zic' command's '-v' option now warns about constructs that
    require the new version-3 binary file format.  (Thanks to Arthur
    David Olson for the suggestion.)

    Support for floating-point time_t has been removed.
    It was always dicey, and POSIX no longer requires it.
    (Thanks to Eric Blake for suggesting to the POSIX committee to
    remove it, and thanks to Alan Barrett, Clive D.W. Feather, Andy
    Heninger, Arthur David Olson, and Alois Treindl, for reporting
    bugs and elucidating some of the corners of the old floating-point
    implementation.)

    The signatures of 'offtime', 'timeoff', and 'gtime' have been
    changed back to the old practice of using 'long' to represent UT
    offsets.  This had been inadvertently and mistakenly changed to
    'int_fast32_t'.  (Thanks to Christos Zoulos.)

    The code avoids undefined behavior on integer overflow in some
    more places, including gmtime, localtime, mktime and zdump.

  Changes affecting the zdump utility

    zdump now outputs "UT" when referring to Universal Time, not "UTC".
    "UTC" does not make sense for time stamps that predate the introduction
    of UTC, whereas "UT", a more-generic term, does.  (Thanks to Steve Allen
    for clarifying UT vs UTC.)

  Data changes affecting behavior of tzselect and similar programs

    Country code BQ is now called the more-common name "Caribbean Netherlands"
    rather than the more-official "Bonaire, St Eustatius & Saba".

    Remove from zone.tab the names America/Montreal, America/Shiprock,
    and Antarctica/South_Pole, as they are equivalent to existing
    same-country-code zones for post-1970 time stamps.  The data for
    these names are unchanged, so the names continue to work as before.

  Changes affecting code internals

    zic -c now runs way faster on 64-bit hosts when given large numbers.

    zic now uses vfprintf to avoid allocating and freeing some memory.

    tzselect now computes the list of continents from the data,
    rather than have it hard-coded.

    Minor changes pacify GCC 4.7.3 and GCC 4.8.1.

  Changes affecting the build procedure

    The 'leapseconds' file is now generated automatically from a
    new file 'leap-seconds.list', which is a copy of
    <ftp://time.nist.gov/pub/leap-seconds.list>.
    A new source file 'leapseconds.awk' implements this.
    The goal is simplification of the future maintenance of 'leapseconds'.

    When building the 'posix' or 'right' subdirectories, if the
    subdirectory would be a copy of the default subdirectory, it is
    now made a symbolic link if that is supported.  This saves about
    2 MB of file system space.

    The links America/Shiprock and Antarctica/South_Pole have been
    moved to the 'backward' file.  This affects only nondefault builds
    that omit 'backward'.

  Changes affecting documentation and commentary

    Changes to the 'tzfile' man page

      It now mentions that the binary file format may be extended in
      future versions by appending data.

      It now refers to the 'zdump' and 'zic' man pages.

    Changes to the 'zic' man page

      It lists conditions that elicit a warning with '-v'.

      It says that the behavior is unspecified when duplicate names
      are given, or if the source of one link is the target of another.

      Its examples are updated to match the latest data.

      The definition of white space has been clarified slightly.
      (Thanks to Michael Deckers.)

    Changes to the 'Theory' file

      There is a new section about the accuracy of the tz database,
      describing the many ways that errors can creep in, and
      explaining why so many of the pre-1970 time stamps are wrong or
      misleading (thanks to Steve Allen, Lester Caine, and Garrett
      Wollman for discussions that contributed to this).

      The 'Theory' file describes LMT better (this follows a
      suggestion by Guy Harris).

      It refers to the 2013 edition of POSIX rather than the 2004 edition.

      It's mentioned that excluding 'backward' should not affect the
      other data, and it suggests at least one zone.tab name per
      inhabited country (thanks to Stephen Colebourne).

      Some longstanding restrictions on names are documented, e.g.,
      'America/New_York' precludes 'America/New_York/Bronx'.

      It gives more reasons for the 1970 cutoff.

      It now mentions which time_t variants are supported, such as
      signed integer time_t.  (Thanks to Paul Goyette for reporting
      typos in an experimental version of this change.)

      (Thanks to Philip Newton for correcting typos in these changes.)

    Documentation and commentary is more careful to distinguish UT in
    general from UTC in particular.  (Thanks to Steve Allen.)

    Add a better source for the Zurich 1894 transition.
    (Thanks to Pierre-Yves Berger.)

    Update shapefile citations in tz-link.htm.  (Thanks to Guy Harris.)

(christos)

2013-09-20 17:51:04 UTC MAIN commitmail json YAML

2013-09-20 16:49:00 UTC MAIN commitmail json YAML

2013-09-20 16:39:14 UTC MAIN commitmail json YAML

Make it possible to specify a directory for the .ioconf file.
Still default to .CURDIR

(pooka)

2013-09-20 14:20:47 UTC netbsd-5-1 commitmail json YAML

2013-09-20 14:20:28 UTC netbsd-5-1 commitmail json YAML

Pull up following revision(s) (requested by tron in ticket #1879):
sbin/raidctl/raidctl.8: revision 1.65
Note that NetBSD/amd64 can boot off RAID volumes.

(riz)

2013-09-20 14:20:09 UTC netbsd-5-2 commitmail json YAML

2013-09-20 14:18:45 UTC netbsd-5-2 commitmail json YAML

Pull up following revision(s) (requested by tron in ticket #1879):
sbin/raidctl/raidctl.8: revision 1.65
Note that NetBSD/amd64 can boot off RAID volumes.

(riz)

2013-09-20 14:18:09 UTC netbsd-5 commitmail json YAML

2013-09-20 14:17:49 UTC netbsd-5 commitmail json YAML

Pull up following revision(s) (requested by tron in ticket #1879):
sbin/raidctl/raidctl.8: revision 1.65
Note that NetBSD/amd64 can boot off RAID volumes.

(riz)

2013-09-20 14:15:31 UTC netbsd-6-0 commitmail json YAML

2013-09-20 14:15:07 UTC netbsd-6-0 commitmail json YAML

Pull up following revision(s) (requested by tron in ticket #948):
sbin/raidctl/raidctl.8: revision 1.65
Note that NetBSD/amd64 can boot off RAID volumes.

(riz)

2013-09-20 14:14:50 UTC netbsd-6-1 commitmail json YAML

2013-09-20 14:14:28 UTC netbsd-6-1 commitmail json YAML

Pull up following revision(s) (requested by tron in ticket #948):
sbin/raidctl/raidctl.8: revision 1.65
Note that NetBSD/amd64 can boot off RAID volumes.

(riz)

2013-09-20 14:13:48 UTC netbsd-6 commitmail json YAML

2013-09-20 14:13:21 UTC netbsd-6 commitmail json YAML

Pull up following revision(s) (requested by tron in ticket #948):
sbin/raidctl/raidctl.8: revision 1.65
Note that NetBSD/amd64 can boot off RAID volumes.

(riz)

2013-09-20 12:20:02 UTC MAIN commitmail json YAML

Fix typos in comments.

(wiz)

2013-09-20 10:59:24 UTC MAIN commitmail json YAML

2013-09-20 10:58:16 UTC MAIN commitmail json YAML

2013-09-20 10:56:32 UTC MAIN commitmail json YAML

2013-09-20 09:05:53 UTC MAIN commitmail json YAML

2013-09-20 06:43:57 UTC MAIN commitmail json YAML

Note that NetBSD/amd64 can boot of RAID volumes.

(tron)

2013-09-20 03:49:23 UTC netbsd-6 commitmail json YAML

2013-09-20 03:49:00 UTC netbsd-6 commitmail json YAML

Pull up following revision(s) (requested by fair in ticket #936):
sys/dev/pci/piixpmreg.h: revision 1.6
sys/dev/pci/piixpm.c: revision 1.42
The SB800 SMBus controller has four selectable SDA lines.
Expose them as four iic busses.

(riz)

2013-09-20 03:15:45 UTC netbsd-6-1 commitmail json YAML

2013-09-20 03:15:28 UTC netbsd-6-1 commitmail json YAML

Pull up following revision(s) (requested by spz in ticket #947):
etc/ssh/ssh_known_hosts: revision 1.8
fix narn-names -> mollari
add ecdsa keys (in many cases, pre-emptive strikes)

(riz)

2013-09-20 03:15:14 UTC netbsd-6-0 commitmail json YAML

2013-09-20 03:14:52 UTC netbsd-6-0 commitmail json YAML

Pull up following revision(s) (requested by spz in ticket #947):
etc/ssh/ssh_known_hosts: revision 1.8
fix narn-names -> mollari
add ecdsa keys (in many cases, pre-emptive strikes)

(riz)

2013-09-20 03:14:37 UTC netbsd-6 commitmail json YAML

2013-09-20 03:14:17 UTC netbsd-6 commitmail json YAML

Pull up following revision(s) (requested by spz in ticket #947):
etc/ssh/ssh_known_hosts: revision 1.8
fix narn-names -> mollari
add ecdsa keys (in many cases, pre-emptive strikes)

(riz)

2013-09-20 03:12:19 UTC netbsd-5 commitmail json YAML

2013-09-20 03:12:05 UTC netbsd-5 commitmail json YAML

Pull up following revision(s) (requested by spz in ticket #1878):
etc/ssh/ssh_known_hosts: revision 1.7
etc/ssh/ssh_known_hosts: revision 1.8
babylon5 ssh key changed (due to reinstall)
fix narn-names -> mollari
add ecdsa keys (in many cases, pre-emptive strikes)

(riz)

2013-09-20 03:11:45 UTC netbsd-5-1 commitmail json YAML

2013-09-20 03:11:24 UTC netbsd-5-1 commitmail json YAML

Pull up following revision(s) (requested by spz in ticket #1878):
etc/ssh/ssh_known_hosts: revision 1.7
etc/ssh/ssh_known_hosts: revision 1.8
babylon5 ssh key changed (due to reinstall)
fix narn-names -> mollari
add ecdsa keys (in many cases, pre-emptive strikes)

(riz)

2013-09-20 03:11:08 UTC netbsd-5-2 commitmail json YAML

2013-09-20 03:10:44 UTC netbsd-5-2 commitmail json YAML

Pull up following revision(s) (requested by spz in ticket #1878):
etc/ssh/ssh_known_hosts: revision 1.7
etc/ssh/ssh_known_hosts: revision 1.8
babylon5 ssh key changed (due to reinstall)
fix narn-names -> mollari
add ecdsa keys (in many cases, pre-emptive strikes)

(riz)

2013-09-20 03:03:52 UTC MAIN commitmail json YAML

- NPF: change the group/ruleset syntax - simplify.  Update npf.conf(5) manual.
- Add support for the inline pcap-filter(7) syntax in the rule, e.g.:
block out final pcap-filter "tcp and dst 10.1.1.252"

(rmind)

2013-09-19 23:29:25 UTC MAIN commitmail json YAML

remove unused OPENPIC flags.

(christos)

2013-09-19 23:28:52 UTC MAIN commitmail json YAML

2013-09-19 21:19:13 UTC MAIN commitmail json YAML

look in the right place for the modules of compat binaries

(christos)

2013-09-19 21:18:17 UTC MAIN commitmail json YAML

Pass MLIBDIR to CPPFLAGS.

(christos)

2013-09-19 19:29:35 UTC MAIN commitmail json YAML

make debugging code use __func__
remove stray printf

(christos)

2013-09-19 18:50:59 UTC MAIN commitmail json YAML

2013-09-19 18:50:36 UTC MAIN commitmail json YAML

2013-09-19 17:55:22 UTC MAIN commitmail json YAML

2013-09-19 17:29:06 UTC MAIN commitmail json YAML

2013-09-19 16:16:03 UTC MAIN commitmail json YAML

Pull in all of sys/dev (i.e. don't skip pci/ and microcode/).

(pooka)

2013-09-19 15:13:43 UTC MAIN commitmail json YAML

2013-09-19 14:43:39 UTC MAIN commitmail json YAML

2013-09-19 13:51:45 UTC MAIN commitmail json YAML

2013-09-19 12:05:11 UTC MAIN commitmail json YAML

2013-09-19 12:04:36 UTC MAIN commitmail json YAML

Move physmem calculations before nptpage initialization.

Fixes mvme68k specific part of PR port-m68k/45915
(panic: pmap_enter_ptpage: can't get KPT page).
Reported and confirmed by Andrew Gillham on his MVME177:
http://mail-index.NetBSD.org/port-mvme68k/2013/09/17/msg000082.html

Should be pulled up to all netbsd-6 branches.

(tsutsui)

2013-09-19 01:49:07 UTC MAIN commitmail json YAML

2013-09-19 01:04:46 UTC MAIN commitmail json YAML

2013-09-19 00:58:11 UTC MAIN commitmail json YAML

Untabify the header definition to avoid misaligned comment on
str_delim in PostScript output.

(uwe)

2013-09-19 00:53:55 UTC MAIN commitmail json YAML

Use .Fa instead of .Ar to refer to header fields.

(uwe)

2013-09-19 00:50:56 UTC MAIN commitmail json YAML

npfctl_rule: fixes for the dynamic rules.

(rmind)

2013-09-19 00:48:48 UTC MAIN commitmail json YAML

bpf_validate_ext: allow COP to modify the memstore.

(rmind)

2013-09-19 00:34:00 UTC MAIN commitmail json YAML

Now that we use "nbtool_config.h" we can use __dead again and drop
local attempts to define its equivalent.

Also drop the comment that warns this file is a tool; use of
"nbtool_config.h" makes it evident.

(uwe)

2013-09-19 00:18:52 UTC MAIN commitmail json YAML

Don't define TRUE/FALSE, which may conflict with host headers.
TRUE is unused anyway.  Replace all instances of FALSE with 0.

(uwe)

2013-09-18 23:34:55 UTC MAIN commitmail json YAML

Add bpf_filter_ext() to use with BPF COP, restore bpf_filter() as it was
originally to preserve compatibility.  Similarly, add bpf_validate_ext()
which takes bpf_ctx_t.

(rmind)

2013-09-18 23:27:38 UTC MAIN commitmail json YAML

knf (blank line even if there are no local declarations)

(pgoyette)

2013-09-18 23:18:14 UTC MAIN commitmail json YAML

#include "nbtool_config.h" to pull in getprogname() declaration.

(uwe)

2013-09-18 22:53:39 UTC MAIN commitmail json YAML

Fix previous: use PICFLAGS for crtbeginS.o
Should unbreak sh3 builds.

XXX: PICFLAGS is defined in bsd.lib.mk which lib/csu does not use.
For now supply a local definition.  joerg@, please fix appropriately.

(uwe)

2013-09-18 20:01:20 UTC netbsd-6 commitmail json YAML

2013-09-18 20:00:53 UTC netbsd-6 commitmail json YAML

Pull up following revision(s) (requested by phx in ticket #946):
sys/arch/sandpoint/stand/altboot/rge.c: revision 1.7
sys/arch/sandpoint/stand/altboot/brdsetup.c: revision 1.32
sys/dev/ic/rtl8169.c: revision 1.138
QNAP V200 boards have no EEPROM for the MAC address, so all devices default
to the same address (00:e0:4c:69:20:01).
Now we read the real MAC address from the flash ROM. It is stored at the
beginning of a 512-byte block in ASCII format. Some QNAP's have a broken
ext2 file system, so we cannot look for the file ETH0.MAC_ADDR therein,
but have to search the whole flash in 512-byte steps for candidates...
Make re(4) driver always use IDR register values for its MAC address.
Some sandpoint NAS firmwares set MAC address per their
firmware settings and don't use re(4)'s EEPROM values.
Per rtl8169 manuals re(4) chip reads EEPROM automatically after
hardware reset and Linux driver also uses IDR registers,
so this change should not affect existing other boards
which actually have vaild EEPROM.
Per discussion in old tech-kern@ thread:
http://mail-index.netbsd.org/tech-kern/2012/12/01/msg014573.html
Note rtl81x9.c is still shared among rtk(4) only for a multicast function
(to avoid boring refactoring work).

(bouyer)

2013-09-18 19:54:30 UTC netbsd-6-1 commitmail json YAML

2013-09-18 19:54:17 UTC netbsd-6-1 commitmail json YAML

Apply patch, requested by riz in ticket #945
xsrc/external/mit/libX11/dist/src/xkb/XKBNames.c patch
xsrc/external/mit/libX11/dist/src/xkb/XKBGetMap.c patch

The size of the arrays is max_key_code + 1. This makes these functions
consistent with the other checks added for CVE-2013-1997.
Check the XkbGetNames reply when names->keys was just allocated
Should fix PR lib/48170.

(bouyer)

2013-09-18 19:53:57 UTC netbsd-6-0 commitmail json YAML

2013-09-18 19:53:43 UTC netbsd-6-0 commitmail json YAML

Apply patch, requested by riz in ticket #945
xsrc/external/mit/libX11/dist/src/xkb/XKBNames.c patch
xsrc/external/mit/libX11/dist/src/xkb/XKBGetMap.c patch

The size of the arrays is max_key_code + 1. This makes these functions
consistent with the other checks added for CVE-2013-1997.
Check the XkbGetNames reply when names->keys was just allocated
Should fix PR lib/48170.

(bouyer)

2013-09-18 19:53:23 UTC netbsd-6 commitmail json YAML

2013-09-18 19:52:37 UTC netbsd-6 commitmail json YAML

Apply patch, requested by riz in ticket #945
xsrc/external/mit/libX11/dist/src/xkb/XKBNames.c patch
xsrc/external/mit/libX11/dist/src/xkb/XKBGetMap.c patch

The size of the arrays is max_key_code + 1. This makes these functions
consistent with the other checks added for CVE-2013-1997.
Check the XkbGetNames reply when names->keys was just allocated
Should fix PR lib/48170.

(bouyer)

2013-09-18 19:49:42 UTC netbsd-5-2 commitmail json YAML

2013-09-18 19:49:16 UTC netbsd-5 commitmail json YAML

2013-09-18 19:48:51 UTC netbsd-5-1 commitmail json YAML

2013-09-18 19:48:25 UTC netbsd-5-2 commitmail json YAML

2013-09-18 19:46:41 UTC netbsd-5-2 commitmail json YAML

2013-09-18 19:46:23 UTC netbsd-5-2 commitmail json YAML

Apply patch, requested by riz in ticket #1877
xsrc/external/mit/libX11/dist/src/xkb/XKBNames.c patch

The size of the arrays is max_key_code + 1. This makes these functions
consistent with the other checks added for CVE-2013-1997.
Check the XkbGetNames reply when names->keys was just allocated
Should fix PR lib/48170.

(bouyer)

2013-09-18 19:46:01 UTC netbsd-5-1 commitmail json YAML

2013-09-18 19:45:40 UTC netbsd-5-1 commitmail json YAML

Apply patch, requested by riz in ticket #1877
xsrc/external/mit/libX11/dist/src/xkb/XKBNames.c patch

The size of the arrays is max_key_code + 1. This makes these functions
consistent with the other checks added for CVE-2013-1997.
Check the XkbGetNames reply when names->keys was just allocated
Should fix PR lib/48170.

(bouyer)

2013-09-18 19:45:15 UTC netbsd-5 commitmail json YAML

2013-09-18 19:44:57 UTC netbsd-5 commitmail json YAML

Apply patch, requested by riz in ticket #1877
xsrc/external/mit/libX11/dist/src/xkb/XKBNames.c patch

The size of the arrays is max_key_code + 1. This makes these functions
consistent with the other checks added for CVE-2013-1997.
Check the XkbGetNames reply when names->keys was just allocated
Should fix PR lib/48170.

(bouyer)

2013-09-18 16:33:14 UTC MAIN commitmail json YAML

Use reference counting to keep track of construction and destruction of the
structures used by both the nfs server and client code. Tested by pgoyette@

1. mount remote fs via nfs (my /home directory), which autoloads nfs module
2. manually modload nfsserver
3. wait a bit
4. manually modunload nfsserver
5. wait a couple minutes
6. verify that client access still works (/bin/ls ~paul home dir)
7. manually modload nfsserver again
8. start an nfsd process
9. wait a bit
10. kill nfsd process
11. wait
12. manually modunload nfsserver again
13. verify continued client access

XXX: Note that nfs_vfs_init() calls nfs_init(), but nfs_vfs_done() does not
    call nfs_fini(). Also note that the destruction order is wrong in it,
    but probably does not matter. "someone" (!= me) should fix it :-) and
    run the above tests.

(christos)

2013-09-18 14:37:24 UTC MAIN commitmail json YAML

s/if (cond) return true; else return false;/return cond;/

(christos)

2013-09-18 14:30:45 UTC MAIN commitmail json YAML

a preliminary driver for nvidia geforce graphics chips
so far it only supports the GeForce 2MX, tested on macppc only
no acceleration yet, just some DAC setup
the main advantage over genfb is that this driver knows how to setup the
palette registers for the 2nd output

(macallan)

2013-09-18 13:31:39 UTC MAIN commitmail json YAML

Bump MAXTSIZ to 32 MB (it is an arbitrary limit anyway)

(martin)

2013-09-18 09:25:20 UTC MAIN commitmail json YAML

When compiling kernel modules on sparc64 force the same memory model as
we force for the kernel (i.e. do not rely on compiler defaults here)

(martin)

2013-09-18 03:45:18 UTC netbsd-5-1 commitmail json YAML

2013-09-18 03:44:36 UTC netbsd-5-1 commitmail json YAML

Pull up following revision(s) (requested by spz in ticket #1876):
sys/netinet6/in6.c: revision 1.167 via patch
Include BRDADDR and NETMASK to the v4 ioctls we ban for v6; from FreeBSD.

(msaitoh)

2013-09-18 03:44:01 UTC netbsd-5-2 commitmail json YAML

2013-09-18 03:42:53 UTC netbsd-5-2 commitmail json YAML

Pull up following revision(s) (requested by spz in ticket #1876):
sys/netinet6/in6.c: revision 1.167 via patch
Include BRDADDR and NETMASK to the v4 ioctls we ban for v6; from FreeBSD.

(msaitoh)

2013-09-18 03:42:21 UTC netbsd-5 commitmail json YAML

2013-09-18 03:41:45 UTC netbsd-5 commitmail json YAML

Pull up following revision(s) (requested by spz in ticket #1876):
sys/netinet6/in6.c: revision 1.167 via patch
Include BRDADDR and NETMASK to the v4 ioctls we ban for v6; from FreeBSD.

(msaitoh)

2013-09-18 03:26:27 UTC netbsd-6-0 commitmail json YAML

2013-09-18 03:25:47 UTC netbsd-6-0 commitmail json YAML

Pull up following revision(s) (requested by spz in ticket #944):
sys/netinet6/in6.c: revision 1.167 via patch
Include BRDADDR and NETMASK to the v4 ioctls we ban for v6; from FreeBSD.

(msaitoh)

2013-09-18 03:25:15 UTC netbsd-6-1 commitmail json YAML

2013-09-18 03:23:56 UTC netbsd-6-1 commitmail json YAML

Pull up following revision(s) (requested by spz in ticket #944):
sys/netinet6/in6.c: revision 1.167 via patch
Include BRDADDR and NETMASK to the v4 ioctls we ban for v6; from FreeBSD.

(msaitoh)

2013-09-18 03:23:28 UTC netbsd-6 commitmail json YAML