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 (4h)  netbsd-8 (5d)  netbsd-10 (5d)  netbsd-9 (11d)  thorpej-ifq (175d)  thorpej-altq-separation (178d) 

2024-05-10 02:58:59 UTC Now

2017-04-23 23:39:42 UTC MAIN commitmail json YAML

Add luareadhappy to the list.

(sevan)

2017-04-23 21:05:09 UTC bouyer-socketcan commitmail json YAML

Add locking and refcounting to canpcb.
Store the canpcb in the in the mbuf tag on send instead of the socket's address.
This should protect against a race where the socket cloud be closed before
we get back the mbuf from the adapter's driver.

(bouyer)

2017-04-23 20:47:22 UTC MAIN commitmail json YAML

Disconnect maintaining fragment state from keeping session state. The user
now must specify keep frags along with keep state to have ipfilter do what
it did before, as documented in ipf.conf.5. (Cy Schubert @ FreeBSD)

(christos)

2017-04-23 19:09:29 UTC MAIN commitmail json YAML

Free the right fragment (Cy Schubert @ FreeBSD). This will cause use after free
issues and eventually panic.

(christos)

2017-04-23 18:23:32 UTC MAIN commitmail json YAML

2017-04-23 18:22:36 UTC MAIN commitmail json YAML

Add our utempter since it now everything works.

(christos)

2017-04-23 16:56:49 UTC MAIN commitmail json YAML

Teach whatis(1) to handle MLINKS

Similar to apropos(1), whatis did not utilise the mandb_links table till now.
Therefore, if it was asked about one of the links to a man page, it would
error out. This change teaches whatis(1) to look up both the FTS table
as well as the links table, thus ensuring that it is able to answer queries
about MLINKS as well.

Comparision between outputs before this change and after this change:

#Before change
$ whatis realloc
realloc: not found

#after change
$ ./whatis realloc
realloc(3) - general memory allocation operations
realloc(3) - general purpose memory allocation functions
realloc(9) - general-purpose kernel memory allocator

(abhinav)

2017-04-23 14:34:23 UTC MAIN commitmail json YAML

xref also mvsata(4), siisata(4)

(jdolecek)

2017-04-23 14:33:28 UTC jdolecek-ncq commitmail json YAML

Allocate a full compliment of queue slots for each channel.

(jakllsch)

2017-04-23 14:25:03 UTC jdolecek-ncq commitmail json YAML

Use ata_kill_active() in siisata_reset_channel() so as to ensure all
in-flight xfers are taken care of.

(jakllsch)

2017-04-23 13:52:57 UTC MAIN commitmail json YAML

Better handle MLINKS in apropos(1).

apropos(1) only indexes the first .Nm entry from the NAME section in the full
text index. Rest of the .Nm entries are stored in a separate table: mandb_links.

Till now apropos(1) did not use the mandb_links table. So whenever a query
was being made for one of the man page links, such as realloc(3), it was showing
malloc(3) in the results but not as the first result. And, also the result would
show up as malloc(3), rather than realloc(3) (which can be confusing).

With this change, for single keyword queries, apropos(1) would now utilise the
mandb_links table as well. If the query is for one of the links of a man page,
it would show as the first result. Also, the result would show up as the name
of the link rather than the original man page name. For example, if the query
was for realloc, the output would be realloc(3), rather than malloc(3).

Following are some example queries showing difference in the output before this
change and after this change:

#Before changes
$ apropos -n 5 -M realloc
reallocarr (3)    reallocate array
reallocarray (3)  reallocate memory for an array of elements checking
for overflow
fgetwln (3)      get a line of wide characters from a stream
fgetln (3)        get a line from a stream
posix_memalign (3)        aligned memory allocation

#After changes
$ ./apropos -n 5 -M realloc
realloc (3)      general memory allocation operations
realloc (3)      general purpose memory allocation functions
realloc (9)      general-purpose kernel memory allocator
reallocarr (3)    reallocate array
reallocarray (3)  reallocate memory for an array of elements checking
for overflow

#Before changes
$ apropos -n 5 -M TAILQ_REMOVE
SLIST_HEAD (3) implementations of singly-linked lists, lists, simple
queues, tail queues, and singly-linked tail queues

#After changes
$ ./apropos -n 5 -M TAILQ_REMOVE
TAILQ_REMOVE (3)  implementations of singly-linked lists, lists,
simple queues, tail queues, and singly-linked tail queues

#Before changes
$ apropos -n 5 -M falloc
filedesc (9)      file descriptor tables and operations
file (9)  operations on file entries

#After changes
$ ./apropos -n 5 -M falloc
falloc (9)        file descriptor tables and operations
file (9)  operations on file entries

ok christos@

(abhinav)

2017-04-23 13:23:02 UTC MAIN commitmail json YAML

fix typo (Leonardo Taccari)

(christos)

2017-04-23 12:31:38 UTC MAIN commitmail json YAML

2017-04-23 11:38:53 UTC MAIN commitmail json YAML

2017-04-23 11:37:29 UTC MAIN commitmail json YAML

Use more markup.

(wiz)

2017-04-23 11:17:25 UTC bouyer-socketcan commitmail json YAML

2017-04-23 10:46:55 UTC MAIN commitmail json YAML

Upstream Lua is at version 5.3.4.

(mbalmer)

2017-04-23 09:16:35 UTC jdolecek-ncq commitmail json YAML

note possible problem with ata_exec_xfer()

(jdolecek)

2017-04-23 06:46:04 UTC MAIN commitmail json YAML

Fix sentences at couple of places
s/a file/the file/
s/a -1 is returned/-1 is returned/

(abhinav)

2017-04-23 06:34:07 UTC MAIN commitmail json YAML

And actually remove the double-negative that triggered this series of
minor commits!  Thanks, Abhinav, for pointing out my typo!

(pgoyette)

2017-04-23 06:23:26 UTC MAIN commitmail json YAML

Reword further to make it clearer that the two flag bits are separately
settable.

(pgoyette)

2017-04-23 05:56:50 UTC MAIN commitmail json YAML

Fix a sentence (remove double negation)
Fix mandoc lint warning (remove Pp before Bd)

(abhinav)

2017-04-23 05:49:00 UTC MAIN commitmail json YAML

2017-04-23 02:02:00 UTC MAIN commitmail json YAML

2017-04-23 01:58:48 UTC MAIN commitmail json YAML

2017-04-23 01:57:36 UTC MAIN commitmail json YAML

2017-04-23 01:30:30 UTC jdolecek-ncq commitmail json YAML

Use WDC_QUEUE_DEPTH_MASK to correctly mask the NCQ depth IDENTIFY data.

(jakllsch)

2017-04-23 01:26:50 UTC jdolecek-ncq commitmail json YAML

Fix inverted ata_waitdrain_xfer_check() logic in siisata_atapi_complete().

(jakllsch)

2017-04-23 01:21:04 UTC jdolecek-ncq commitmail json YAML

Simplify wi_find() with container_of().

No need to search a list of wd_ioctls when the *bp is always going to be within the wd_ioctl structure.

Correctly initialize wi->wi_bp.b_dev in the non-data case anyway.

Fixes ATAIOCCOMMAND procesing on driver instances other than wd0.

(jakllsch)

2017-04-22 23:53:24 UTC MAIN commitmail json YAML

Get rid of tegra_cpuinit after scanning fdt and attach the cpufreq support
to the /cpus node. Use regulator API instead of poking directly at the I2C
controller to set voltages.

(jmcneill)

2017-04-22 23:50:13 UTC MAIN commitmail json YAML

remove unused field in softc

(jmcneill)

2017-04-22 23:46:29 UTC MAIN commitmail json YAML

Add SD0 regulator.

(jmcneill)

2017-04-22 23:01:36 UTC MAIN commitmail json YAML

2017-04-22 22:42:03 UTC MAIN commitmail json YAML

Clarify `kill -0'.  Note standard exit codes.

(riastradh)

2017-04-22 22:36:00 UTC MAIN commitmail json YAML

Remove comma after the last Nm entry.

(abhinav)

2017-04-22 21:50:50 UTC MAIN commitmail json YAML

If the "vqmmc-supply" regulator is present, use it to set signal voltage.

(jmcneill)

2017-04-22 21:50:13 UTC MAIN commitmail json YAML

2017-04-22 21:49:41 UTC MAIN commitmail json YAML

Add a vendor callback for setting signal voltage.

(jmcneill)

2017-04-22 21:48:56 UTC MAIN commitmail json YAML

2017-04-22 21:47:41 UTC MAIN commitmail json YAML

Add regulator APIs for setting and getting voltage.

(jmcneill)

2017-04-22 20:32:35 UTC MAIN commitmail json YAML

2017-04-22 20:20:19 UTC MAIN commitmail json YAML

Improve a comment

(skrll)

2017-04-22 20:19:53 UTC MAIN commitmail json YAML

Trailing whitespace

(skrll)

2017-04-22 20:07:54 UTC jdolecek-ncq commitmail json YAML

Avoid destroying uninitialized xfer on error in wdioctlstrategy().

(jakllsch)

2017-04-22 19:20:51 UTC MAIN commitmail json YAML

Explicitly initialize interrupt controllers and since we pass through to
GIC, don't include "LIC" in interrupt string.

(jmcneill)

2017-04-22 17:41:20 UTC MAIN commitmail json YAML

Set parent clock rate to 100MHz when SDR104 is disabled

(jmcneill)

2017-04-22 17:40:47 UTC MAIN commitmail json YAML

Fix fractional divider calculations and round down for sdmmc clocks.

(jmcneill)

2017-04-22 16:02:39 UTC MAIN commitmail json YAML

Keep track of the biggest fd used by, or available to, the user/script
and use that to control which fd's are examined by a (bare) fdflags
(with no fd args).

Usually this will mean that fdflags will no longer show the shell's
internal use fds, only user fds.

This is only a partial fix however, a user can easily discover the
shell's fd usage (eg: using fstat) and can then still use fdflags to
manipulate those fds (or even send output to them).

The shell needs to monitor its own fd usage better, and keep out of
the way of user fds - coming sometime later...

(kre)

2017-04-22 15:54:53 UTC MAIN commitmail json YAML

When verifying the size of the fd arg for fdflags skip leading 0's
(fdflags 0000000001 should work, fdflags 10000000 should not)

(kre)

2017-04-22 15:53:17 UTC MAIN commitmail json YAML

When -x is set, show assignments to the loop variable in a for loop.

(kre)

2017-04-22 15:12:59 UTC MAIN commitmail json YAML

2017-04-22 15:07:49 UTC MAIN commitmail json YAML

- set RI_FULLCLEAR
- clear RI_CURSOR when we clear the screen
no more garbage when switching screens
while there set RI_PREFER_ALPHA

(macallan)

2017-04-22 15:05:03 UTC MAIN commitmail json YAML

add RI_PREFER_ALPHA flag, for drivers that can draw such fonts by hardware

(macallan)

2017-04-22 14:19:36 UTC MAIN commitmail json YAML

Ensure that the task is returned to the free task list in an error branch.

(jmcneill)

2017-04-22 14:08:38 UTC jdolecek-ncq commitmail json YAML

Another one missed in previous.

(jakllsch)

2017-04-22 13:40:50 UTC jdolecek-ncq commitmail json YAML

3rd xfer interrupt argument fix change missed in previous.

(jakllsch)

2017-04-22 13:26:05 UTC MAIN commitmail json YAML

Add support for AS3722 RTC.

(jmcneill)

2017-04-22 13:24:45 UTC MAIN commitmail json YAML

2017-04-22 13:24:20 UTC MAIN commitmail json YAML

Add fdtbus_todr_attach.

The kernel will only ever use the first RTC driver to call todr_attach.
When drivers use fdtbus_todr_attach, if an "rtc0" alias exists in the
devicetree, ensure that only that device node calls todr_attach.

(jmcneill)

2017-04-22 13:19:28 UTC jdolecek-ncq commitmail json YAML

Don't use the third argument of the xfer interrupt functions to pass the slot number in siisata(4).

This (abuse) is redundant because we are now storing the slot in the xfer structure.

(jakllsch)

2017-04-22 12:22:31 UTC MAIN commitmail json YAML

When called as "link" (not currently installed that way) always simply
do a link(2) sys call, never use the internal linkit() routine, which
allows for a destination directory and installs the link inside (and more.)

This makes ln's "link" variant comply with its (currently commented out)
section if its manual page, and also makes it identical to /usr/sbin/link.

(kre)

2017-04-22 10:37:51 UTC MAIN commitmail json YAML

If there is no data in the mix ring, insert silence.

This will ensure that the hardware output pointer remains valid.

(nat)

2017-04-22 07:48:33 UTC MAIN commitmail json YAML

2017-04-22 07:48:19 UTC MAIN commitmail json YAML

state correct location for install-image (RELEASEDIR/images)

(plunky)

2017-04-22 05:32:40 UTC MAIN commitmail json YAML

Add crypto stuff on top of what we already have, rather than replacing!

(pgoyette)

2017-04-22 04:29:31 UTC MAIN commitmail json YAML

2017-04-22 04:25:09 UTC MAIN commitmail json YAML

Added I/O APIC EOI register definition.

(nonaka)

2017-04-22 04:24:26 UTC MAIN commitmail json YAML

2017-04-22 04:23:17 UTC MAIN commitmail json YAML

2017-04-21 23:49:18 UTC MAIN commitmail json YAML

2017-04-21 23:36:58 UTC MAIN commitmail json YAML

Setup the console serial port using the /chosen/stdout-path property
instead of the compile-time CONSADDR setting.

(jmcneill)

2017-04-21 23:35:30 UTC MAIN commitmail json YAML

Fix defparam name (CONADDR -> CONSADDR)

(jmcneill)

2017-04-21 23:35:01 UTC MAIN commitmail json YAML

Add some helpers to find the stdout device.

(jmcneill)

2017-04-21 23:07:45 UTC MAIN commitmail json YAML

libarchive now needs crypto

(christos)

2017-04-21 23:06:18 UTC MAIN commitmail json YAML

new libarchive need crypto.

(christos)

2017-04-21 22:46:26 UTC MAIN commitmail json YAML

need to treat as one word.

(christos)

2017-04-21 22:15:44 UTC MAIN commitmail json YAML

2017-04-21 21:13:04 UTC MAIN commitmail json YAML

Get the physical memory layout from the /memory node instead of reading
from the memory controller registers.

(jmcneill)

2017-04-21 21:08:57 UTC MAIN commitmail json YAML

Avoid using kmem in fdtbus_get_reg so we can use it early at boot to read
the physical memory layout of the system.

(jmcneill)

2017-04-21 20:17:26 UTC MAIN commitmail json YAML

Add some more text from FreeBSD.

(christos)

2017-04-21 19:38:35 UTC MAIN commitmail json YAML

Try to fix build of sys_lwp.c

lwp_create() has been acquired more arguments, there was missing the latest
one. Per analogiam with changes in the same commit to other source files,
go for &SS_INIT.

(kamil)

2017-04-21 19:33:56 UTC MAIN commitmail json YAML

Fix previous properly (wrong variable was tested) thanks riastradh@

(christos)

2017-04-21 19:18:05 UTC MAIN commitmail json YAML

2017-04-21 19:16:10 UTC MAIN commitmail json YAML

Fix build of rump after change in lwp_create's signature

(kamil)

2017-04-21 17:33:04 UTC MAIN commitmail json YAML

e2di_block is an array; can't be NULL, (clang)

(christos)

2017-04-21 16:54:19 UTC bouyer-socketcan commitmail json YAML

2017-04-21 15:29:41 UTC MAIN commitmail json YAML

TOOL_SED is bogus when building source sets, use builtins instead.

(christos)

2017-04-21 15:10:35 UTC MAIN commitmail json YAML

2017-04-21 15:06:37 UTC MAIN commitmail json YAML

Add some more products

(christos)

2017-04-21 15:04:10 UTC MAIN commitmail json YAML

Mention that the signal stack of the newly created lwp is reset to disabled.

(christos)

2017-04-21 14:46:31 UTC MAIN commitmail json YAML

fix number in copyright(4->3)

(szptvlfn)

2017-04-21 13:17:42 UTC MAIN commitmail json YAML

Enhance verbosity of debug message for ELF magic mismatch

Print e_ident[EI_MAG3] (it was missed)
Print e_ident[EI_CLASS] as it is used do determine correct ELF magic.

No functional change for non-debug (without option DEBUG_ELF) build.

(kamil)

2017-04-21 13:08:55 UTC bouyer-socketcan commitmail json YAML

can4linux code, and experiments, shows that the CAN clock frequency is
AWIN_REF_FREQ, not AWIN_REF_FREQ / 2 as the A20 doc suggests.
Always set the mbuf len to CAN_MTU, this is what linux does.
Set accept filters and clear errors counters on ifconfig up.

We can now send and receive CAN frames.

(bouyer)

2017-04-21 13:05:16 UTC bouyer-socketcan commitmail json YAML

Fix humanize_number() usage.
Display more user-friendly operational parameters (baud rate, tq value,
number of tq).

(bouyer)

2017-04-21 12:43:22 UTC MAIN commitmail json YAML

2017-04-21 12:20:25 UTC MAIN commitmail json YAML

tmux-2.4 out.

(wiz)

2017-04-21 12:18:59 UTC MAIN commitmail json YAML

Initialize intr_setattr of arm32_pci_chipset

(jmcneill)

2017-04-21 11:49:31 UTC MAIN commitmail json YAML

For want of a comma, the compiler was lost.

(kre)

2017-04-21 11:28:35 UTC MAIN commitmail json YAML

mark usage dead, simplify strings in it.

(christos)

2017-04-21 10:54:27 UTC jdolecek-ncq commitmail json YAML

move the wd* at umass? item to bugs, too

(jdolecek)

2017-04-21 10:53:43 UTC jdolecek-ncq commitmail json YAML

group items, slightly expand description

(jdolecek)

2017-04-21 09:01:53 UTC MAIN commitmail json YAML

Add Flattening Portal Bridge capability ID and Hierarchy ID extended
capability ID.

(msaitoh)

2017-04-21 08:39:06 UTC MAIN commitmail json YAML

Use inph for variable name of struct inpcb_hdr (NFC)

(ozaki-r)

2017-04-21 08:38:18 UTC MAIN commitmail json YAML

2017-04-21 05:38:03 UTC MAIN commitmail json YAML

When doing filename autocompletion, append a trailing slash at the end of directory
names. We already do this when there is only one completion option but
in case of of multiple completion options, it wasn't being done.

ok christos@

(abhinav)

2017-04-21 05:24:01 UTC netbsd-7 commitmail json YAML

2017-04-21 05:23:21 UTC netbsd-7 commitmail json YAML

src/doc/3RDPARTY@1.1145.2.40 / diff / nxr@1.1145.2.40
src/external/bsd/bind/dist/CHANGES@1.12.2.11 / diff / nxr@1.12.2.11
src/external/bsd/bind/dist/COPYRIGHT@1.1.1.8.4.3 / diff / nxr@1.1.1.8.4.3
src/external/bsd/bind/dist/README@1.1.1.14.2.11 / diff / nxr@1.1.1.14.2.11
src/external/bsd/bind/dist/bin/named/query.c@1.16.2.7 / diff / nxr@1.16.2.7
src/external/bsd/bind/dist/bin/tests/system/dname/ans3/ans.pl@1.1.1.1.2.3 / diff / nxr@1.1.1.1.2.3
src/external/bsd/bind/dist/bin/tests/system/dname/ns1/root.db@1.1.1.2.12.2 / diff / nxr@1.1.1.2.12.2
src/external/bsd/bind/dist/bin/tests/system/dname/ns2/example.db@1.1.1.2.12.2 / diff / nxr@1.1.1.2.12.2
src/external/bsd/bind/dist/bin/tests/system/dname/tests.sh@1.1.1.3.10.3 / diff / nxr@1.1.1.3.10.3
src/external/bsd/bind/dist/bin/tests/system/rndc/tests.sh@1.1.1.5.4.4 / diff / nxr@1.1.1.5.4.4
src/external/bsd/bind/dist/bin/tests/system/rpz/tests.sh@1.1.1.9.4.4 / diff / nxr@1.1.1.9.4.4
src/external/bsd/bind/dist/bind.keys@1.1.1.5.12.1 / diff / nxr@1.1.1.5.12.1
src/external/bsd/bind/dist/bind.keys.h@1.1.1.1.6.1 / diff / nxr@1.1.1.1.6.1
src/external/bsd/bind/dist/configure@1.2.2.5 / diff / nxr@1.2.2.5
src/external/bsd/bind/dist/doc/arm/Bv9ARM.ch01.html@1.1.1.11.2.10 / diff / nxr@1.1.1.11.2.10
src/external/bsd/bind/dist/doc/arm/Bv9ARM.ch02.html@1.1.1.8.2.10 / diff / nxr@1.1.1.8.2.10
src/external/bsd/bind/dist/doc/arm/Bv9ARM.ch03.html@1.1.1.13.2.10 / diff / nxr@1.1.1.13.2.10
src/external/bsd/bind/dist/doc/arm/Bv9ARM.ch04.html@1.1.1.15.2.11 / diff / nxr@1.1.1.15.2.11
src/external/bsd/bind/dist/doc/arm/Bv9ARM.ch05.html@1.1.1.14.2.10 / diff / nxr@1.1.1.14.2.10
src/external/bsd/bind/dist/doc/arm/Bv9ARM.ch06.html@1.1.1.15.2.11 / diff / nxr@1.1.1.15.2.11
      :
(more 48 files)
Pull up following revision(s) (requested by spz in ticket #1404):
doc/3RDPARTY: 1.1430 via patch
external/bsd/bind/dist/CHANGES: up to 1.26
external/bsd/bind/dist/COPYRIGHT: up to 1.1.1.11
external/bsd/bind/dist/README: up to 1.14
external/bsd/bind/dist/bin/named/query.c: up to 1.24
external/bsd/bind/dist/bin/tests/system/dname/ans3/ans.pl: up to 1.1.1.2
external/bsd/bind/dist/bin/tests/system/dname/ns1/root.db: up to 1.1.1.4
external/bsd/bind/dist/bin/tests/system/dname/ns2/example.db: up to 1.1.1.4
external/bsd/bind/dist/bin/tests/system/dname/tests.sh: up to 1.1.1.6
external/bsd/bind/dist/bin/tests/system/rndc/tests.sh: up to 1.1.1.9
external/bsd/bind/dist/bin/tests/system/rpz/tests.sh: up to 1.1.1.13
external/bsd/bind/dist/bind.keys: up to 1.1.1.6
external/bsd/bind/dist/bind.keys.h: up to 1.1.1.4
external/bsd/bind/dist/configure: up to 1.7
external/bsd/bind/dist/doc/arm/Bv9ARM.ch01.html: up to 1.1.1.24
external/bsd/bind/dist/doc/arm/Bv9ARM.ch02.html: up to 1.1.1.21
external/bsd/bind/dist/doc/arm/Bv9ARM.ch03.html: up to 1.1.1.26
external/bsd/bind/dist/doc/arm/Bv9ARM.ch04.html: up to 1.14
external/bsd/bind/dist/doc/arm/Bv9ARM.ch05.html: up to 1.1.1.27
external/bsd/bind/dist/doc/arm/Bv9ARM.ch06.html: up to 1.14
external/bsd/bind/dist/doc/arm/Bv9ARM.ch07.html: up to 1.14
external/bsd/bind/dist/doc/arm/Bv9ARM.ch08.html: up to 1.14
external/bsd/bind/dist/doc/arm/Bv9ARM.ch09.html: up to 1.14
external/bsd/bind/dist/doc/arm/Bv9ARM.ch10.html: up to 1.1.1.23
external/bsd/bind/dist/doc/arm/Bv9ARM.ch11.html: up to 1.1.1.12
external/bsd/bind/dist/doc/arm/Bv9ARM.ch12.html: up to 1.1.1.12
external/bsd/bind/dist/doc/arm/Bv9ARM.ch13.html: up to 1.1.1.12
external/bsd/bind/dist/doc/arm/Bv9ARM.html: up to 1.14
external/bsd/bind/dist/doc/arm/Bv9ARM.pdf: up to 1.19
external/bsd/bind/dist/doc/arm/man.arpaname.html: up to 1.14
external/bsd/bind/dist/doc/arm/man.ddns-confgen.html: up to 1.14
external/bsd/bind/dist/doc/arm/man.delv.html: up to 1.14
external/bsd/bind/dist/doc/arm/man.dig.html: up to 1.14
external/bsd/bind/dist/doc/arm/man.dnssec-checkds.html: up to 1.14
external/bsd/bind/dist/doc/arm/man.dnssec-coverage.html: up to 1.14
external/bsd/bind/dist/doc/arm/man.dnssec-dsfromkey.html: up to 1.14
external/bsd/bind/dist/doc/arm/man.dnssec-importkey.html: up to 1.14
external/bsd/bind/dist/doc/arm/man.dnssec-keyfromlabel.html: up to 1.14
external/bsd/bind/dist/doc/arm/man.dnssec-keygen.html: up to 1.14
external/bsd/bind/dist/doc/arm/man.dnssec-revoke.html: up to 1.14
external/bsd/bind/dist/doc/arm/man.dnssec-settime.html: up to 1.14
external/bsd/bind/dist/doc/arm/man.dnssec-signzone.html: up to 1.14
external/bsd/bind/dist/doc/arm/man.dnssec-verify.html: up to 1.14
external/bsd/bind/dist/doc/arm/man.genrandom.html: up to 1.14
external/bsd/bind/dist/doc/arm/man.host.html: up to 1.14
external/bsd/bind/dist/doc/arm/man.isc-hmac-fixup.html: up to 1.14
external/bsd/bind/dist/doc/arm/man.lwresd.html: up to 1.1.1.6
external/bsd/bind/dist/doc/arm/man.named-checkconf.html: up to 1.14
external/bsd/bind/dist/doc/arm/man.named-checkzone.html: up to 1.14
external/bsd/bind/dist/doc/arm/man.named-journalprint.html: up to 1.14
external/bsd/bind/dist/doc/arm/man.named-rrchecker.html: up to 1.14
external/bsd/bind/dist/doc/arm/man.named.conf.html: up to 1.1.1.6
external/bsd/bind/dist/doc/arm/man.named.html: up to 1.14
external/bsd/bind/dist/doc/arm/man.nsec3hash.html: up to 1.14
external/bsd/bind/dist/doc/arm/man.nsupdate.html: up to 1.14
external/bsd/bind/dist/doc/arm/man.rndc-confgen.html: up to 1.14
external/bsd/bind/dist/doc/arm/man.rndc.conf.html: up to 1.14
external/bsd/bind/dist/doc/arm/man.rndc.html: up to 1.14
external/bsd/bind/dist/doc/arm/notes.html: up to 1.1.1.12
external/bsd/bind/dist/doc/arm/notes.pdf: up to 1.1.1.12
external/bsd/bind/dist/doc/arm/notes.xml: up to 1.1.1.12
external/bsd/bind/dist/lib/dns/api: up to 1.14
external/bsd/bind/dist/lib/dns/rdataset.c: up to 1.10
external/bsd/bind/dist/lib/dns/resolver.c: up to 1.30
external/bsd/bind/dist/lib/isc/include/isc/lex.h: up to 1.5
external/bsd/bind/dist/lib/isc/lex.c: up to 1.8
external/bsd/bind/dist/srcid: up to 1.20
external/bsd/bind/dist/version: up to 1.24
Update BIND to 9.10.4-P8.

(snj)

2017-04-21 05:22:24 UTC netbsd-7-1 commitmail json YAML

2017-04-21 05:21:07 UTC netbsd-7-1 commitmail json YAML

src/doc/3RDPARTY@1.1145.2.37.2.3 / diff / nxr@1.1145.2.37.2.3
src/external/bsd/bind/dist/CHANGES@1.12.2.10.2.1 / diff / nxr@1.12.2.10.2.1
src/external/bsd/bind/dist/COPYRIGHT@1.1.1.8.4.2.4.1 / diff / nxr@1.1.1.8.4.2.4.1
src/external/bsd/bind/dist/README@1.1.1.14.2.10.2.1 / diff / nxr@1.1.1.14.2.10.2.1
src/external/bsd/bind/dist/bin/named/query.c@1.16.2.6.2.1 / diff / nxr@1.16.2.6.2.1
src/external/bsd/bind/dist/bin/tests/system/dname/ans3/ans.pl@1.1.1.1.2.2.2.1 / diff / nxr@1.1.1.1.2.2.2.1
src/external/bsd/bind/dist/bin/tests/system/dname/ns1/root.db@1.1.1.2.12.1.2.1 / diff / nxr@1.1.1.2.12.1.2.1
src/external/bsd/bind/dist/bin/tests/system/dname/ns2/example.db@1.1.1.2.12.1.2.1 / diff / nxr@1.1.1.2.12.1.2.1
src/external/bsd/bind/dist/bin/tests/system/dname/tests.sh@1.1.1.3.10.2.2.1 / diff / nxr@1.1.1.3.10.2.2.1
src/external/bsd/bind/dist/bin/tests/system/rndc/tests.sh@1.1.1.5.4.3.2.1 / diff / nxr@1.1.1.5.4.3.2.1
src/external/bsd/bind/dist/bin/tests/system/rpz/tests.sh@1.1.1.9.4.3.2.1 / diff / nxr@1.1.1.9.4.3.2.1
src/external/bsd/bind/dist/bind.keys@1.1.1.5.22.1 / diff / nxr@1.1.1.5.22.1
src/external/bsd/bind/dist/bind.keys.h@1.1.1.1.14.1 / diff / nxr@1.1.1.1.14.1
src/external/bsd/bind/dist/configure@1.2.2.4.2.1 / diff / nxr@1.2.2.4.2.1
src/external/bsd/bind/dist/doc/arm/Bv9ARM.ch01.html@1.1.1.11.2.9.2.1 / diff / nxr@1.1.1.11.2.9.2.1
src/external/bsd/bind/dist/doc/arm/Bv9ARM.ch02.html@1.1.1.8.2.9.2.1 / diff / nxr@1.1.1.8.2.9.2.1
src/external/bsd/bind/dist/doc/arm/Bv9ARM.ch03.html@1.1.1.13.2.9.2.1 / diff / nxr@1.1.1.13.2.9.2.1
src/external/bsd/bind/dist/doc/arm/Bv9ARM.ch04.html@1.1.1.15.2.10.2.1 / diff / nxr@1.1.1.15.2.10.2.1
src/external/bsd/bind/dist/doc/arm/Bv9ARM.ch05.html@1.1.1.14.2.9.2.1 / diff / nxr@1.1.1.14.2.9.2.1
src/external/bsd/bind/dist/doc/arm/Bv9ARM.ch06.html@1.1.1.15.2.10.2.1 / diff / nxr@1.1.1.15.2.10.2.1
      :
(more 48 files)
Pull up following revision(s) (requested by spz in ticket #1404):
doc/3RDPARTY: 1.1430 via patch
external/bsd/bind/dist/CHANGES: up to 1.26
external/bsd/bind/dist/COPYRIGHT: up to 1.1.1.11
external/bsd/bind/dist/README: up to 1.14
external/bsd/bind/dist/bin/named/query.c: up to 1.24
external/bsd/bind/dist/bin/tests/system/dname/ans3/ans.pl: up to 1.1.1.2
external/bsd/bind/dist/bin/tests/system/dname/ns1/root.db: up to 1.1.1.4
external/bsd/bind/dist/bin/tests/system/dname/ns2/example.db: up to 1.1.1.4
external/bsd/bind/dist/bin/tests/system/dname/tests.sh: up to 1.1.1.6
external/bsd/bind/dist/bin/tests/system/rndc/tests.sh: up to 1.1.1.9
external/bsd/bind/dist/bin/tests/system/rpz/tests.sh: up to 1.1.1.13
external/bsd/bind/dist/bind.keys: up to 1.1.1.6
external/bsd/bind/dist/bind.keys.h: up to 1.1.1.4
external/bsd/bind/dist/configure: up to 1.7
external/bsd/bind/dist/doc/arm/Bv9ARM.ch01.html: up to 1.1.1.24
external/bsd/bind/dist/doc/arm/Bv9ARM.ch02.html: up to 1.1.1.21
external/bsd/bind/dist/doc/arm/Bv9ARM.ch03.html: up to 1.1.1.26
external/bsd/bind/dist/doc/arm/Bv9ARM.ch04.html: up to 1.14
external/bsd/bind/dist/doc/arm/Bv9ARM.ch05.html: up to 1.1.1.27
external/bsd/bind/dist/doc/arm/Bv9ARM.ch06.html: up to 1.14
external/bsd/bind/dist/doc/arm/Bv9ARM.ch07.html: up to 1.14
external/bsd/bind/dist/doc/arm/Bv9ARM.ch08.html: up to 1.14
external/bsd/bind/dist/doc/arm/Bv9ARM.ch09.html: up to 1.14
external/bsd/bind/dist/doc/arm/Bv9ARM.ch10.html: up to 1.1.1.23
external/bsd/bind/dist/doc/arm/Bv9ARM.ch11.html: up to 1.1.1.12
external/bsd/bind/dist/doc/arm/Bv9ARM.ch12.html: up to 1.1.1.12
external/bsd/bind/dist/doc/arm/Bv9ARM.ch13.html: up to 1.1.1.12
external/bsd/bind/dist/doc/arm/Bv9ARM.html: up to 1.14
external/bsd/bind/dist/doc/arm/Bv9ARM.pdf: up to 1.19
external/bsd/bind/dist/doc/arm/man.arpaname.html: up to 1.14
external/bsd/bind/dist/doc/arm/man.ddns-confgen.html: up to 1.14
external/bsd/bind/dist/doc/arm/man.delv.html: up to 1.14
external/bsd/bind/dist/doc/arm/man.dig.html: up to 1.14
external/bsd/bind/dist/doc/arm/man.dnssec-checkds.html: up to 1.14
external/bsd/bind/dist/doc/arm/man.dnssec-coverage.html: up to 1.14
external/bsd/bind/dist/doc/arm/man.dnssec-dsfromkey.html: up to 1.14
external/bsd/bind/dist/doc/arm/man.dnssec-importkey.html: up to 1.14
external/bsd/bind/dist/doc/arm/man.dnssec-keyfromlabel.html: up to 1.14
external/bsd/bind/dist/doc/arm/man.dnssec-keygen.html: up to 1.14
external/bsd/bind/dist/doc/arm/man.dnssec-revoke.html: up to 1.14
external/bsd/bind/dist/doc/arm/man.dnssec-settime.html: up to 1.14
external/bsd/bind/dist/doc/arm/man.dnssec-signzone.html: up to 1.14
external/bsd/bind/dist/doc/arm/man.dnssec-verify.html: up to 1.14
external/bsd/bind/dist/doc/arm/man.genrandom.html: up to 1.14
external/bsd/bind/dist/doc/arm/man.host.html: up to 1.14
external/bsd/bind/dist/doc/arm/man.isc-hmac-fixup.html: up to 1.14
external/bsd/bind/dist/doc/arm/man.lwresd.html: up to 1.1.1.6
external/bsd/bind/dist/doc/arm/man.named-checkconf.html: up to 1.14
external/bsd/bind/dist/doc/arm/man.named-checkzone.html: up to 1.14
external/bsd/bind/dist/doc/arm/man.named-journalprint.html: up to 1.14
external/bsd/bind/dist/doc/arm/man.named-rrchecker.html: up to 1.14
external/bsd/bind/dist/doc/arm/man.named.conf.html: up to 1.1.1.6
external/bsd/bind/dist/doc/arm/man.named.html: up to 1.14
external/bsd/bind/dist/doc/arm/man.nsec3hash.html: up to 1.14
external/bsd/bind/dist/doc/arm/man.nsupdate.html: up to 1.14
external/bsd/bind/dist/doc/arm/man.rndc-confgen.html: up to 1.14
external/bsd/bind/dist/doc/arm/man.rndc.conf.html: up to 1.14
external/bsd/bind/dist/doc/arm/man.rndc.html: up to 1.14
external/bsd/bind/dist/doc/arm/notes.html: up to 1.1.1.12
external/bsd/bind/dist/doc/arm/notes.pdf: up to 1.1.1.12
external/bsd/bind/dist/doc/arm/notes.xml: up to 1.1.1.12
external/bsd/bind/dist/lib/dns/api: up to 1.14
external/bsd/bind/dist/lib/dns/rdataset.c: up to 1.10
external/bsd/bind/dist/lib/dns/resolver.c: up to 1.30
external/bsd/bind/dist/lib/isc/include/isc/lex.h: up to 1.5
external/bsd/bind/dist/lib/isc/lex.c: up to 1.8
external/bsd/bind/dist/srcid: up to 1.20
external/bsd/bind/dist/version: up to 1.24
Update BIND to 9.10.4-P8.

(snj)

2017-04-21 05:18:07 UTC netbsd-7-0 commitmail json YAML

2017-04-21 05:16:42 UTC netbsd-7-0 commitmail json YAML

src/doc/3RDPARTY@1.1145.2.18.2.19 / diff / nxr@1.1145.2.18.2.19
src/external/bsd/bind/dist/CHANGES@1.12.2.5.2.6 / diff / nxr@1.12.2.5.2.6
src/external/bsd/bind/dist/COPYRIGHT@1.1.1.8.4.1.2.2 / diff / nxr@1.1.1.8.4.1.2.2
src/external/bsd/bind/dist/README@1.1.1.14.2.5.2.6 / diff / nxr@1.1.1.14.2.5.2.6
src/external/bsd/bind/dist/bin/named/query.c@1.16.2.3.2.4 / diff / nxr@1.16.2.3.2.4
src/external/bsd/bind/dist/bin/tests/system/dname/ans3/ans.pl@1.1.1.1.4.3 / diff / nxr@1.1.1.1.4.3
src/external/bsd/bind/dist/bin/tests/system/dname/ns1/root.db@1.1.1.2.14.2 / diff / nxr@1.1.1.2.14.2
src/external/bsd/bind/dist/bin/tests/system/dname/ns2/example.db@1.1.1.2.14.2 / diff / nxr@1.1.1.2.14.2
src/external/bsd/bind/dist/bin/tests/system/dname/tests.sh@1.1.1.3.12.3 / diff / nxr@1.1.1.3.12.3
src/external/bsd/bind/dist/bin/tests/system/rndc/tests.sh@1.1.1.5.4.1.2.3 / diff / nxr@1.1.1.5.4.1.2.3
src/external/bsd/bind/dist/bin/tests/system/rpz/tests.sh@1.1.1.9.4.2.2.2 / diff / nxr@1.1.1.9.4.2.2.2
src/external/bsd/bind/dist/bind.keys@1.1.1.5.14.1 / diff / nxr@1.1.1.5.14.1
src/external/bsd/bind/dist/bind.keys.h@1.1.1.1.10.1 / diff / nxr@1.1.1.1.10.1
src/external/bsd/bind/dist/configure@1.2.2.2.2.3 / diff / nxr@1.2.2.2.2.3
src/external/bsd/bind/dist/doc/arm/Bv9ARM.ch01.html@1.1.1.11.2.4.2.6 / diff / nxr@1.1.1.11.2.4.2.6
src/external/bsd/bind/dist/doc/arm/Bv9ARM.ch02.html@1.1.1.8.2.4.2.6 / diff / nxr@1.1.1.8.2.4.2.6
src/external/bsd/bind/dist/doc/arm/Bv9ARM.ch03.html@1.1.1.13.2.4.2.6 / diff / nxr@1.1.1.13.2.4.2.6
src/external/bsd/bind/dist/doc/arm/Bv9ARM.ch04.html@1.1.1.15.2.5.2.6 / diff / nxr@1.1.1.15.2.5.2.6
src/external/bsd/bind/dist/doc/arm/Bv9ARM.ch05.html@1.1.1.14.2.4.2.6 / diff / nxr@1.1.1.14.2.4.2.6
src/external/bsd/bind/dist/doc/arm/Bv9ARM.ch06.html@1.1.1.15.2.5.2.6 / diff / nxr@1.1.1.15.2.5.2.6
      :
(more 48 files)
Pull up following revision(s) (requested by spz in ticket #1404):
doc/3RDPARTY: 1.1430 via patch
external/bsd/bind/dist/CHANGES: up to 1.26
external/bsd/bind/dist/COPYRIGHT: up to 1.1.1.11
external/bsd/bind/dist/README: up to 1.14
external/bsd/bind/dist/bin/named/query.c: up to 1.24
external/bsd/bind/dist/bin/tests/system/dname/ans3/ans.pl: up to 1.1.1.2
external/bsd/bind/dist/bin/tests/system/dname/ns1/root.db: up to 1.1.1.4
external/bsd/bind/dist/bin/tests/system/dname/ns2/example.db: up to 1.1.1.4
external/bsd/bind/dist/bin/tests/system/dname/tests.sh: up to 1.1.1.6
external/bsd/bind/dist/bin/tests/system/rndc/tests.sh: up to 1.1.1.9
external/bsd/bind/dist/bin/tests/system/rpz/tests.sh: up to 1.1.1.13
external/bsd/bind/dist/bind.keys: up to 1.1.1.6
external/bsd/bind/dist/bind.keys.h: up to 1.1.1.4
external/bsd/bind/dist/configure: up to 1.7
external/bsd/bind/dist/doc/arm/Bv9ARM.ch01.html: up to 1.1.1.24
external/bsd/bind/dist/doc/arm/Bv9ARM.ch02.html: up to 1.1.1.21
external/bsd/bind/dist/doc/arm/Bv9ARM.ch03.html: up to 1.1.1.26
external/bsd/bind/dist/doc/arm/Bv9ARM.ch04.html: up to 1.14
external/bsd/bind/dist/doc/arm/Bv9ARM.ch05.html: up to 1.1.1.27
external/bsd/bind/dist/doc/arm/Bv9ARM.ch06.html: up to 1.14
external/bsd/bind/dist/doc/arm/Bv9ARM.ch07.html: up to 1.14
external/bsd/bind/dist/doc/arm/Bv9ARM.ch08.html: up to 1.14
external/bsd/bind/dist/doc/arm/Bv9ARM.ch09.html: up to 1.14
external/bsd/bind/dist/doc/arm/Bv9ARM.ch10.html: up to 1.1.1.23
external/bsd/bind/dist/doc/arm/Bv9ARM.ch11.html: up to 1.1.1.12
external/bsd/bind/dist/doc/arm/Bv9ARM.ch12.html: up to 1.1.1.12
external/bsd/bind/dist/doc/arm/Bv9ARM.ch13.html: up to 1.1.1.12
external/bsd/bind/dist/doc/arm/Bv9ARM.html: up to 1.14
external/bsd/bind/dist/doc/arm/Bv9ARM.pdf: up to 1.19
external/bsd/bind/dist/doc/arm/man.arpaname.html: up to 1.14
external/bsd/bind/dist/doc/arm/man.ddns-confgen.html: up to 1.14
external/bsd/bind/dist/doc/arm/man.delv.html: up to 1.14
external/bsd/bind/dist/doc/arm/man.dig.html: up to 1.14
external/bsd/bind/dist/doc/arm/man.dnssec-checkds.html: up to 1.14
external/bsd/bind/dist/doc/arm/man.dnssec-coverage.html: up to 1.14
external/bsd/bind/dist/doc/arm/man.dnssec-dsfromkey.html: up to 1.14
external/bsd/bind/dist/doc/arm/man.dnssec-importkey.html: up to 1.14
external/bsd/bind/dist/doc/arm/man.dnssec-keyfromlabel.html: up to 1.14
external/bsd/bind/dist/doc/arm/man.dnssec-keygen.html: up to 1.14
external/bsd/bind/dist/doc/arm/man.dnssec-revoke.html: up to 1.14
external/bsd/bind/dist/doc/arm/man.dnssec-settime.html: up to 1.14
external/bsd/bind/dist/doc/arm/man.dnssec-signzone.html: up to 1.14
external/bsd/bind/dist/doc/arm/man.dnssec-verify.html: up to 1.14
external/bsd/bind/dist/doc/arm/man.genrandom.html: up to 1.14
external/bsd/bind/dist/doc/arm/man.host.html: up to 1.14
external/bsd/bind/dist/doc/arm/man.isc-hmac-fixup.html: up to 1.14
external/bsd/bind/dist/doc/arm/man.lwresd.html: up to 1.1.1.6
external/bsd/bind/dist/doc/arm/man.named-checkconf.html: up to 1.14
external/bsd/bind/dist/doc/arm/man.named-checkzone.html: up to 1.14
external/bsd/bind/dist/doc/arm/man.named-journalprint.html: up to 1.14
external/bsd/bind/dist/doc/arm/man.named-rrchecker.html: up to 1.14
external/bsd/bind/dist/doc/arm/man.named.conf.html: up to 1.1.1.6
external/bsd/bind/dist/doc/arm/man.named.html: up to 1.14
external/bsd/bind/dist/doc/arm/man.nsec3hash.html: up to 1.14
external/bsd/bind/dist/doc/arm/man.nsupdate.html: up to 1.14
external/bsd/bind/dist/doc/arm/man.rndc-confgen.html: up to 1.14
external/bsd/bind/dist/doc/arm/man.rndc.conf.html: up to 1.14
external/bsd/bind/dist/doc/arm/man.rndc.html: up to 1.14
external/bsd/bind/dist/doc/arm/notes.html: up to 1.1.1.12
external/bsd/bind/dist/doc/arm/notes.pdf: up to 1.1.1.12
external/bsd/bind/dist/doc/arm/notes.xml: up to 1.1.1.12
external/bsd/bind/dist/lib/dns/api: up to 1.14
external/bsd/bind/dist/lib/dns/rdataset.c: up to 1.10
external/bsd/bind/dist/lib/dns/resolver.c: up to 1.30
external/bsd/bind/dist/lib/isc/include/isc/lex.h: up to 1.5
external/bsd/bind/dist/lib/isc/lex.c: up to 1.8
external/bsd/bind/dist/srcid: up to 1.20
external/bsd/bind/dist/version: up to 1.24
Update BIND to 9.10.4-P8.

(snj)

2017-04-20 22:57:30 UTC MAIN commitmail json YAML

- fix number in copyright
- comment out "simplified link" for now.

(christos)

2017-04-20 21:50:50 UTC MAIN commitmail json YAML

Replace ours with the FreeBSD version; it is more versatile and handles
errors better (does not remove files if it is going to fail when -f).

(christos)

2017-04-20 20:34:25 UTC MAIN commitmail json YAML

Tell GCC to shut up about strftime format strings.

(joerg)

2017-04-20 20:23:49 UTC jdolecek-ncq commitmail json YAML

remove ahci timeouts, fixed by Jonathan

(jdolecek)

2017-04-20 20:14:42 UTC jdolecek-ncq commitmail json YAML

use a fake ata_channel struct in umass_isdata.c so that the wd(4) calls
to ata_{get,free}_xfer() can work, adjust to ata interface changes

compile tested only

(jdolecek)

2017-04-20 19:24:25 UTC jdolecek-ncq commitmail json YAML

Don't bail out of handling interrupts at the first inactive slot.

Appears to fix the frequent timeouts issue.

(jakllsch)

2017-04-20 19:09:29 UTC MAIN commitmail json YAML

2017-04-20 18:53:12 UTC MAIN commitmail json YAML

Merge .eh_frame_hdr and .eh_frame into .text

(uwe)

2017-04-20 18:39:29 UTC MAIN commitmail json YAML

Group CLEANFILES assignments.

(uwe)

2017-04-20 17:30:52 UTC bouyer-socketcan commitmail json YAML

Print some informations for error interrupts.
Fix some registers values.
Now we can transmit frames. Receive still doesn't work.

(bouyer)

2017-04-20 17:29:10 UTC bouyer-socketcan commitmail json YAML

If a packet was sent using sendto, the socket pointed to by the tag may
be unbound. Check for this in canintr().
XXX possibly the socket can completely dissapear before we get here.
This needs to be revisited.

(bouyer)

2017-04-20 14:39:36 UTC MAIN commitmail json YAML

Update libarchive and pkg_install.

(joerg)

2017-04-20 13:22:59 UTC MAIN commitmail json YAML

2017-04-20 13:18:47 UTC MAIN commitmail json YAML

2017-04-20 13:18:23 UTC MAIN commitmail json YAML

2017-04-20 13:11:35 UTC MAIN commitmail json YAML

Use libarchive 3.x interface and not obsolete 2.x versions.

(joerg)

2017-04-20 13:11:04 UTC MAIN commitmail json YAML

2017-04-20 13:06:29 UTC MAIN commitmail json YAML

src/external/bsd/libarchive/dist/README deleted
src/external/bsd/libarchive/dist/cpio/test/CMakeLists.txt deleted
src/external/bsd/libarchive/dist/cpio/test/list.h deleted
src/external/bsd/libarchive/dist/cpio/test/main.c deleted
src/external/bsd/libarchive/dist/cpio/test/test_pathmatch.c deleted
src/external/bsd/libarchive/dist/libarchive/archive_hash.h deleted
src/external/bsd/libarchive/dist/libarchive/archive_read_disk.c deleted
src/external/bsd/libarchive/dist/libarchive/archive_read_support_compression_all.c deleted
src/external/bsd/libarchive/dist/libarchive/archive_read_support_compression_bzip2.c deleted
src/external/bsd/libarchive/dist/libarchive/archive_read_support_compression_compress.c deleted
src/external/bsd/libarchive/dist/libarchive/archive_read_support_compression_gzip.c deleted
src/external/bsd/libarchive/dist/libarchive/archive_read_support_compression_none.c deleted
src/external/bsd/libarchive/dist/libarchive/archive_read_support_compression_program.c deleted
src/external/bsd/libarchive/dist/libarchive/archive_read_support_compression_rpm.c deleted
src/external/bsd/libarchive/dist/libarchive/archive_read_support_compression_uu.c deleted
src/external/bsd/libarchive/dist/libarchive/archive_read_support_compression_xz.c deleted
src/external/bsd/libarchive/dist/libarchive/archive_write_disk.c deleted
src/external/bsd/libarchive/dist/libarchive/archive_write_set_compression_bzip2.c deleted
src/external/bsd/libarchive/dist/libarchive/archive_write_set_compression_compress.c deleted
src/external/bsd/libarchive/dist/libarchive/archive_write_set_compression_gzip.c deleted
      :
(more 30 files)
GC old files.

(joerg)

2017-04-20 13:01:40 UTC MAIN commitmail json YAML

src/external/bsd/libarchive/dist/libarchive/archive.h@1.3 / diff / nxr@1.3
src/external/bsd/libarchive/dist/libarchive/archive_check_magic.c@1.3 / diff / nxr@1.3
src/external/bsd/libarchive/dist/libarchive/archive_entry.3@1.5 / diff / nxr@1.5
src/external/bsd/libarchive/dist/libarchive/archive_pack_dev.c@1.2 / diff / nxr@1.2
src/external/bsd/libarchive/dist/libarchive/archive_pack_dev.h@1.2 / diff / nxr@1.2
src/external/bsd/libarchive/dist/libarchive/archive_read.3@1.6 / diff / nxr@1.6
src/external/bsd/libarchive/dist/libarchive/archive_read_disk.3@1.5 / diff / nxr@1.5
src/external/bsd/libarchive/dist/libarchive/archive_read_disk_entry_from_file.c@1.5 / diff / nxr@1.5
src/external/bsd/libarchive/dist/libarchive/archive_read_support_format_iso9660.c@1.3 / diff / nxr@1.3
src/external/bsd/libarchive/dist/libarchive/archive_util.3@1.3 / diff / nxr@1.3
src/external/bsd/libarchive/dist/libarchive/archive_write.3@1.6 / diff / nxr@1.6
src/external/bsd/libarchive/dist/libarchive/archive_write_disk.3@1.5 / diff / nxr@1.5
src/external/bsd/libarchive/dist/libarchive/archive_write_set_format_ar.c@1.3 / diff / nxr@1.3
src/external/bsd/libarchive/dist/libarchive/archive_write_set_format_shar.c@1.3 / diff / nxr@1.3
src/external/bsd/libarchive/dist/libarchive/archive_write_set_format_ustar.c@1.3 / diff / nxr@1.3
src/external/bsd/libarchive/dist/libarchive/libarchive-formats.5@1.3 / diff / nxr@1.3
src/external/bsd/libarchive/dist/libarchive/libarchive.3@1.3 / diff / nxr@1.3
src/external/bsd/libarchive/dist/libarchive/libarchive_internals.3@1.3 / diff / nxr@1.3
src/external/bsd/libarchive/dist/libarchive/tar.5@1.3 / diff / nxr@1.3
src/external/bsd/libarchive/dist/libarchive_fe/err.c@1.3 / diff / nxr@1.3
src/external/bsd/libarchive/dist/libarchive_fe/err.h@1.3 / diff / nxr@1.3

Merge libarchive-3-3-2pre.

(joerg)

2017-04-20 13:00:52 UTC bouyer-socketcan commitmail json YAML

Handle interface errors.
Use a watchdog for transmit.

(bouyer)

2017-04-20 12:59:54 UTC bouyer-socketcan commitmail json YAML

Implement listenonly and loopback flags.
Fix do_canflag()

(bouyer)

2017-04-20 12:59:11 UTC bouyer-socketcan commitmail json YAML

Fix LINKMODE
Refuse to send packets if LISTENONLY is set
Don't forget to unbind in error case.

(bouyer)

2017-04-20 09:56:27 UTC MAIN commitmail json YAML

Add ixg(4). Fixes PR#52180 from Harry Waddell.

XXX pullup to netbsd-7

(msaitoh)

2017-04-20 09:48:55 UTC MAIN commitmail json YAML

Use Fl, Xr. New sentence, new line. Bump date for previous.

(wiz)

2017-04-20 09:47:53 UTC MAIN commitmail json YAML

regen using regen target in doc.

(wiz)

2017-04-20 09:47:41 UTC MAIN commitmail json YAML

Use Fl and Xr. New sentence, new line.

(wiz)

2017-04-20 09:29:11 UTC MAIN commitmail json YAML

Introduce MKSTRIPSYM build option

If it's yes, all local symbols of shared libraries are stripped
(default). If it's no, only temporary local symbols are stripped;
for example, symbols of static functions are kept. Keeping such
symbols is useful on using DTrace for userland libraries and
getting a backtrace from a rump server loading modules (shared
libraries).

Proposed and discussed on tech-kern and tech-toolchain

(ozaki-r)

2017-04-20 09:19:19 UTC MAIN commitmail json YAML

2017-04-20 09:18:05 UTC MAIN commitmail json YAML

5776[0156], 5778[02568] and 5779[015] are not Fast Ethernet but
Gigabit Ethernet.

(msaitoh)

2017-04-20 09:11:58 UTC MAIN commitmail json YAML

missing if_extflags of l2tp(4). l2tp(4) is already MP-safe.

(knakahara)

2017-04-20 09:03:05 UTC MAIN commitmail json YAML

Fix device timeout problem when MSI is used on BCM57762, BCM57765 and
BCM57785. Check correctly for BGEF_TAGGED_STATUS. These devices' ASCI core is
BCM5776[56]. Other BSD's BGE_IS_5717_PLUS() include BCM5776[56] but ours
doesn't (because Linux tg3 does so).

Tested with snj's MacBook (BCM57765 (BCM57765 B0 ASIC)) and my Acer Aspire
One 756 (BCM57785(BCM57765 B0 ASIC)). Also Thunderbolt Ethernet
(BCM57762 (BCM57766 A0 ASIC)) should work.

(msaitoh)

2017-04-20 08:46:08 UTC MAIN commitmail json YAML

2017-04-20 08:45:25 UTC MAIN commitmail json YAML

Add Downstream Port Containment (DPC) ECN and Enhanced DPC(eDPC) ECN.

(msaitoh)

2017-04-20 08:45:09 UTC MAIN commitmail json YAML

Simplify logic of udp4_sendup and udp6_sendup

They are always passed a socket with the same protocol faimiliy
as its own: AF_INET for udp4_sendup and AF_INET6 for udp6_sendup.

(ozaki-r)

2017-04-20 08:34:23 UTC MAIN commitmail json YAML

Whitespace, fit in 80 and extra braces for readability.
No functional change.

(roy)

2017-04-20 07:07:28 UTC netbsd-7 commitmail json YAML

2017-04-20 07:04:48 UTC netbsd-7 commitmail json YAML

Pull up following revision(s) (requested by skrll in ticket #1396):
sys/arch/hppa/hppa/machdep.c: revision 1.7
PR/52129: NetBSD/hppa 7.1 fails to boot on 712/60
Add 712/* models to cpu_model_cpuid

(snj)

2017-04-20 06:47:49 UTC netbsd-7 commitmail json YAML

src/doc/3RDPARTY@1.1145.2.39 / diff / nxr@1.1145.2.39
src/external/bsd/ntp/bin/ntpd/ntp.keys.5@1.1.6.1 / diff / nxr@1.1.6.1
src/external/bsd/ntp/dist/COPYRIGHT@1.1.1.3.4.3 / diff / nxr@1.1.1.3.4.3
src/external/bsd/ntp/dist/ChangeLog@1.1.1.3.4.7 / diff / nxr@1.1.1.3.4.7
src/external/bsd/ntp/dist/CommitLog@1.1.1.3.4.7 / diff / nxr@1.1.1.3.4.7
src/external/bsd/ntp/dist/Makefile.in@1.1.1.3.4.5 / diff / nxr@1.1.1.3.4.5
src/external/bsd/ntp/dist/NEWS@1.1.1.3.4.7 / diff / nxr@1.1.1.3.4.7
src/external/bsd/ntp/dist/aclocal.m4@1.1.1.3.4.4 / diff / nxr@1.1.1.3.4.4
src/external/bsd/ntp/dist/adjtimed/Makefile.am@1.1.1.3.4.1 / diff / nxr@1.1.1.3.4.1
src/external/bsd/ntp/dist/adjtimed/Makefile.in@1.1.1.3.4.4 / diff / nxr@1.1.1.3.4.4
src/external/bsd/ntp/dist/clockstuff/Makefile.am@1.1.1.2.4.1 / diff / nxr@1.1.1.2.4.1
src/external/bsd/ntp/dist/clockstuff/Makefile.in@1.1.1.3.4.4 / diff / nxr@1.1.1.3.4.4
src/external/bsd/ntp/dist/config.h.in@1.1.1.3.4.5 / diff / nxr@1.1.1.3.4.5
src/external/bsd/ntp/dist/configure@1.1.1.3.4.7 / diff / nxr@1.1.1.3.4.7
src/external/bsd/ntp/dist/configure.ac@1.1.1.3.4.6 / diff / nxr@1.1.1.3.4.6
src/external/bsd/ntp/dist/html/copyright.html@1.1.1.3.4.3 / diff / nxr@1.1.1.3.4.3
src/external/bsd/ntp/dist/include/Makefile.in@1.1.1.3.4.6 / diff / nxr@1.1.1.3.4.6
src/external/bsd/ntp/dist/include/isc/Makefile.in@1.1.1.3.4.4 / diff / nxr@1.1.1.3.4.4
src/external/bsd/ntp/dist/include/libssl_compat.h@1.1.1.1.10.3 / diff / nxr@1.1.1.1.10.3
src/external/bsd/ntp/dist/include/ntp_crypto.h@1.1.1.2.4.2 / diff / nxr@1.1.1.2.4.2
      :
(more 256 files)
Pull up following revision(s) (requested by spz in ticket #1405):
doc/3RDPARTY: 1.1431
external/bsd/ntp/bin/ntpd/ntp.keys.5: up to 1.2
external/bsd/ntp/dist/COPYRIGHT: up to 1.1.1.8
external/bsd/ntp/dist/ChangeLog: up to 1.1.1.12
external/bsd/ntp/dist/CommitLog: up to 1.1.1.12
external/bsd/ntp/dist/Makefile.in: up to 1.1.1.10
external/bsd/ntp/dist/NEWS: up to 1.1.1.12
external/bsd/ntp/dist/aclocal.m4: up to 1.1.1.10
external/bsd/ntp/dist/adjtimed/Makefile.am: up to 1.1.1.4
external/bsd/ntp/dist/adjtimed/Makefile.in: up to 1.1.1.10
external/bsd/ntp/dist/clockstuff/Makefile.am: up to 1.1.1.3
external/bsd/ntp/dist/clockstuff/Makefile.in: up to 1.1.1.10
external/bsd/ntp/dist/config.h.in: up to 1.1.1.9
external/bsd/ntp/dist/configure: up to 1.1.1.12
external/bsd/ntp/dist/configure.ac: up to 1.1.1.10
external/bsd/ntp/dist/html/copyright.html: up to 1.1.1.6
external/bsd/ntp/dist/include/Makefile.in: up to 1.1.1.11
external/bsd/ntp/dist/include/isc/Makefile.in: up to 1.1.1.10
external/bsd/ntp/dist/include/libssl_compat.h: up to 1.1.1.2
external/bsd/ntp/dist/include/ntp_crypto.h: up to 1.5
external/bsd/ntp/dist/include/ntp_fp.h: up to 1.9
external/bsd/ntp/dist/include/ntp_md5.h: up to 1.7
external/bsd/ntp/dist/include/ntp_stdlib.h: up to 1.14
external/bsd/ntp/dist/include/ntpd.h: up to 1.10
external/bsd/ntp/dist/include/ssl_applink.c: up to 1.5
external/bsd/ntp/dist/kernel/Makefile.in: up to 1.1.1.10
external/bsd/ntp/dist/kernel/sys/Makefile.in: up to 1.1.1.10
external/bsd/ntp/dist/lib/isc/inet_pton.c: up to 1.8
external/bsd/ntp/dist/libntp/Makefile.am: up to 1.1.1.8
external/bsd/ntp/dist/libntp/Makefile.in: up to 1.1.1.11
external/bsd/ntp/dist/libntp/a_md5encrypt.c: up to 1.8
external/bsd/ntp/dist/libntp/audio.c: up to 1.12
external/bsd/ntp/dist/libntp/authkeys.c: up to 1.11
external/bsd/ntp/dist/libntp/emalloc.c: up to 1.8
external/bsd/ntp/dist/libntp/libssl_compat.c: up to 1.1.1.2
external/bsd/ntp/dist/libntp/ntp_intres.c: up to 1.11
external/bsd/ntp/dist/libntp/recvbuff.c: up to 1.7
external/bsd/ntp/dist/libntp/ssl_init.c: up to 1.10
external/bsd/ntp/dist/libntp/statestr.c: up to 1.6
external/bsd/ntp/dist/libntp/work_fork.c: up to 1.11
external/bsd/ntp/dist/libparse/Makefile.am: up to 1.1.1.5
external/bsd/ntp/dist/libparse/Makefile.in: up to 1.1.1.10
external/bsd/ntp/dist/libparse/clk_trimtsip.c: up to 1.6
external/bsd/ntp/dist/libparse/gpstolfp.c: up to 1.6
external/bsd/ntp/dist/ntpd/Makefile.am: up to 1.1.1.8
external/bsd/ntp/dist/ntpd/Makefile.in: up to 1.1.1.10
external/bsd/ntp/dist/ntpd/invoke-ntp.conf.texi: up to 1.1.1.10
external/bsd/ntp/dist/ntpd/invoke-ntp.keys.texi: up to 1.1.1.10
external/bsd/ntp/dist/ntpd/invoke-ntpd.texi: up to 1.1.1.10
external/bsd/ntp/dist/ntpd/ntp.conf.5man: up to 1.1.1.10
external/bsd/ntp/dist/ntpd/ntp.conf.5mdoc: up to 1.1.1.10
external/bsd/ntp/dist/ntpd/ntp.conf.html: up to 1.1.1.10
external/bsd/ntp/dist/ntpd/ntp.conf.man.in: up to 1.1.1.10
external/bsd/ntp/dist/ntpd/ntp.conf.mdoc.in: up to 1.1.1.10
external/bsd/ntp/dist/ntpd/ntp.keys.5man: up to 1.1.1.10
external/bsd/ntp/dist/ntpd/ntp.keys.5mdoc: up to 1.1.1.10
external/bsd/ntp/dist/ntpd/ntp.keys.html: up to 1.1.1.10
external/bsd/ntp/dist/ntpd/ntp.keys.man.in: up to 1.1.1.10
external/bsd/ntp/dist/ntpd/ntp.keys.mdoc.in: up to 1.1.1.10
external/bsd/ntp/dist/ntpd/ntp_config.c: up to 1.17
external/bsd/ntp/dist/ntpd/ntp_control.c: up to 1.19
external/bsd/ntp/dist/ntpd/ntp_crypto.c: up to 1.14
external/bsd/ntp/dist/ntpd/ntp_io.c: up to 1.25
external/bsd/ntp/dist/ntpd/ntp_loopfilter.c: up to 1.11
external/bsd/ntp/dist/ntpd/ntp_parser.y: up to 1.16
external/bsd/ntp/dist/ntpd/ntp_peer.c: up to 1.11
external/bsd/ntp/dist/ntpd/ntp_proto.c: up to 1.15
external/bsd/ntp/dist/ntpd/ntp_restrict.c: up to 1.9
external/bsd/ntp/dist/ntpd/ntp_scanner.c: up to 1.12
external/bsd/ntp/dist/ntpd/ntpd-opts.c: up to 1.10
external/bsd/ntp/dist/ntpd/ntpd-opts.h: up to 1.13
external/bsd/ntp/dist/ntpd/ntpd.1ntpdman: up to 1.1.1.10
external/bsd/ntp/dist/ntpd/ntpd.1ntpdmdoc: up to 1.1.1.10
external/bsd/ntp/dist/ntpd/ntpd.c: up to 1.14
external/bsd/ntp/dist/ntpd/ntpd.html: up to 1.1.1.10
external/bsd/ntp/dist/ntpd/ntpd.man.in: up to 1.1.1.10
external/bsd/ntp/dist/ntpd/ntpd.mdoc.in: up to 1.1.1.10
external/bsd/ntp/dist/ntpd/refclock_datum.c: up to 1.7
external/bsd/ntp/dist/ntpd/refclock_gpsdjson.c: up to 1.11
external/bsd/ntp/dist/ntpd/refclock_jjy.c: up to 1.12
external/bsd/ntp/dist/ntpd/refclock_mx4200.c: up to 1.5
external/bsd/ntp/dist/ntpd/refclock_nmea.c: up to 1.12
external/bsd/ntp/dist/ntpd/refclock_oncore.c: up to 1.14
external/bsd/ntp/dist/ntpd/refclock_parse.c: up to 1.20
external/bsd/ntp/dist/ntpdate/Makefile.am: up to 1.1.1.4
external/bsd/ntp/dist/ntpdate/Makefile.in: up to 1.1.1.10
external/bsd/ntp/dist/ntpdate/ntpdate.c: up to 1.11
external/bsd/ntp/dist/ntpdc/Makefile.am: up to 1.1.1.5
external/bsd/ntp/dist/ntpdc/Makefile.in: up to 1.1.1.10
external/bsd/ntp/dist/ntpdc/invoke-ntpdc.texi: up to 1.1.1.10
external/bsd/ntp/dist/ntpdc/ntpdc-opts.c: up to 1.10
external/bsd/ntp/dist/ntpdc/ntpdc-opts.h: up to 1.10
external/bsd/ntp/dist/ntpdc/ntpdc.1ntpdcman: up to 1.1.1.10
external/bsd/ntp/dist/ntpdc/ntpdc.1ntpdcmdoc: up to 1.1.1.10
external/bsd/ntp/dist/ntpdc/ntpdc.c: up to 1.15
external/bsd/ntp/dist/ntpdc/ntpdc.html: up to 1.1.1.10
external/bsd/ntp/dist/ntpdc/ntpdc.man.in: up to 1.1.1.10
external/bsd/ntp/dist/ntpdc/ntpdc.mdoc.in: up to 1.1.1.10
external/bsd/ntp/dist/ntpdc/ntpdc_ops.c: up to 1.9
external/bsd/ntp/dist/ntpq/Makefile.am: up to 1.1.1.5
external/bsd/ntp/dist/ntpq/Makefile.in: up to 1.1.1.10
external/bsd/ntp/dist/ntpq/invoke-ntpq.texi: up to 1.1.1.10
external/bsd/ntp/dist/ntpq/libntpq.c: up to 1.5
external/bsd/ntp/dist/ntpq/ntpq-opts.c: up to 1.10
external/bsd/ntp/dist/ntpq/ntpq-opts.h: up to 1.10
external/bsd/ntp/dist/ntpq/ntpq-subs.c: up to 1.15
external/bsd/ntp/dist/ntpq/ntpq.1ntpqman: up to 1.1.1.10
external/bsd/ntp/dist/ntpq/ntpq.1ntpqmdoc: up to 1.1.1.10
external/bsd/ntp/dist/ntpq/ntpq.c: up to 1.18
external/bsd/ntp/dist/ntpq/ntpq.html: up to 1.1.1.10
external/bsd/ntp/dist/ntpq/ntpq.man.in: up to 1.1.1.10
external/bsd/ntp/dist/ntpq/ntpq.mdoc.in: up to 1.1.1.10
external/bsd/ntp/dist/ntpsnmpd/Makefile.am: up to 1.1.1.5
external/bsd/ntp/dist/ntpsnmpd/Makefile.in: up to 1.1.1.10
external/bsd/ntp/dist/ntpsnmpd/invoke-ntpsnmpd.texi: up to 1.1.1.10
external/bsd/ntp/dist/ntpsnmpd/ntpsnmpd-opts.c: up to 1.10
external/bsd/ntp/dist/ntpsnmpd/ntpsnmpd-opts.h: up to 1.10
external/bsd/ntp/dist/ntpsnmpd/ntpsnmpd.1ntpsnmpdman: up to 1.1.1.10
external/bsd/ntp/dist/ntpsnmpd/ntpsnmpd.1ntpsnmpdmdoc: up to 1.1.1.10
external/bsd/ntp/dist/ntpsnmpd/ntpsnmpd.html: up to 1.1.1.10
external/bsd/ntp/dist/ntpsnmpd/ntpsnmpd.man.in: up to 1.1.1.10
external/bsd/ntp/dist/ntpsnmpd/ntpsnmpd.mdoc.in: up to 1.1.1.10
external/bsd/ntp/dist/packageinfo.sh: up to 1.1.1.12
external/bsd/ntp/dist/parseutil/Makefile.am: up to 1.1.1.3
external/bsd/ntp/dist/parseutil/Makefile.in: up to 1.1.1.10
external/bsd/ntp/dist/scripts/Makefile.in: up to 1.1.1.10
external/bsd/ntp/dist/scripts/build/Makefile.in: up to 1.1.1.9
external/bsd/ntp/dist/scripts/calc_tickadj/Makefile.in: up to 1.1.1.8
external/bsd/ntp/dist/scripts/calc_tickadj/calc_tickadj.1calc_tickadjman: up to 1.1.1.10
external/bsd/ntp/dist/scripts/calc_tickadj/calc_tickadj.1calc_tickadjmdoc: up to 1.1.1.10
external/bsd/ntp/dist/scripts/calc_tickadj/calc_tickadj.html: up to 1.1.1.10
external/bsd/ntp/dist/scripts/calc_tickadj/calc_tickadj.man.in: up to 1.1.1.10
external/bsd/ntp/dist/scripts/calc_tickadj/calc_tickadj.mdoc.in: up to 1.1.1.10
external/bsd/ntp/dist/scripts/calc_tickadj/invoke-calc_tickadj.texi: up to 1.1.1.10
external/bsd/ntp/dist/scripts/invoke-plot_summary.texi: up to 1.1.1.10
external/bsd/ntp/dist/scripts/invoke-summary.texi: up to 1.1.1.10
external/bsd/ntp/dist/scripts/lib/Makefile.in: up to 1.1.1.8
external/bsd/ntp/dist/scripts/ntp-wait/Makefile.in: up to 1.1.1.8
external/bsd/ntp/dist/scripts/ntp-wait/invoke-ntp-wait.texi: up to 1.1.1.10
external/bsd/ntp/dist/scripts/ntp-wait/ntp-wait-opts: up to 1.1.1.10
external/bsd/ntp/dist/scripts/ntp-wait/ntp-wait.1ntp-waitman: up to 1.1.1.10
external/bsd/ntp/dist/scripts/ntp-wait/ntp-wait.1ntp-waitmdoc: up to 1.1.1.10
external/bsd/ntp/dist/scripts/ntp-wait/ntp-wait.html: up to 1.1.1.10
external/bsd/ntp/dist/scripts/ntp-wait/ntp-wait.man.in: up to 1.1.1.10
external/bsd/ntp/dist/scripts/ntp-wait/ntp-wait.mdoc.in: up to 1.1.1.10
external/bsd/ntp/dist/scripts/ntpsweep/Makefile.in: up to 1.1.1.8
external/bsd/ntp/dist/scripts/ntpsweep/invoke-ntpsweep.texi: up to 1.1.1.10
external/bsd/ntp/dist/scripts/ntpsweep/ntpsweep-opts: up to 1.1.1.10
external/bsd/ntp/dist/scripts/ntpsweep/ntpsweep.1ntpsweepman: up to 1.1.1.10
external/bsd/ntp/dist/scripts/ntpsweep/ntpsweep.1ntpsweepmdoc: up to 1.1.1.10
external/bsd/ntp/dist/scripts/ntpsweep/ntpsweep.html: up to 1.1.1.10
external/bsd/ntp/dist/scripts/ntpsweep/ntpsweep.man.in: up to 1.1.1.10
external/bsd/ntp/dist/scripts/ntpsweep/ntpsweep.mdoc.in: up to 1.1.1.10
external/bsd/ntp/dist/scripts/ntptrace/Makefile.in: up to 1.1.1.8
external/bsd/ntp/dist/scripts/ntptrace/invoke-ntptrace.texi: up to 1.1.1.10
external/bsd/ntp/dist/scripts/ntptrace/ntptrace-opts: up to 1.1.1.10
external/bsd/ntp/dist/scripts/ntptrace/ntptrace.1ntptraceman: up to 1.1.1.10
external/bsd/ntp/dist/scripts/ntptrace/ntptrace.1ntptracemdoc: up to 1.1.1.10
external/bsd/ntp/dist/scripts/ntptrace/ntptrace.html: up to 1.1.1.10
external/bsd/ntp/dist/scripts/ntptrace/ntptrace.man.in: up to 1.1.1.10
external/bsd/ntp/dist/scripts/ntptrace/ntptrace.mdoc.in: up to 1.1.1.10
external/bsd/ntp/dist/scripts/plot_summary-opts: up to 1.1.1.10
external/bsd/ntp/dist/scripts/plot_summary.1plot_summaryman: up to 1.1.1.10
external/bsd/ntp/dist/scripts/plot_summary.1plot_summarymdoc: up to 1.1.1.10
external/bsd/ntp/dist/scripts/plot_summary.html: up to 1.1.1.10
external/bsd/ntp/dist/scripts/plot_summary.man.in: up to 1.1.1.10
external/bsd/ntp/dist/scripts/plot_summary.mdoc.in: up to 1.1.1.10
external/bsd/ntp/dist/scripts/summary-opts: up to 1.1.1.10
external/bsd/ntp/dist/scripts/summary.1summaryman: up to 1.1.1.10
external/bsd/ntp/dist/scripts/summary.1summarymdoc: up to 1.1.1.10
external/bsd/ntp/dist/scripts/summary.html: up to 1.1.1.10
external/bsd/ntp/dist/scripts/summary.man.in: up to 1.1.1.10
external/bsd/ntp/dist/scripts/summary.mdoc.in: up to 1.1.1.10
external/bsd/ntp/dist/scripts/update-leap/Makefile.in: up to 1.1.1.6
external/bsd/ntp/dist/scripts/update-leap/invoke-update-leap.texi: up to 1.1.1.8
external/bsd/ntp/dist/scripts/update-leap/update-leap-opts: up to 1.1.1.8
external/bsd/ntp/dist/scripts/update-leap/update-leap.1update-leapman: up to 1.1.1.8
external/bsd/ntp/dist/scripts/update-leap/update-leap.1update-leapmdoc: up to 1.1.1.8
external/bsd/ntp/dist/scripts/update-leap/update-leap.html: up to 1.1.1.8
external/bsd/ntp/dist/scripts/update-leap/update-leap.man.in: up to 1.1.1.8
external/bsd/ntp/dist/scripts/update-leap/update-leap.mdoc.in: up to 1.1.1.8
external/bsd/ntp/dist/sntp/COPYRIGHT: up to 1.1.1.8
external/bsd/ntp/dist/sntp/Makefile.am: up to 1.1.1.8
external/bsd/ntp/dist/sntp/Makefile.in: up to 1.1.1.11
external/bsd/ntp/dist/sntp/aclocal.m4: up to 1.1.1.10
external/bsd/ntp/dist/sntp/config.h.in: up to 1.1.1.8
external/bsd/ntp/dist/sntp/configure: up to 1.1.1.12
external/bsd/ntp/dist/sntp/configure.ac: up to 1.1.1.8
external/bsd/ntp/dist/sntp/crypto.c: up to 1.13
external/bsd/ntp/dist/sntp/harden/README: up to 1.1.1.1
external/bsd/ntp/dist/sntp/harden/default: up to 1.1.1.1
external/bsd/ntp/dist/sntp/harden/freebsd10: up to 1.1.1.1
external/bsd/ntp/dist/sntp/harden/freebsd11: up to 1.1.1.1
external/bsd/ntp/dist/sntp/harden/freebsd12: up to 1.1.1.1
external/bsd/ntp/dist/sntp/harden/linux: up to 1.1.1.1
external/bsd/ntp/dist/sntp/harden/netbsd7.0: up to 1.1.1.1
external/bsd/ntp/dist/sntp/harden/netbsd7.99: up to 1.1.1.1
external/bsd/ntp/dist/sntp/include/Makefile.in: up to 1.1.1.9
external/bsd/ntp/dist/sntp/include/copyright.def: up to 1.1.1.5
external/bsd/ntp/dist/sntp/include/version.def: up to 1.1.1.10
external/bsd/ntp/dist/sntp/include/version.texi: up to 1.1.1.10
external/bsd/ntp/dist/sntp/invoke-sntp.texi: up to 1.1.1.10
external/bsd/ntp/dist/sntp/kod_management.c: up to 1.8
external/bsd/ntp/dist/sntp/libevent/Makefile.am: up to 1.1.1.5
external/bsd/ntp/dist/sntp/libevent/Makefile.in: up to 1.1.1.8
external/bsd/ntp/dist/sntp/libevent/build-aux/compile: up to 1.1.1.4
external/bsd/ntp/dist/sntp/libevent/build-aux/depcomp: up to 1.1.1.4
external/bsd/ntp/dist/sntp/libevent/build-aux/install-sh: up to 1.1.1.4
external/bsd/ntp/dist/sntp/libevent/build-aux/ltmain.sh: up to 1.1.1.5
external/bsd/ntp/dist/sntp/libevent/build-aux/missing: up to 1.1.1.4
external/bsd/ntp/dist/sntp/libevent/build-aux/ylwrap: up to 1.1.1.4
external/bsd/ntp/dist/sntp/libevent/config.h.in: up to 1.1.1.7
external/bsd/ntp/dist/sntp/libevent/configure: up to 1.1.1.7
external/bsd/ntp/dist/sntp/libevent/configure.ac: up to 1.1.1.4
external/bsd/ntp/dist/sntp/libevent/m4/libtool.m4: up to 1.1.1.4
external/bsd/ntp/dist/sntp/libevent/m4/ltoptions.m4: up to 1.1.1.4
external/bsd/ntp/dist/sntp/libevent/m4/ltsugar.m4: up to 1.1.1.4
external/bsd/ntp/dist/sntp/libevent/m4/ltversion.m4: up to 1.1.1.5
external/bsd/ntp/dist/sntp/libevent/m4/lt~obsolete.m4: up to 1.1.1.4
external/bsd/ntp/dist/sntp/libevent/test/regress_ssl.c: up to 1.6
external/bsd/ntp/dist/sntp/libopts/Makefile.am: up to 1.1.1.5
external/bsd/ntp/dist/sntp/libopts/Makefile.in: up to 1.1.1.11
external/bsd/ntp/dist/sntp/m4/libtool.m4: up to 1.1.1.4
external/bsd/ntp/dist/sntp/m4/ltoptions.m4: up to 1.1.1.4
external/bsd/ntp/dist/sntp/m4/ltsugar.m4: up to 1.1.1.4
external/bsd/ntp/dist/sntp/m4/ltversion.m4: up to 1.1.1.5
external/bsd/ntp/dist/sntp/m4/lt~obsolete.m4: up to 1.1.1.4
external/bsd/ntp/dist/sntp/m4/ntp_compiler.m4: up to 1.1.1.3
external/bsd/ntp/dist/sntp/m4/ntp_harden.m4: up to 1.1.1.1
external/bsd/ntp/dist/sntp/m4/ntp_libevent.m4: up to 1.1.1.6
external/bsd/ntp/dist/sntp/m4/ntp_libntp.m4: up to 1.1.1.7
external/bsd/ntp/dist/sntp/m4/ntp_openssl.m4: up to 1.1.1.3
external/bsd/ntp/dist/sntp/m4/ntp_prog_cc.m4: up to 1.1.1.2
external/bsd/ntp/dist/sntp/m4/version.m4: up to 1.1.1.10
external/bsd/ntp/dist/sntp/scm-rev: up to 1.1.1.5
external/bsd/ntp/dist/sntp/scripts/Makefile.am: up to 1.1.1.2
external/bsd/ntp/dist/sntp/scripts/Makefile.in: up to 1.1.1.9
external/bsd/ntp/dist/sntp/scripts/genHardFlags: up to 1.1.1.1
external/bsd/ntp/dist/sntp/sntp-opts.c: up to 1.11
external/bsd/ntp/dist/sntp/sntp-opts.h: up to 1.10
external/bsd/ntp/dist/sntp/sntp.1sntpman: up to 1.1.1.10
external/bsd/ntp/dist/sntp/sntp.1sntpmdoc: up to 1.1.1.10
external/bsd/ntp/dist/sntp/sntp.html: up to 1.1.1.12
external/bsd/ntp/dist/sntp/sntp.man.in: up to 1.1.1.10
external/bsd/ntp/dist/sntp/sntp.mdoc.in: up to 1.1.1.10
external/bsd/ntp/dist/sntp/tests/Makefile.am: up to 1.1.1.5
external/bsd/ntp/dist/sntp/tests/Makefile.in: up to 1.1.1.9
external/bsd/ntp/dist/sntp/unity/Makefile.am: up to 1.1.1.4
external/bsd/ntp/dist/sntp/unity/Makefile.in: up to 1.1.1.7
external/bsd/ntp/dist/sntp/version.c: up to 1.1.1.9
external/bsd/ntp/dist/tests/Makefile.in: up to 1.1.1.8
external/bsd/ntp/dist/tests/bug-2803/Makefile.am: up to 1.1.1.3
external/bsd/ntp/dist/tests/bug-2803/Makefile.in: up to 1.1.1.5
external/bsd/ntp/dist/tests/libntp/Makefile.am: up to 1.1.1.6
external/bsd/ntp/dist/tests/libntp/Makefile.in: up to 1.1.1.8
external/bsd/ntp/dist/tests/ntpd/Makefile.am: up to 1.1.1.4
external/bsd/ntp/dist/tests/ntpd/Makefile.in: up to 1.1.1.9
external/bsd/ntp/dist/tests/ntpq/Makefile.am: up to 1.1.1.3
external/bsd/ntp/dist/tests/ntpq/Makefile.in: up to 1.1.1.4
external/bsd/ntp/dist/tests/sandbox/Makefile.am: up to 1.1.1.3
external/bsd/ntp/dist/tests/sandbox/Makefile.in: up to 1.1.1.5
external/bsd/ntp/dist/tests/sec-2853/Makefile.am: up to 1.1.1.3
external/bsd/ntp/dist/tests/sec-2853/Makefile.in: up to 1.1.1.5
external/bsd/ntp/dist/util/Makefile.am: up to 1.1.1.6
external/bsd/ntp/dist/util/Makefile.in: up to 1.1.1.10
external/bsd/ntp/dist/util/invoke-ntp-keygen.texi: up to 1.1.1.10
external/bsd/ntp/dist/util/ntp-keygen-opts.c: up to 1.15
external/bsd/ntp/dist/util/ntp-keygen-opts.h: up to 1.10
external/bsd/ntp/dist/util/ntp-keygen.1ntp-keygenman: up to 1.1.1.10
external/bsd/ntp/dist/util/ntp-keygen.1ntp-keygenmdoc: up to 1.1.1.10
external/bsd/ntp/dist/util/ntp-keygen.c: up to 1.12
external/bsd/ntp/dist/util/ntp-keygen.html: up to 1.1.1.10
external/bsd/ntp/dist/util/ntp-keygen.man.in: up to 1.1.1.10
external/bsd/ntp/dist/util/ntp-keygen.mdoc.in: up to 1.1.1.10
external/bsd/ntp/importdate: up to 1.12
external/bsd/ntp/scripts/mkver: up to 1.13
Update ntp to 4.2.8p10.

(snj)

2017-04-20 06:46:16 UTC netbsd-7-1 commitmail json YAML

2017-04-20 06:45:21 UTC netbsd-7-1 commitmail json YAML

src/doc/3RDPARTY@1.1145.2.37.2.2 / diff / nxr@1.1145.2.37.2.2
src/external/bsd/ntp/bin/ntpd/ntp.keys.5@1.1.30.1 / diff / nxr@1.1.30.1
src/external/bsd/ntp/dist/COPYRIGHT@1.1.1.3.4.2.6.1 / diff / nxr@1.1.1.3.4.2.6.1
src/external/bsd/ntp/dist/ChangeLog@1.1.1.3.4.5.4.2 / diff / nxr@1.1.1.3.4.5.4.2
src/external/bsd/ntp/dist/CommitLog@1.1.1.3.4.5.4.2 / diff / nxr@1.1.1.3.4.5.4.2
src/external/bsd/ntp/dist/Makefile.in@1.1.1.3.4.4.4.1 / diff / nxr@1.1.1.3.4.4.4.1
src/external/bsd/ntp/dist/NEWS@1.1.1.3.4.5.4.2 / diff / nxr@1.1.1.3.4.5.4.2
src/external/bsd/ntp/dist/aclocal.m4@1.1.1.3.4.3.4.1 / diff / nxr@1.1.1.3.4.3.4.1
src/external/bsd/ntp/dist/adjtimed/Makefile.am@1.1.1.3.20.1 / diff / nxr@1.1.1.3.20.1
src/external/bsd/ntp/dist/adjtimed/Makefile.in@1.1.1.3.4.3.4.1 / diff / nxr@1.1.1.3.4.3.4.1
src/external/bsd/ntp/dist/clockstuff/Makefile.am@1.1.1.2.20.1 / diff / nxr@1.1.1.2.20.1
src/external/bsd/ntp/dist/clockstuff/Makefile.in@1.1.1.3.4.3.4.1 / diff / nxr@1.1.1.3.4.3.4.1
src/external/bsd/ntp/dist/config.h.in@1.1.1.3.4.4.4.1 / diff / nxr@1.1.1.3.4.4.4.1
src/external/bsd/ntp/dist/configure@1.1.1.3.4.5.4.2 / diff / nxr@1.1.1.3.4.5.4.2
src/external/bsd/ntp/dist/configure.ac@1.1.1.3.4.5.4.1 / diff / nxr@1.1.1.3.4.5.4.1
src/external/bsd/ntp/dist/html/copyright.html@1.1.1.3.4.2.6.1 / diff / nxr@1.1.1.3.4.2.6.1
src/external/bsd/ntp/dist/include/Makefile.in@1.1.1.3.4.4.4.2 / diff / nxr@1.1.1.3.4.4.4.2
src/external/bsd/ntp/dist/include/isc/Makefile.in@1.1.1.3.4.3.4.1 / diff / nxr@1.1.1.3.4.3.4.1
src/external/bsd/ntp/dist/include/libssl_compat.h@1.1.1.1.8.3 / diff / nxr@1.1.1.1.8.3
src/external/bsd/ntp/dist/include/ntp_crypto.h@1.1.1.2.4.1.6.1 / diff / nxr@1.1.1.2.4.1.6.1
      :
(more 256 files)
Pull up following revision(s) (requested by spz in ticket #1405):
doc/3RDPARTY: 1.1431
external/bsd/ntp/bin/ntpd/ntp.keys.5: up to 1.2
external/bsd/ntp/dist/COPYRIGHT: up to 1.1.1.8
external/bsd/ntp/dist/ChangeLog: up to 1.1.1.12
external/bsd/ntp/dist/CommitLog: up to 1.1.1.12
external/bsd/ntp/dist/Makefile.in: up to 1.1.1.10
external/bsd/ntp/dist/NEWS: up to 1.1.1.12
external/bsd/ntp/dist/aclocal.m4: up to 1.1.1.10
external/bsd/ntp/dist/adjtimed/Makefile.am: up to 1.1.1.4
external/bsd/ntp/dist/adjtimed/Makefile.in: up to 1.1.1.10
external/bsd/ntp/dist/clockstuff/Makefile.am: up to 1.1.1.3
external/bsd/ntp/dist/clockstuff/Makefile.in: up to 1.1.1.10
external/bsd/ntp/dist/config.h.in: up to 1.1.1.9
external/bsd/ntp/dist/configure: up to 1.1.1.12
external/bsd/ntp/dist/configure.ac: up to 1.1.1.10
external/bsd/ntp/dist/html/copyright.html: up to 1.1.1.6
external/bsd/ntp/dist/include/Makefile.in: up to 1.1.1.11
external/bsd/ntp/dist/include/isc/Makefile.in: up to 1.1.1.10
external/bsd/ntp/dist/include/libssl_compat.h: up to 1.1.1.2
external/bsd/ntp/dist/include/ntp_crypto.h: up to 1.5
external/bsd/ntp/dist/include/ntp_fp.h: up to 1.9
external/bsd/ntp/dist/include/ntp_md5.h: up to 1.7
external/bsd/ntp/dist/include/ntp_stdlib.h: up to 1.14
external/bsd/ntp/dist/include/ntpd.h: up to 1.10
external/bsd/ntp/dist/include/ssl_applink.c: up to 1.5
external/bsd/ntp/dist/kernel/Makefile.in: up to 1.1.1.10
external/bsd/ntp/dist/kernel/sys/Makefile.in: up to 1.1.1.10
external/bsd/ntp/dist/lib/isc/inet_pton.c: up to 1.8
external/bsd/ntp/dist/libntp/Makefile.am: up to 1.1.1.8
external/bsd/ntp/dist/libntp/Makefile.in: up to 1.1.1.11
external/bsd/ntp/dist/libntp/a_md5encrypt.c: up to 1.8
external/bsd/ntp/dist/libntp/audio.c: up to 1.12
external/bsd/ntp/dist/libntp/authkeys.c: up to 1.11
external/bsd/ntp/dist/libntp/emalloc.c: up to 1.8
external/bsd/ntp/dist/libntp/libssl_compat.c: up to 1.1.1.2
external/bsd/ntp/dist/libntp/ntp_intres.c: up to 1.11
external/bsd/ntp/dist/libntp/recvbuff.c: up to 1.7
external/bsd/ntp/dist/libntp/ssl_init.c: up to 1.10
external/bsd/ntp/dist/libntp/statestr.c: up to 1.6
external/bsd/ntp/dist/libntp/work_fork.c: up to 1.11
external/bsd/ntp/dist/libparse/Makefile.am: up to 1.1.1.5
external/bsd/ntp/dist/libparse/Makefile.in: up to 1.1.1.10
external/bsd/ntp/dist/libparse/clk_trimtsip.c: up to 1.6
external/bsd/ntp/dist/libparse/gpstolfp.c: up to 1.6
external/bsd/ntp/dist/ntpd/Makefile.am: up to 1.1.1.8
external/bsd/ntp/dist/ntpd/Makefile.in: up to 1.1.1.10
external/bsd/ntp/dist/ntpd/invoke-ntp.conf.texi: up to 1.1.1.10
external/bsd/ntp/dist/ntpd/invoke-ntp.keys.texi: up to 1.1.1.10
external/bsd/ntp/dist/ntpd/invoke-ntpd.texi: up to 1.1.1.10
external/bsd/ntp/dist/ntpd/ntp.conf.5man: up to 1.1.1.10
external/bsd/ntp/dist/ntpd/ntp.conf.5mdoc: up to 1.1.1.10
external/bsd/ntp/dist/ntpd/ntp.conf.html: up to 1.1.1.10
external/bsd/ntp/dist/ntpd/ntp.conf.man.in: up to 1.1.1.10
external/bsd/ntp/dist/ntpd/ntp.conf.mdoc.in: up to 1.1.1.10
external/bsd/ntp/dist/ntpd/ntp.keys.5man: up to 1.1.1.10
external/bsd/ntp/dist/ntpd/ntp.keys.5mdoc: up to 1.1.1.10
external/bsd/ntp/dist/ntpd/ntp.keys.html: up to 1.1.1.10
external/bsd/ntp/dist/ntpd/ntp.keys.man.in: up to 1.1.1.10
external/bsd/ntp/dist/ntpd/ntp.keys.mdoc.in: up to 1.1.1.10
external/bsd/ntp/dist/ntpd/ntp_config.c: up to 1.17
external/bsd/ntp/dist/ntpd/ntp_control.c: up to 1.19
external/bsd/ntp/dist/ntpd/ntp_crypto.c: up to 1.14
external/bsd/ntp/dist/ntpd/ntp_io.c: up to 1.25
external/bsd/ntp/dist/ntpd/ntp_loopfilter.c: up to 1.11
external/bsd/ntp/dist/ntpd/ntp_parser.y: up to 1.16
external/bsd/ntp/dist/ntpd/ntp_peer.c: up to 1.11
external/bsd/ntp/dist/ntpd/ntp_proto.c: up to 1.15
external/bsd/ntp/dist/ntpd/ntp_restrict.c: up to 1.9
external/bsd/ntp/dist/ntpd/ntp_scanner.c: up to 1.12
external/bsd/ntp/dist/ntpd/ntpd-opts.c: up to 1.10
external/bsd/ntp/dist/ntpd/ntpd-opts.h: up to 1.13
external/bsd/ntp/dist/ntpd/ntpd.1ntpdman: up to 1.1.1.10
external/bsd/ntp/dist/ntpd/ntpd.1ntpdmdoc: up to 1.1.1.10
external/bsd/ntp/dist/ntpd/ntpd.c: up to 1.14
external/bsd/ntp/dist/ntpd/ntpd.html: up to 1.1.1.10
external/bsd/ntp/dist/ntpd/ntpd.man.in: up to 1.1.1.10
external/bsd/ntp/dist/ntpd/ntpd.mdoc.in: up to 1.1.1.10
external/bsd/ntp/dist/ntpd/refclock_datum.c: up to 1.7
external/bsd/ntp/dist/ntpd/refclock_gpsdjson.c: up to 1.11
external/bsd/ntp/dist/ntpd/refclock_jjy.c: up to 1.12
external/bsd/ntp/dist/ntpd/refclock_mx4200.c: up to 1.5
external/bsd/ntp/dist/ntpd/refclock_nmea.c: up to 1.12
external/bsd/ntp/dist/ntpd/refclock_oncore.c: up to 1.14
external/bsd/ntp/dist/ntpd/refclock_parse.c: up to 1.20
external/bsd/ntp/dist/ntpdate/Makefile.am: up to 1.1.1.4
external/bsd/ntp/dist/ntpdate/Makefile.in: up to 1.1.1.10
external/bsd/ntp/dist/ntpdate/ntpdate.c: up to 1.11
external/bsd/ntp/dist/ntpdc/Makefile.am: up to 1.1.1.5
external/bsd/ntp/dist/ntpdc/Makefile.in: up to 1.1.1.10
external/bsd/ntp/dist/ntpdc/invoke-ntpdc.texi: up to 1.1.1.10
external/bsd/ntp/dist/ntpdc/ntpdc-opts.c: up to 1.10
external/bsd/ntp/dist/ntpdc/ntpdc-opts.h: up to 1.10
external/bsd/ntp/dist/ntpdc/ntpdc.1ntpdcman: up to 1.1.1.10
external/bsd/ntp/dist/ntpdc/ntpdc.1ntpdcmdoc: up to 1.1.1.10
external/bsd/ntp/dist/ntpdc/ntpdc.c: up to 1.15
external/bsd/ntp/dist/ntpdc/ntpdc.html: up to 1.1.1.10
external/bsd/ntp/dist/ntpdc/ntpdc.man.in: up to 1.1.1.10
external/bsd/ntp/dist/ntpdc/ntpdc.mdoc.in: up to 1.1.1.10
external/bsd/ntp/dist/ntpdc/ntpdc_ops.c: up to 1.9
external/bsd/ntp/dist/ntpq/Makefile.am: up to 1.1.1.5
external/bsd/ntp/dist/ntpq/Makefile.in: up to 1.1.1.10
external/bsd/ntp/dist/ntpq/invoke-ntpq.texi: up to 1.1.1.10
external/bsd/ntp/dist/ntpq/libntpq.c: up to 1.5
external/bsd/ntp/dist/ntpq/ntpq-opts.c: up to 1.10
external/bsd/ntp/dist/ntpq/ntpq-opts.h: up to 1.10
external/bsd/ntp/dist/ntpq/ntpq-subs.c: up to 1.15
external/bsd/ntp/dist/ntpq/ntpq.1ntpqman: up to 1.1.1.10
external/bsd/ntp/dist/ntpq/ntpq.1ntpqmdoc: up to 1.1.1.10
external/bsd/ntp/dist/ntpq/ntpq.c: up to 1.18
external/bsd/ntp/dist/ntpq/ntpq.html: up to 1.1.1.10
external/bsd/ntp/dist/ntpq/ntpq.man.in: up to 1.1.1.10
external/bsd/ntp/dist/ntpq/ntpq.mdoc.in: up to 1.1.1.10
external/bsd/ntp/dist/ntpsnmpd/Makefile.am: up to 1.1.1.5
external/bsd/ntp/dist/ntpsnmpd/Makefile.in: up to 1.1.1.10
external/bsd/ntp/dist/ntpsnmpd/invoke-ntpsnmpd.texi: up to 1.1.1.10
external/bsd/ntp/dist/ntpsnmpd/ntpsnmpd-opts.c: up to 1.10
external/bsd/ntp/dist/ntpsnmpd/ntpsnmpd-opts.h: up to 1.10
external/bsd/ntp/dist/ntpsnmpd/ntpsnmpd.1ntpsnmpdman: up to 1.1.1.10
external/bsd/ntp/dist/ntpsnmpd/ntpsnmpd.1ntpsnmpdmdoc: up to 1.1.1.10
external/bsd/ntp/dist/ntpsnmpd/ntpsnmpd.html: up to 1.1.1.10
external/bsd/ntp/dist/ntpsnmpd/ntpsnmpd.man.in: up to 1.1.1.10
external/bsd/ntp/dist/ntpsnmpd/ntpsnmpd.mdoc.in: up to 1.1.1.10
external/bsd/ntp/dist/packageinfo.sh: up to 1.1.1.12
external/bsd/ntp/dist/parseutil/Makefile.am: up to 1.1.1.3
external/bsd/ntp/dist/parseutil/Makefile.in: up to 1.1.1.10
external/bsd/ntp/dist/scripts/Makefile.in: up to 1.1.1.10
external/bsd/ntp/dist/scripts/build/Makefile.in: up to 1.1.1.9
external/bsd/ntp/dist/scripts/calc_tickadj/Makefile.in: up to 1.1.1.8
external/bsd/ntp/dist/scripts/calc_tickadj/calc_tickadj.1calc_tickadjman: up to 1.1.1.10
external/bsd/ntp/dist/scripts/calc_tickadj/calc_tickadj.1calc_tickadjmdoc: up to 1.1.1.10
external/bsd/ntp/dist/scripts/calc_tickadj/calc_tickadj.html: up to 1.1.1.10
external/bsd/ntp/dist/scripts/calc_tickadj/calc_tickadj.man.in: up to 1.1.1.10
external/bsd/ntp/dist/scripts/calc_tickadj/calc_tickadj.mdoc.in: up to 1.1.1.10
external/bsd/ntp/dist/scripts/calc_tickadj/invoke-calc_tickadj.texi: up to 1.1.1.10
external/bsd/ntp/dist/scripts/invoke-plot_summary.texi: up to 1.1.1.10
external/bsd/ntp/dist/scripts/invoke-summary.texi: up to 1.1.1.10
external/bsd/ntp/dist/scripts/lib/Makefile.in: up to 1.1.1.8
external/bsd/ntp/dist/scripts/ntp-wait/Makefile.in: up to 1.1.1.8
external/bsd/ntp/dist/scripts/ntp-wait/invoke-ntp-wait.texi: up to 1.1.1.10
external/bsd/ntp/dist/scripts/ntp-wait/ntp-wait-opts: up to 1.1.1.10
external/bsd/ntp/dist/scripts/ntp-wait/ntp-wait.1ntp-waitman: up to 1.1.1.10
external/bsd/ntp/dist/scripts/ntp-wait/ntp-wait.1ntp-waitmdoc: up to 1.1.1.10
external/bsd/ntp/dist/scripts/ntp-wait/ntp-wait.html: up to 1.1.1.10
external/bsd/ntp/dist/scripts/ntp-wait/ntp-wait.man.in: up to 1.1.1.10
external/bsd/ntp/dist/scripts/ntp-wait/ntp-wait.mdoc.in: up to 1.1.1.10
external/bsd/ntp/dist/scripts/ntpsweep/Makefile.in: up to 1.1.1.8
external/bsd/ntp/dist/scripts/ntpsweep/invoke-ntpsweep.texi: up to 1.1.1.10
external/bsd/ntp/dist/scripts/ntpsweep/ntpsweep-opts: up to 1.1.1.10
external/bsd/ntp/dist/scripts/ntpsweep/ntpsweep.1ntpsweepman: up to 1.1.1.10
external/bsd/ntp/dist/scripts/ntpsweep/ntpsweep.1ntpsweepmdoc: up to 1.1.1.10
external/bsd/ntp/dist/scripts/ntpsweep/ntpsweep.html: up to 1.1.1.10
external/bsd/ntp/dist/scripts/ntpsweep/ntpsweep.man.in: up to 1.1.1.10
external/bsd/ntp/dist/scripts/ntpsweep/ntpsweep.mdoc.in: up to 1.1.1.10
external/bsd/ntp/dist/scripts/ntptrace/Makefile.in: up to 1.1.1.8
external/bsd/ntp/dist/scripts/ntptrace/invoke-ntptrace.texi: up to 1.1.1.10
external/bsd/ntp/dist/scripts/ntptrace/ntptrace-opts: up to 1.1.1.10
external/bsd/ntp/dist/scripts/ntptrace/ntptrace.1ntptraceman: up to 1.1.1.10
external/bsd/ntp/dist/scripts/ntptrace/ntptrace.1ntptracemdoc: up to 1.1.1.10
external/bsd/ntp/dist/scripts/ntptrace/ntptrace.html: up to 1.1.1.10
external/bsd/ntp/dist/scripts/ntptrace/ntptrace.man.in: up to 1.1.1.10
external/bsd/ntp/dist/scripts/ntptrace/ntptrace.mdoc.in: up to 1.1.1.10
external/bsd/ntp/dist/scripts/plot_summary-opts: up to 1.1.1.10
external/bsd/ntp/dist/scripts/plot_summary.1plot_summaryman: up to 1.1.1.10
external/bsd/ntp/dist/scripts/plot_summary.1plot_summarymdoc: up to 1.1.1.10
external/bsd/ntp/dist/scripts/plot_summary.html: up to 1.1.1.10
external/bsd/ntp/dist/scripts/plot_summary.man.in: up to 1.1.1.10
external/bsd/ntp/dist/scripts/plot_summary.mdoc.in: up to 1.1.1.10
external/bsd/ntp/dist/scripts/summary-opts: up to 1.1.1.10
external/bsd/ntp/dist/scripts/summary.1summaryman: up to 1.1.1.10
external/bsd/ntp/dist/scripts/summary.1summarymdoc: up to 1.1.1.10
external/bsd/ntp/dist/scripts/summary.html: up to 1.1.1.10
external/bsd/ntp/dist/scripts/summary.man.in: up to 1.1.1.10
external/bsd/ntp/dist/scripts/summary.mdoc.in: up to 1.1.1.10
external/bsd/ntp/dist/scripts/update-leap/Makefile.in: up to 1.1.1.6
external/bsd/ntp/dist/scripts/update-leap/invoke-update-leap.texi: up to 1.1.1.8
external/bsd/ntp/dist/scripts/update-leap/update-leap-opts: up to 1.1.1.8
external/bsd/ntp/dist/scripts/update-leap/update-leap.1update-leapman: up to 1.1.1.8
external/bsd/ntp/dist/scripts/update-leap/update-leap.1update-leapmdoc: up to 1.1.1.8
external/bsd/ntp/dist/scripts/update-leap/update-leap.html: up to 1.1.1.8
external/bsd/ntp/dist/scripts/update-leap/update-leap.man.in: up to 1.1.1.8
external/bsd/ntp/dist/scripts/update-leap/update-leap.mdoc.in: up to 1.1.1.8
external/bsd/ntp/dist/sntp/COPYRIGHT: up to 1.1.1.8
external/bsd/ntp/dist/sntp/Makefile.am: up to 1.1.1.8
external/bsd/ntp/dist/sntp/Makefile.in: up to 1.1.1.11
external/bsd/ntp/dist/sntp/aclocal.m4: up to 1.1.1.10
external/bsd/ntp/dist/sntp/config.h.in: up to 1.1.1.8
external/bsd/ntp/dist/sntp/configure: up to 1.1.1.12
external/bsd/ntp/dist/sntp/configure.ac: up to 1.1.1.8
external/bsd/ntp/dist/sntp/crypto.c: up to 1.13
external/bsd/ntp/dist/sntp/harden/README: up to 1.1.1.1
external/bsd/ntp/dist/sntp/harden/default: up to 1.1.1.1
external/bsd/ntp/dist/sntp/harden/freebsd10: up to 1.1.1.1
external/bsd/ntp/dist/sntp/harden/freebsd11: up to 1.1.1.1
external/bsd/ntp/dist/sntp/harden/freebsd12: up to 1.1.1.1
external/bsd/ntp/dist/sntp/harden/linux: up to 1.1.1.1
external/bsd/ntp/dist/sntp/harden/netbsd7.0: up to 1.1.1.1
external/bsd/ntp/dist/sntp/harden/netbsd7.99: up to 1.1.1.1
external/bsd/ntp/dist/sntp/include/Makefile.in: up to 1.1.1.9
external/bsd/ntp/dist/sntp/include/copyright.def: up to 1.1.1.5
external/bsd/ntp/dist/sntp/include/version.def: up to 1.1.1.10
external/bsd/ntp/dist/sntp/include/version.texi: up to 1.1.1.10
external/bsd/ntp/dist/sntp/invoke-sntp.texi: up to 1.1.1.10
external/bsd/ntp/dist/sntp/kod_management.c: up to 1.8
external/bsd/ntp/dist/sntp/libevent/Makefile.am: up to 1.1.1.5
external/bsd/ntp/dist/sntp/libevent/Makefile.in: up to 1.1.1.8
external/bsd/ntp/dist/sntp/libevent/build-aux/compile: up to 1.1.1.4
external/bsd/ntp/dist/sntp/libevent/build-aux/depcomp: up to 1.1.1.4
external/bsd/ntp/dist/sntp/libevent/build-aux/install-sh: up to 1.1.1.4
external/bsd/ntp/dist/sntp/libevent/build-aux/ltmain.sh: up to 1.1.1.5
external/bsd/ntp/dist/sntp/libevent/build-aux/missing: up to 1.1.1.4
external/bsd/ntp/dist/sntp/libevent/build-aux/ylwrap: up to 1.1.1.4
external/bsd/ntp/dist/sntp/libevent/config.h.in: up to 1.1.1.7
external/bsd/ntp/dist/sntp/libevent/configure: up to 1.1.1.7
external/bsd/ntp/dist/sntp/libevent/configure.ac: up to 1.1.1.4
external/bsd/ntp/dist/sntp/libevent/m4/libtool.m4: up to 1.1.1.4
external/bsd/ntp/dist/sntp/libevent/m4/ltoptions.m4: up to 1.1.1.4
external/bsd/ntp/dist/sntp/libevent/m4/ltsugar.m4: up to 1.1.1.4
external/bsd/ntp/dist/sntp/libevent/m4/ltversion.m4: up to 1.1.1.5
external/bsd/ntp/dist/sntp/libevent/m4/lt~obsolete.m4: up to 1.1.1.4
external/bsd/ntp/dist/sntp/libevent/test/regress_ssl.c: up to 1.6
external/bsd/ntp/dist/sntp/libopts/Makefile.am: up to 1.1.1.5
external/bsd/ntp/dist/sntp/libopts/Makefile.in: up to 1.1.1.11
external/bsd/ntp/dist/sntp/m4/libtool.m4: up to 1.1.1.4
external/bsd/ntp/dist/sntp/m4/ltoptions.m4: up to 1.1.1.4
external/bsd/ntp/dist/sntp/m4/ltsugar.m4: up to 1.1.1.4
external/bsd/ntp/dist/sntp/m4/ltversion.m4: up to 1.1.1.5
external/bsd/ntp/dist/sntp/m4/lt~obsolete.m4: up to 1.1.1.4
external/bsd/ntp/dist/sntp/m4/ntp_compiler.m4: up to 1.1.1.3
external/bsd/ntp/dist/sntp/m4/ntp_harden.m4: up to 1.1.1.1
external/bsd/ntp/dist/sntp/m4/ntp_libevent.m4: up to 1.1.1.6
external/bsd/ntp/dist/sntp/m4/ntp_libntp.m4: up to 1.1.1.7
external/bsd/ntp/dist/sntp/m4/ntp_openssl.m4: up to 1.1.1.3
external/bsd/ntp/dist/sntp/m4/ntp_prog_cc.m4: up to 1.1.1.2
external/bsd/ntp/dist/sntp/m4/version.m4: up to 1.1.1.10
external/bsd/ntp/dist/sntp/scm-rev: up to 1.1.1.5
external/bsd/ntp/dist/sntp/scripts/Makefile.am: up to 1.1.1.2
external/bsd/ntp/dist/sntp/scripts/Makefile.in: up to 1.1.1.9
external/bsd/ntp/dist/sntp/scripts/genHardFlags: up to 1.1.1.1
external/bsd/ntp/dist/sntp/sntp-opts.c: up to 1.11
external/bsd/ntp/dist/sntp/sntp-opts.h: up to 1.10
external/bsd/ntp/dist/sntp/sntp.1sntpman: up to 1.1.1.10
external/bsd/ntp/dist/sntp/sntp.1sntpmdoc: up to 1.1.1.10
external/bsd/ntp/dist/sntp/sntp.html: up to 1.1.1.12
external/bsd/ntp/dist/sntp/sntp.man.in: up to 1.1.1.10
external/bsd/ntp/dist/sntp/sntp.mdoc.in: up to 1.1.1.10
external/bsd/ntp/dist/sntp/tests/Makefile.am: up to 1.1.1.5
external/bsd/ntp/dist/sntp/tests/Makefile.in: up to 1.1.1.9
external/bsd/ntp/dist/sntp/unity/Makefile.am: up to 1.1.1.4
external/bsd/ntp/dist/sntp/unity/Makefile.in: up to 1.1.1.7
external/bsd/ntp/dist/sntp/version.c: up to 1.1.1.9
external/bsd/ntp/dist/tests/Makefile.in: up to 1.1.1.8
external/bsd/ntp/dist/tests/bug-2803/Makefile.am: up to 1.1.1.3
external/bsd/ntp/dist/tests/bug-2803/Makefile.in: up to 1.1.1.5
external/bsd/ntp/dist/tests/libntp/Makefile.am: up to 1.1.1.6
external/bsd/ntp/dist/tests/libntp/Makefile.in: up to 1.1.1.8
external/bsd/ntp/dist/tests/ntpd/Makefile.am: up to 1.1.1.4
external/bsd/ntp/dist/tests/ntpd/Makefile.in: up to 1.1.1.9
external/bsd/ntp/dist/tests/ntpq/Makefile.am: up to 1.1.1.3
external/bsd/ntp/dist/tests/ntpq/Makefile.in: up to 1.1.1.4
external/bsd/ntp/dist/tests/sandbox/Makefile.am: up to 1.1.1.3
external/bsd/ntp/dist/tests/sandbox/Makefile.in: up to 1.1.1.5
external/bsd/ntp/dist/tests/sec-2853/Makefile.am: up to 1.1.1.3
external/bsd/ntp/dist/tests/sec-2853/Makefile.in: up to 1.1.1.5
external/bsd/ntp/dist/util/Makefile.am: up to 1.1.1.6
external/bsd/ntp/dist/util/Makefile.in: up to 1.1.1.10
external/bsd/ntp/dist/util/invoke-ntp-keygen.texi: up to 1.1.1.10
external/bsd/ntp/dist/util/ntp-keygen-opts.c: up to 1.15
external/bsd/ntp/dist/util/ntp-keygen-opts.h: up to 1.10
external/bsd/ntp/dist/util/ntp-keygen.1ntp-keygenman: up to 1.1.1.10
external/bsd/ntp/dist/util/ntp-keygen.1ntp-keygenmdoc: up to 1.1.1.10
external/bsd/ntp/dist/util/ntp-keygen.c: up to 1.12
external/bsd/ntp/dist/util/ntp-keygen.html: up to 1.1.1.10
external/bsd/ntp/dist/util/ntp-keygen.man.in: up to 1.1.1.10
external/bsd/ntp/dist/util/ntp-keygen.mdoc.in: up to 1.1.1.10
external/bsd/ntp/importdate: up to 1.12
external/bsd/ntp/scripts/mkver: up to 1.13
Update ntp to 4.2.8p10.

(snj)

2017-04-20 06:43:48 UTC netbsd-7-0 commitmail json YAML

2017-04-20 06:42:26 UTC netbsd-7-0 commitmail json YAML

src/doc/3RDPARTY@1.1145.2.18.2.18 / diff / nxr@1.1145.2.18.2.18
src/external/bsd/ntp/bin/ntpd/ntp.keys.5@1.1.22.1 / diff / nxr@1.1.22.1
src/external/bsd/ntp/dist/COPYRIGHT@1.1.1.3.4.2.2.1 / diff / nxr@1.1.1.3.4.2.2.1
src/external/bsd/ntp/dist/ChangeLog@1.1.1.3.4.2.2.5 / diff / nxr@1.1.1.3.4.2.2.5
src/external/bsd/ntp/dist/CommitLog@1.1.1.3.4.2.2.5 / diff / nxr@1.1.1.3.4.2.2.5
src/external/bsd/ntp/dist/Makefile.in@1.1.1.3.4.2.2.3 / diff / nxr@1.1.1.3.4.2.2.3
src/external/bsd/ntp/dist/NEWS@1.1.1.3.4.2.2.5 / diff / nxr@1.1.1.3.4.2.2.5
src/external/bsd/ntp/dist/aclocal.m4@1.1.1.3.4.2.2.2 / diff / nxr@1.1.1.3.4.2.2.2
src/external/bsd/ntp/dist/adjtimed/Makefile.am@1.1.1.3.12.1 / diff / nxr@1.1.1.3.12.1
src/external/bsd/ntp/dist/adjtimed/Makefile.in@1.1.1.3.4.2.2.2 / diff / nxr@1.1.1.3.4.2.2.2
src/external/bsd/ntp/dist/clockstuff/Makefile.am@1.1.1.2.12.1 / diff / nxr@1.1.1.2.12.1
src/external/bsd/ntp/dist/clockstuff/Makefile.in@1.1.1.3.4.2.2.2 / diff / nxr@1.1.1.3.4.2.2.2
src/external/bsd/ntp/dist/config.h.in@1.1.1.3.4.2.2.3 / diff / nxr@1.1.1.3.4.2.2.3
src/external/bsd/ntp/dist/configure@1.1.1.3.4.2.2.5 / diff / nxr@1.1.1.3.4.2.2.5
src/external/bsd/ntp/dist/configure.ac@1.1.1.3.4.2.2.4 / diff / nxr@1.1.1.3.4.2.2.4
src/external/bsd/ntp/dist/html/copyright.html@1.1.1.3.4.2.2.1 / diff / nxr@1.1.1.3.4.2.2.1
src/external/bsd/ntp/dist/include/Makefile.in@1.1.1.3.4.2.2.4 / diff / nxr@1.1.1.3.4.2.2.4
src/external/bsd/ntp/dist/include/isc/Makefile.in@1.1.1.3.4.2.2.2 / diff / nxr@1.1.1.3.4.2.2.2
src/external/bsd/ntp/dist/include/libssl_compat.h@1.1.1.1.6.3 / diff / nxr@1.1.1.1.6.3
src/external/bsd/ntp/dist/include/ntp_crypto.h@1.1.1.2.4.1.2.1 / diff / nxr@1.1.1.2.4.1.2.1
      :
(more 256 files)
Pull up following revision(s) (requested by spz in ticket #1405):
doc/3RDPARTY: 1.1431
external/bsd/ntp/bin/ntpd/ntp.keys.5: up to 1.2
external/bsd/ntp/dist/COPYRIGHT: up to 1.1.1.8
external/bsd/ntp/dist/ChangeLog: up to 1.1.1.12
external/bsd/ntp/dist/CommitLog: up to 1.1.1.12
external/bsd/ntp/dist/Makefile.in: up to 1.1.1.10
external/bsd/ntp/dist/NEWS: up to 1.1.1.12
external/bsd/ntp/dist/aclocal.m4: up to 1.1.1.10
external/bsd/ntp/dist/adjtimed/Makefile.am: up to 1.1.1.4
external/bsd/ntp/dist/adjtimed/Makefile.in: up to 1.1.1.10
external/bsd/ntp/dist/clockstuff/Makefile.am: up to 1.1.1.3
external/bsd/ntp/dist/clockstuff/Makefile.in: up to 1.1.1.10
external/bsd/ntp/dist/config.h.in: up to 1.1.1.9
external/bsd/ntp/dist/configure: up to 1.1.1.12
external/bsd/ntp/dist/configure.ac: up to 1.1.1.10
external/bsd/ntp/dist/html/copyright.html: up to 1.1.1.6
external/bsd/ntp/dist/include/Makefile.in: up to 1.1.1.11
external/bsd/ntp/dist/include/isc/Makefile.in: up to 1.1.1.10
external/bsd/ntp/dist/include/libssl_compat.h: up to 1.1.1.2
external/bsd/ntp/dist/include/ntp_crypto.h: up to 1.5
external/bsd/ntp/dist/include/ntp_fp.h: up to 1.9
external/bsd/ntp/dist/include/ntp_md5.h: up to 1.7
external/bsd/ntp/dist/include/ntp_stdlib.h: up to 1.14
external/bsd/ntp/dist/include/ntpd.h: up to 1.10
external/bsd/ntp/dist/include/ssl_applink.c: up to 1.5
external/bsd/ntp/dist/kernel/Makefile.in: up to 1.1.1.10
external/bsd/ntp/dist/kernel/sys/Makefile.in: up to 1.1.1.10
external/bsd/ntp/dist/lib/isc/inet_pton.c: up to 1.8
external/bsd/ntp/dist/libntp/Makefile.am: up to 1.1.1.8
external/bsd/ntp/dist/libntp/Makefile.in: up to 1.1.1.11
external/bsd/ntp/dist/libntp/a_md5encrypt.c: up to 1.8
external/bsd/ntp/dist/libntp/audio.c: up to 1.12
external/bsd/ntp/dist/libntp/authkeys.c: up to 1.11
external/bsd/ntp/dist/libntp/emalloc.c: up to 1.8
external/bsd/ntp/dist/libntp/libssl_compat.c: up to 1.1.1.2
external/bsd/ntp/dist/libntp/ntp_intres.c: up to 1.11
external/bsd/ntp/dist/libntp/recvbuff.c: up to 1.7
external/bsd/ntp/dist/libntp/ssl_init.c: up to 1.10
external/bsd/ntp/dist/libntp/statestr.c: up to 1.6
external/bsd/ntp/dist/libntp/work_fork.c: up to 1.11
external/bsd/ntp/dist/libparse/Makefile.am: up to 1.1.1.5
external/bsd/ntp/dist/libparse/Makefile.in: up to 1.1.1.10
external/bsd/ntp/dist/libparse/clk_trimtsip.c: up to 1.6
external/bsd/ntp/dist/libparse/gpstolfp.c: up to 1.6
external/bsd/ntp/dist/ntpd/Makefile.am: up to 1.1.1.8
external/bsd/ntp/dist/ntpd/Makefile.in: up to 1.1.1.10
external/bsd/ntp/dist/ntpd/invoke-ntp.conf.texi: up to 1.1.1.10
external/bsd/ntp/dist/ntpd/invoke-ntp.keys.texi: up to 1.1.1.10
external/bsd/ntp/dist/ntpd/invoke-ntpd.texi: up to 1.1.1.10
external/bsd/ntp/dist/ntpd/ntp.conf.5man: up to 1.1.1.10
external/bsd/ntp/dist/ntpd/ntp.conf.5mdoc: up to 1.1.1.10
external/bsd/ntp/dist/ntpd/ntp.conf.html: up to 1.1.1.10
external/bsd/ntp/dist/ntpd/ntp.conf.man.in: up to 1.1.1.10
external/bsd/ntp/dist/ntpd/ntp.conf.mdoc.in: up to 1.1.1.10
external/bsd/ntp/dist/ntpd/ntp.keys.5man: up to 1.1.1.10
external/bsd/ntp/dist/ntpd/ntp.keys.5mdoc: up to 1.1.1.10
external/bsd/ntp/dist/ntpd/ntp.keys.html: up to 1.1.1.10
external/bsd/ntp/dist/ntpd/ntp.keys.man.in: up to 1.1.1.10
external/bsd/ntp/dist/ntpd/ntp.keys.mdoc.in: up to 1.1.1.10
external/bsd/ntp/dist/ntpd/ntp_config.c: up to 1.17
external/bsd/ntp/dist/ntpd/ntp_control.c: up to 1.19
external/bsd/ntp/dist/ntpd/ntp_crypto.c: up to 1.14
external/bsd/ntp/dist/ntpd/ntp_io.c: up to 1.25
external/bsd/ntp/dist/ntpd/ntp_loopfilter.c: up to 1.11
external/bsd/ntp/dist/ntpd/ntp_parser.y: up to 1.16
external/bsd/ntp/dist/ntpd/ntp_peer.c: up to 1.11
external/bsd/ntp/dist/ntpd/ntp_proto.c: up to 1.15
external/bsd/ntp/dist/ntpd/ntp_restrict.c: up to 1.9
external/bsd/ntp/dist/ntpd/ntp_scanner.c: up to 1.12
external/bsd/ntp/dist/ntpd/ntpd-opts.c: up to 1.10
external/bsd/ntp/dist/ntpd/ntpd-opts.h: up to 1.13
external/bsd/ntp/dist/ntpd/ntpd.1ntpdman: up to 1.1.1.10
external/bsd/ntp/dist/ntpd/ntpd.1ntpdmdoc: up to 1.1.1.10
external/bsd/ntp/dist/ntpd/ntpd.c: up to 1.14
external/bsd/ntp/dist/ntpd/ntpd.html: up to 1.1.1.10
external/bsd/ntp/dist/ntpd/ntpd.man.in: up to 1.1.1.10
external/bsd/ntp/dist/ntpd/ntpd.mdoc.in: up to 1.1.1.10
external/bsd/ntp/dist/ntpd/refclock_datum.c: up to 1.7
external/bsd/ntp/dist/ntpd/refclock_gpsdjson.c: up to 1.11
external/bsd/ntp/dist/ntpd/refclock_jjy.c: up to 1.12
external/bsd/ntp/dist/ntpd/refclock_mx4200.c: up to 1.5
external/bsd/ntp/dist/ntpd/refclock_nmea.c: up to 1.12
external/bsd/ntp/dist/ntpd/refclock_oncore.c: up to 1.14
external/bsd/ntp/dist/ntpd/refclock_parse.c: up to 1.20
external/bsd/ntp/dist/ntpdate/Makefile.am: up to 1.1.1.4
external/bsd/ntp/dist/ntpdate/Makefile.in: up to 1.1.1.10
external/bsd/ntp/dist/ntpdate/ntpdate.c: up to 1.11
external/bsd/ntp/dist/ntpdc/Makefile.am: up to 1.1.1.5
external/bsd/ntp/dist/ntpdc/Makefile.in: up to 1.1.1.10
external/bsd/ntp/dist/ntpdc/invoke-ntpdc.texi: up to 1.1.1.10
external/bsd/ntp/dist/ntpdc/ntpdc-opts.c: up to 1.10
external/bsd/ntp/dist/ntpdc/ntpdc-opts.h: up to 1.10
external/bsd/ntp/dist/ntpdc/ntpdc.1ntpdcman: up to 1.1.1.10
external/bsd/ntp/dist/ntpdc/ntpdc.1ntpdcmdoc: up to 1.1.1.10
external/bsd/ntp/dist/ntpdc/ntpdc.c: up to 1.15
external/bsd/ntp/dist/ntpdc/ntpdc.html: up to 1.1.1.10
external/bsd/ntp/dist/ntpdc/ntpdc.man.in: up to 1.1.1.10
external/bsd/ntp/dist/ntpdc/ntpdc.mdoc.in: up to 1.1.1.10
external/bsd/ntp/dist/ntpdc/ntpdc_ops.c: up to 1.9
external/bsd/ntp/dist/ntpq/Makefile.am: up to 1.1.1.5
external/bsd/ntp/dist/ntpq/Makefile.in: up to 1.1.1.10
external/bsd/ntp/dist/ntpq/invoke-ntpq.texi: up to 1.1.1.10
external/bsd/ntp/dist/ntpq/libntpq.c: up to 1.5
external/bsd/ntp/dist/ntpq/ntpq-opts.c: up to 1.10
external/bsd/ntp/dist/ntpq/ntpq-opts.h: up to 1.10
external/bsd/ntp/dist/ntpq/ntpq-subs.c: up to 1.15
external/bsd/ntp/dist/ntpq/ntpq.1ntpqman: up to 1.1.1.10
external/bsd/ntp/dist/ntpq/ntpq.1ntpqmdoc: up to 1.1.1.10
external/bsd/ntp/dist/ntpq/ntpq.c: up to 1.18
external/bsd/ntp/dist/ntpq/ntpq.html: up to 1.1.1.10
external/bsd/ntp/dist/ntpq/ntpq.man.in: up to 1.1.1.10
external/bsd/ntp/dist/ntpq/ntpq.mdoc.in: up to 1.1.1.10
external/bsd/ntp/dist/ntpsnmpd/Makefile.am: up to 1.1.1.5
external/bsd/ntp/dist/ntpsnmpd/Makefile.in: up to 1.1.1.10
external/bsd/ntp/dist/ntpsnmpd/invoke-ntpsnmpd.texi: up to 1.1.1.10
external/bsd/ntp/dist/ntpsnmpd/ntpsnmpd-opts.c: up to 1.10
external/bsd/ntp/dist/ntpsnmpd/ntpsnmpd-opts.h: up to 1.10
external/bsd/ntp/dist/ntpsnmpd/ntpsnmpd.1ntpsnmpdman: up to 1.1.1.10
external/bsd/ntp/dist/ntpsnmpd/ntpsnmpd.1ntpsnmpdmdoc: up to 1.1.1.10
external/bsd/ntp/dist/ntpsnmpd/ntpsnmpd.html: up to 1.1.1.10
external/bsd/ntp/dist/ntpsnmpd/ntpsnmpd.man.in: up to 1.1.1.10
external/bsd/ntp/dist/ntpsnmpd/ntpsnmpd.mdoc.in: up to 1.1.1.10
external/bsd/ntp/dist/packageinfo.sh: up to 1.1.1.12
external/bsd/ntp/dist/parseutil/Makefile.am: up to 1.1.1.3
external/bsd/ntp/dist/parseutil/Makefile.in: up to 1.1.1.10
external/bsd/ntp/dist/scripts/Makefile.in: up to 1.1.1.10
external/bsd/ntp/dist/scripts/build/Makefile.in: up to 1.1.1.9
external/bsd/ntp/dist/scripts/calc_tickadj/Makefile.in: up to 1.1.1.8
external/bsd/ntp/dist/scripts/calc_tickadj/calc_tickadj.1calc_tickadjman: up to 1.1.1.10
external/bsd/ntp/dist/scripts/calc_tickadj/calc_tickadj.1calc_tickadjmdoc: up to 1.1.1.10
external/bsd/ntp/dist/scripts/calc_tickadj/calc_tickadj.html: up to 1.1.1.10
external/bsd/ntp/dist/scripts/calc_tickadj/calc_tickadj.man.in: up to 1.1.1.10
external/bsd/ntp/dist/scripts/calc_tickadj/calc_tickadj.mdoc.in: up to 1.1.1.10
external/bsd/ntp/dist/scripts/calc_tickadj/invoke-calc_tickadj.texi: up to 1.1.1.10
external/bsd/ntp/dist/scripts/invoke-plot_summary.texi: up to 1.1.1.10
external/bsd/ntp/dist/scripts/invoke-summary.texi: up to 1.1.1.10
external/bsd/ntp/dist/scripts/lib/Makefile.in: up to 1.1.1.8
external/bsd/ntp/dist/scripts/ntp-wait/Makefile.in: up to 1.1.1.8
external/bsd/ntp/dist/scripts/ntp-wait/invoke-ntp-wait.texi: up to 1.1.1.10
external/bsd/ntp/dist/scripts/ntp-wait/ntp-wait-opts: up to 1.1.1.10
external/bsd/ntp/dist/scripts/ntp-wait/ntp-wait.1ntp-waitman: up to 1.1.1.10
external/bsd/ntp/dist/scripts/ntp-wait/ntp-wait.1ntp-waitmdoc: up to 1.1.1.10
external/bsd/ntp/dist/scripts/ntp-wait/ntp-wait.html: up to 1.1.1.10
external/bsd/ntp/dist/scripts/ntp-wait/ntp-wait.man.in: up to 1.1.1.10
external/bsd/ntp/dist/scripts/ntp-wait/ntp-wait.mdoc.in: up to 1.1.1.10
external/bsd/ntp/dist/scripts/ntpsweep/Makefile.in: up to 1.1.1.8
external/bsd/ntp/dist/scripts/ntpsweep/invoke-ntpsweep.texi: up to 1.1.1.10
external/bsd/ntp/dist/scripts/ntpsweep/ntpsweep-opts: up to 1.1.1.10
external/bsd/ntp/dist/scripts/ntpsweep/ntpsweep.1ntpsweepman: up to 1.1.1.10
external/bsd/ntp/dist/scripts/ntpsweep/ntpsweep.1ntpsweepmdoc: up to 1.1.1.10
external/bsd/ntp/dist/scripts/ntpsweep/ntpsweep.html: up to 1.1.1.10
external/bsd/ntp/dist/scripts/ntpsweep/ntpsweep.man.in: up to 1.1.1.10
external/bsd/ntp/dist/scripts/ntpsweep/ntpsweep.mdoc.in: up to 1.1.1.10
external/bsd/ntp/dist/scripts/ntptrace/Makefile.in: up to 1.1.1.8
external/bsd/ntp/dist/scripts/ntptrace/invoke-ntptrace.texi: up to 1.1.1.10
external/bsd/ntp/dist/scripts/ntptrace/ntptrace-opts: up to 1.1.1.10
external/bsd/ntp/dist/scripts/ntptrace/ntptrace.1ntptraceman: up to 1.1.1.10
external/bsd/ntp/dist/scripts/ntptrace/ntptrace.1ntptracemdoc: up to 1.1.1.10
external/bsd/ntp/dist/scripts/ntptrace/ntptrace.html: up to 1.1.1.10
external/bsd/ntp/dist/scripts/ntptrace/ntptrace.man.in: up to 1.1.1.10
external/bsd/ntp/dist/scripts/ntptrace/ntptrace.mdoc.in: up to 1.1.1.10
external/bsd/ntp/dist/scripts/plot_summary-opts: up to 1.1.1.10
external/bsd/ntp/dist/scripts/plot_summary.1plot_summaryman: up to 1.1.1.10
external/bsd/ntp/dist/scripts/plot_summary.1plot_summarymdoc: up to 1.1.1.10
external/bsd/ntp/dist/scripts/plot_summary.html: up to 1.1.1.10
external/bsd/ntp/dist/scripts/plot_summary.man.in: up to 1.1.1.10
external/bsd/ntp/dist/scripts/plot_summary.mdoc.in: up to 1.1.1.10
external/bsd/ntp/dist/scripts/summary-opts: up to 1.1.1.10
external/bsd/ntp/dist/scripts/summary.1summaryman: up to 1.1.1.10
external/bsd/ntp/dist/scripts/summary.1summarymdoc: up to 1.1.1.10
external/bsd/ntp/dist/scripts/summary.html: up to 1.1.1.10
external/bsd/ntp/dist/scripts/summary.man.in: up to 1.1.1.10
external/bsd/ntp/dist/scripts/summary.mdoc.in: up to 1.1.1.10
external/bsd/ntp/dist/scripts/update-leap/Makefile.in: up to 1.1.1.6
external/bsd/ntp/dist/scripts/update-leap/invoke-update-leap.texi: up to 1.1.1.8
external/bsd/ntp/dist/scripts/update-leap/update-leap-opts: up to 1.1.1.8
external/bsd/ntp/dist/scripts/update-leap/update-leap.1update-leapman: up to 1.1.1.8
external/bsd/ntp/dist/scripts/update-leap/update-leap.1update-leapmdoc: up to 1.1.1.8
external/bsd/ntp/dist/scripts/update-leap/update-leap.html: up to 1.1.1.8
external/bsd/ntp/dist/scripts/update-leap/update-leap.man.in: up to 1.1.1.8
external/bsd/ntp/dist/scripts/update-leap/update-leap.mdoc.in: up to 1.1.1.8
external/bsd/ntp/dist/sntp/COPYRIGHT: up to 1.1.1.8
external/bsd/ntp/dist/sntp/Makefile.am: up to 1.1.1.8
external/bsd/ntp/dist/sntp/Makefile.in: up to 1.1.1.11
external/bsd/ntp/dist/sntp/aclocal.m4: up to 1.1.1.10
external/bsd/ntp/dist/sntp/config.h.in: up to 1.1.1.8
external/bsd/ntp/dist/sntp/configure: up to 1.1.1.12
external/bsd/ntp/dist/sntp/configure.ac: up to 1.1.1.8
external/bsd/ntp/dist/sntp/crypto.c: up to 1.13
external/bsd/ntp/dist/sntp/harden/README: up to 1.1.1.1
external/bsd/ntp/dist/sntp/harden/default: up to 1.1.1.1
external/bsd/ntp/dist/sntp/harden/freebsd10: up to 1.1.1.1
external/bsd/ntp/dist/sntp/harden/freebsd11: up to 1.1.1.1
external/bsd/ntp/dist/sntp/harden/freebsd12: up to 1.1.1.1
external/bsd/ntp/dist/sntp/harden/linux: up to 1.1.1.1
external/bsd/ntp/dist/sntp/harden/netbsd7.0: up to 1.1.1.1
external/bsd/ntp/dist/sntp/harden/netbsd7.99: up to 1.1.1.1
external/bsd/ntp/dist/sntp/include/Makefile.in: up to 1.1.1.9
external/bsd/ntp/dist/sntp/include/copyright.def: up to 1.1.1.5
external/bsd/ntp/dist/sntp/include/version.def: up to 1.1.1.10
external/bsd/ntp/dist/sntp/include/version.texi: up to 1.1.1.10
external/bsd/ntp/dist/sntp/invoke-sntp.texi: up to 1.1.1.10
external/bsd/ntp/dist/sntp/kod_management.c: up to 1.8
external/bsd/ntp/dist/sntp/libevent/Makefile.am: up to 1.1.1.5
external/bsd/ntp/dist/sntp/libevent/Makefile.in: up to 1.1.1.8
external/bsd/ntp/dist/sntp/libevent/build-aux/compile: up to 1.1.1.4
external/bsd/ntp/dist/sntp/libevent/build-aux/depcomp: up to 1.1.1.4
external/bsd/ntp/dist/sntp/libevent/build-aux/install-sh: up to 1.1.1.4
external/bsd/ntp/dist/sntp/libevent/build-aux/ltmain.sh: up to 1.1.1.5
external/bsd/ntp/dist/sntp/libevent/build-aux/missing: up to 1.1.1.4
external/bsd/ntp/dist/sntp/libevent/build-aux/ylwrap: up to 1.1.1.4
external/bsd/ntp/dist/sntp/libevent/config.h.in: up to 1.1.1.7
external/bsd/ntp/dist/sntp/libevent/configure: up to 1.1.1.7
external/bsd/ntp/dist/sntp/libevent/configure.ac: up to 1.1.1.4
external/bsd/ntp/dist/sntp/libevent/m4/libtool.m4: up to 1.1.1.4
external/bsd/ntp/dist/sntp/libevent/m4/ltoptions.m4: up to 1.1.1.4
external/bsd/ntp/dist/sntp/libevent/m4/ltsugar.m4: up to 1.1.1.4
external/bsd/ntp/dist/sntp/libevent/m4/ltversion.m4: up to 1.1.1.5
external/bsd/ntp/dist/sntp/libevent/m4/lt~obsolete.m4: up to 1.1.1.4
external/bsd/ntp/dist/sntp/libevent/test/regress_ssl.c: up to 1.6
external/bsd/ntp/dist/sntp/libopts/Makefile.am: up to 1.1.1.5
external/bsd/ntp/dist/sntp/libopts/Makefile.in: up to 1.1.1.11
external/bsd/ntp/dist/sntp/m4/libtool.m4: up to 1.1.1.4
external/bsd/ntp/dist/sntp/m4/ltoptions.m4: up to 1.1.1.4
external/bsd/ntp/dist/sntp/m4/ltsugar.m4: up to 1.1.1.4
external/bsd/ntp/dist/sntp/m4/ltversion.m4: up to 1.1.1.5
external/bsd/ntp/dist/sntp/m4/lt~obsolete.m4: up to 1.1.1.4
external/bsd/ntp/dist/sntp/m4/ntp_compiler.m4: up to 1.1.1.3
external/bsd/ntp/dist/sntp/m4/ntp_harden.m4: up to 1.1.1.1
external/bsd/ntp/dist/sntp/m4/ntp_libevent.m4: up to 1.1.1.6
external/bsd/ntp/dist/sntp/m4/ntp_libntp.m4: up to 1.1.1.7
external/bsd/ntp/dist/sntp/m4/ntp_openssl.m4: up to 1.1.1.3
external/bsd/ntp/dist/sntp/m4/ntp_prog_cc.m4: up to 1.1.1.2
external/bsd/ntp/dist/sntp/m4/version.m4: up to 1.1.1.10
external/bsd/ntp/dist/sntp/scm-rev: up to 1.1.1.5
external/bsd/ntp/dist/sntp/scripts/Makefile.am: up to 1.1.1.2
external/bsd/ntp/dist/sntp/scripts/Makefile.in: up to 1.1.1.9
external/bsd/ntp/dist/sntp/scripts/genHardFlags: up to 1.1.1.1
external/bsd/ntp/dist/sntp/sntp-opts.c: up to 1.11
external/bsd/ntp/dist/sntp/sntp-opts.h: up to 1.10
external/bsd/ntp/dist/sntp/sntp.1sntpman: up to 1.1.1.10
external/bsd/ntp/dist/sntp/sntp.1sntpmdoc: up to 1.1.1.10
external/bsd/ntp/dist/sntp/sntp.html: up to 1.1.1.12
external/bsd/ntp/dist/sntp/sntp.man.in: up to 1.1.1.10
external/bsd/ntp/dist/sntp/sntp.mdoc.in: up to 1.1.1.10
external/bsd/ntp/dist/sntp/tests/Makefile.am: up to 1.1.1.5
external/bsd/ntp/dist/sntp/tests/Makefile.in: up to 1.1.1.9
external/bsd/ntp/dist/sntp/unity/Makefile.am: up to 1.1.1.4
external/bsd/ntp/dist/sntp/unity/Makefile.in: up to 1.1.1.7
external/bsd/ntp/dist/sntp/version.c: up to 1.1.1.9
external/bsd/ntp/dist/tests/Makefile.in: up to 1.1.1.8
external/bsd/ntp/dist/tests/bug-2803/Makefile.am: up to 1.1.1.3
external/bsd/ntp/dist/tests/bug-2803/Makefile.in: up to 1.1.1.5
external/bsd/ntp/dist/tests/libntp/Makefile.am: up to 1.1.1.6
external/bsd/ntp/dist/tests/libntp/Makefile.in: up to 1.1.1.8
external/bsd/ntp/dist/tests/ntpd/Makefile.am: up to 1.1.1.4
external/bsd/ntp/dist/tests/ntpd/Makefile.in: up to 1.1.1.9
external/bsd/ntp/dist/tests/ntpq/Makefile.am: up to 1.1.1.3
external/bsd/ntp/dist/tests/ntpq/Makefile.in: up to 1.1.1.4
external/bsd/ntp/dist/tests/sandbox/Makefile.am: up to 1.1.1.3
external/bsd/ntp/dist/tests/sandbox/Makefile.in: up to 1.1.1.5
external/bsd/ntp/dist/tests/sec-2853/Makefile.am: up to 1.1.1.3
external/bsd/ntp/dist/tests/sec-2853/Makefile.in: up to 1.1.1.5
external/bsd/ntp/dist/util/Makefile.am: up to 1.1.1.6
external/bsd/ntp/dist/util/Makefile.in: up to 1.1.1.10
external/bsd/ntp/dist/util/invoke-ntp-keygen.texi: up to 1.1.1.10
external/bsd/ntp/dist/util/ntp-keygen-opts.c: up to 1.15
external/bsd/ntp/dist/util/ntp-keygen-opts.h: up to 1.10
external/bsd/ntp/dist/util/ntp-keygen.1ntp-keygenman: up to 1.1.1.10
external/bsd/ntp/dist/util/ntp-keygen.1ntp-keygenmdoc: up to 1.1.1.10
external/bsd/ntp/dist/util/ntp-keygen.c: up to 1.12
external/bsd/ntp/dist/util/ntp-keygen.html: up to 1.1.1.10
external/bsd/ntp/dist/util/ntp-keygen.man.in: up to 1.1.1.10
external/bsd/ntp/dist/util/ntp-keygen.mdoc.in: up to 1.1.1.10
external/bsd/ntp/importdate: up to 1.12
external/bsd/ntp/scripts/mkver: up to 1.13
Update ntp to 4.2.8p10.

(snj)

2017-04-20 06:27:08 UTC MAIN commitmail json YAML

Use IPSEC_DIR_IS_INOROUT (NFC)

(ozaki-r)

2017-04-20 05:48:39 UTC MAIN commitmail json YAML

Add 0x for register output.

(msaitoh)

2017-04-20 03:57:27 UTC MAIN commitmail json YAML

We cannot tollerate things like trailing /.. etc in .CURDIR
so only accept -C arg "as is" if it contains no relative components.

(sjg)

2017-04-20 03:41:47 UTC MAIN commitmail json YAML

2017-04-20 02:42:59 UTC MAIN commitmail json YAML

always notice if the device's interrupt set affinity to other than CPU#0.

suggested by msaitoh@n.o.

(knakahara)

2017-04-20 00:17:11 UTC MAIN commitmail json YAML

If we are using the pad audio device, there must be a process with
the corresponding pad device open, or we get EIO from audio accesses

Explained and fix provided by Nathanial Sloss <nat@n.o>

Note: if we are testing and using real audio hardware, the open
of /dev/pad0 is irrelevant (but harmless, so we don't attempt to
check) and what's more it doesn't matter if it succeeds or fails.

If we're testing under qemu (or any other situation where the only
audio "hardware" is pad) then the open will work, and there should be
no more EIO.

If there is no audio hardware of any kind on the system being tested,
the attempt top open /dev/mixer should fail, and the test will be
skipped.

(kre)

2017-04-19 23:41:00 UTC MAIN commitmail json YAML

Add netpgpverify to the library list.

(joerg)

2017-04-19 22:21:07 UTC MAIN commitmail json YAML

F_DUPFD* needs an argument (minfd) found by jmcneill

(christos)

2017-04-19 22:19:12 UTC bouyer-socketcan commitmail json YAML

can_mbuf_tag_clean(): make sure we won't free the tag we will reuse.
Avoid mbuf leak in error paths.

(bouyer)

2017-04-19 22:17:57 UTC bouyer-socketcan commitmail json YAML

Set rcvif before bpf_mtap

(bouyer)

2017-04-19 22:02:32 UTC jdolecek-ncq commitmail json YAML

2017-04-19 21:48:58 UTC MAIN commitmail json YAML

ld(4) already improved to arbitrary ioctls, and nvme(4) updated to support
both DIOCGCACHE and DIOCCACHESYNC

(jdolecek)

2017-04-19 21:42:39 UTC jdolecek-ncq commitmail json YAML

2017-04-19 21:02:43 UTC jdolecek-ncq commitmail json YAML

up to 65536 sectors can be transferred for LBA48 commands; adjust wdminphys()
and wdstart1() accordingly

(jdolecek)

2017-04-19 20:49:58 UTC jdolecek-ncq commitmail json YAML

bunch of random observations

(jdolecek)

2017-04-19 20:49:17 UTC jdolecek-ncq commitmail json YAML

2017-04-19 17:54:18 UTC bouyer-socketcan commitmail json YAML

Fix the reset code
clear the IFF_UP flag if we can't get the interface running.

(bouyer)

2017-04-19 17:53:32 UTC bouyer-socketcan commitmail json YAML

2017-04-19 17:52:38 UTC bouyer-socketcan commitmail json YAML

Call if_alloc_sadl() for the interface, so that getifaddrs() will find
them.

(bouyer)

2017-04-19 17:51:16 UTC bouyer-socketcan commitmail json YAML

Make output better
Fix setting timings parameters

(bouyer)

2017-04-19 17:17:18 UTC netbsd-7 commitmail json YAML

1354, 1382, 1385, 1388, 1403

(snj)

2017-04-19 17:15:18 UTC netbsd-7 commitmail json YAML

Pull up following revision(s) (requested by skrll in ticket #1403):
sys/rump/dev/lib/libugenhc/ugenhc.c: revision 1.25, 1.26
Fix order of outputs in rumpuser_open call.
Now ugenhc works again after a four-year hiatus...
--
Fix bulk xfer buffer with usedma = false.

(snj)

2017-04-19 17:09:38 UTC netbsd-7 commitmail json YAML

Pull up following revision(s) (requested by kre in ticket #1388):
bin/sh/expand.c: revision 1.102
Fix for the "${unset-var#$(cmd1)}$(cmd2)" runs the wrong command bug.
... From FreeBSD

(snj)

2017-04-19 17:06:21 UTC netbsd-7 commitmail json YAML

Pull up following revision(s) (requested by kardel in ticket #1385):
sys/dev/pci/if_wm.c: revision 1.497
PR kern/52039: use same safeguard as for the 82578

(snj)

2017-04-19 17:02:43 UTC netbsd-7 commitmail json YAML

Pull up following revision(s) (requested by phx in ticket #1382):
sys/arch/powerpc/powerpc/locore_subr.S: revision 1.55
in cpu_switchto() and the fast-softint context switch code,
put back the stwcx. instruction to clear the reservation.
we used to have this in the old cpu_switch() until it was
if-0'd in 2003 and removed completely in 2007.
this fixes hangs I've seen where a softint thread is
blocked waiting for a mutex that is not held.
this should also fix PR 44387.

(snj)

2017-04-19 16:58:28 UTC netbsd-7 commitmail json YAML

Fix fallout from ticket #1354 by applying:
sys/compat/linux/common/linux_signal.h: revision 1.32
Provide a dummy linux_sigset_t for all architectures that do not have
any machdep one. This make kdump compile again.

(snj)

2017-04-19 15:54:45 UTC MAIN commitmail json YAML

2017-04-19 15:37:46 UTC MAIN commitmail json YAML

The wiz daemon was unsatisfied with offering, so fix section heading.

(riastradh)

2017-04-19 15:34:25 UTC MAIN commitmail json YAML

2017-04-19 12:58:59 UTC MAIN commitmail json YAML

Provide a pci_intr_setattr implementation. For chipset tags that don't
implement pc_intr_setattr, simply return ENODEV.

(jmcneill)

2017-04-19 12:34:14 UTC MAIN commitmail json YAML

Initialize intr_setattr of arm32_pci_chipset

(jmcneill)

2017-04-19 12:26:00 UTC MAIN commitmail json YAML

Initialize intr_setattr of arm32_pci_chipset

(jmcneill)

2017-04-19 11:33:01 UTC MAIN commitmail json YAML

Fix typo: s/nshashtbl/nchashtbl

(abhinav)

2017-04-19 09:23:19 UTC MAIN commitmail json YAML

Reduce return points (NFC)

(ozaki-r)

2017-04-19 09:22:17 UTC MAIN commitmail json YAML

Return early, reduce identation (NFCI)

(ozaki-r)

2017-04-19 08:30:01 UTC MAIN commitmail json YAML

Use designated initialisers and fix build in process.

(skrll)

2017-04-19 07:35:45 UTC MAIN commitmail json YAML

Add another BCM4401 chip support.

(msaitoh)

2017-04-19 07:19:46 UTC MAIN commitmail json YAML

Use KASSERT for sanity checks of function arguments

(ozaki-r)

2017-04-19 07:14:45 UTC MAIN commitmail json YAML

Change ifdef DIAGNOSTIC + panic to KASSERT

(ozaki-r)

2017-04-19 06:54:15 UTC MAIN commitmail json YAML

2017-04-19 06:53:52 UTC MAIN commitmail json YAML

Add BCM4401 B0 step. Old BCM4401 B0 entry is changed to B1. From OpenBSD.

(msaitoh)

2017-04-19 06:52:11 UTC MAIN commitmail json YAML

Use macro. No binary change.

(msaitoh)

2017-04-19 06:43:05 UTC MAIN commitmail json YAML

2017-04-19 06:19:03 UTC MAIN commitmail json YAML

Be consistent about checking for text section address being 0, and
don't ignore errors by falling through to the next section(s).

As discussed on tech-kern@

(pgoyette)

2017-04-19 04:54:17 UTC MAIN commitmail json YAML

We cannot use buf as both src and destination for snprintf.

(sjg)

2017-04-19 03:43:34 UTC MAIN commitmail json YAML

Fix indentations (NFC)

(ozaki-r)

2017-04-19 03:42:11 UTC MAIN commitmail json YAML