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

2024-05-10 04:49:54 UTC Now

2017-01-23 02:32:54 UTC MAIN commitmail json YAML

Call pserialize_perform and psref_target_destroy only if NET_MPSAFE

They shouldn't be used with holding softnet_lock.

(ozaki-r)

2017-01-23 02:30:47 UTC MAIN commitmail json YAML

Add curlwp_bind

It is necessary for example when we use tun(4). Without it the following
panic occurs:

  panic: kernel diagnostic assertion "(kpreempt_disabled() || cpu_softintr_p() || ISSET(curlwp->l_pflag, LP_BOUND))" failed: file "/usr/src/sys/kern/subr_psref.c", line 291 passive references are CPU-local, but preemption is enabled and the caller is not in a softint or CPU-bound LWP
  Backtrace:
  vpanic()
  ch_voltag_convert_in()
  psref_release()
  pfil_run_arg.isra.0()
  if_initialize()
  if_attach()
  tun_clone_create()
  tunopen()
  cdev_open()
  spec_open()
  VOP_OPEN()
  vn_open()
  do_open()
  do_sys_openat()
  sys_open()
  syscall()

(ozaki-r)

2017-01-23 00:30:52 UTC MAIN commitmail json YAML

src/doc/ROADMAP deleted

Remove ROADMAP file which was last updated 9 years ago.

Our roadmap information is now kept in src/doc/roadmaps/* -- avoid confusion
by deleting out of date information.

(agc)

2017-01-23 00:21:34 UTC MAIN commitmail json YAML

Only call audio_initbufs and start playback if there were no errors.

Addresses PR kern/51707.

(nat)

2017-01-22 22:26:16 UTC MAIN commitmail json YAML

misc updates and consistency fixes

(christos)

2017-01-22 21:31:21 UTC MAIN commitmail json YAML

Fix spelling of themself

(abhinav)

2017-01-22 20:17:10 UTC MAIN commitmail json YAML

Use xpmap_pg_nx. Not tested (due to some unrelated panic I'm getting), but
obvious enough.

(maxv)

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

Put pmap_pg_nx into the dummy Xen page. While here, do some KNF and
localify a bit.

(maxv)

2017-01-22 19:52:02 UTC MAIN commitmail json YAML

Don't call initbufs before audio_set_defaults.  It is called in
audiosetinfo anyway.

Addresses PR kern/51707.

(nat)

2017-01-22 19:47:00 UTC MAIN commitmail json YAML

Mention nvidia drmkms (will be in -8, people are arguing over -7)

(dholland)

2017-01-22 19:42:48 UTC MAIN commitmail json YAML

Import xpmap_pg_nx, and put it in the per-cpu recursive slot on amd64.

(maxv)

2017-01-22 19:29:38 UTC MAIN commitmail json YAML

Restore xhci support. It is not in a release yet.

(dholland)

2017-01-22 19:24:52 UTC MAIN commitmail json YAML

Export xpmap_pg_nx, and put it in the page table pages. It does not change
anything, since Xen removes the X bit on these; but it is better for
consistency.

(maxv)

2017-01-22 17:46:20 UTC MAIN commitmail json YAML

Add TEGRA_EHCI_PHY_VBUS_WAKEUP_ID_REG and bit definitions.

(jakllsch)

2017-01-22 17:43:23 UTC MAIN commitmail json YAML

Add some SMMU registers and bit definitions.

(jakllsch)

2017-01-22 17:40:06 UTC MAIN commitmail json YAML

2017-01-22 17:39:18 UTC MAIN commitmail json YAML

Define bits in CAR_PLLP_OUTA_REG.

(jakllsch)

2017-01-22 17:27:31 UTC MAIN commitmail json YAML

Call OF to bring up the CyberPro if it's not the console.

Avoids igsfb crash later with serial console due to
inaccessible hardware.

(jakllsch)

2017-01-22 17:19:32 UTC MAIN commitmail json YAML

PR/51905: GXIO Expension boards arn't configured if GXIO_DEFAULT_EXPANSION
isn't defined. Fix a bunch of issues with the original code.

(christos)

2017-01-22 14:41:19 UTC MAIN commitmail json YAML

gdb-7.12.1 out.

(wiz)

2017-01-22 05:53:52 UTC netbsd-7 commitmail json YAML

2017-01-22 05:53:23 UTC netbsd-7-0 commitmail json YAML

2017-01-22 05:52:29 UTC netbsd-7-0 commitmail json YAML

Pull up following revision(s) (requested by aymeric/agc in ticket #1318):
crypto/external/bsd/openssh/dist/moduli: up to revision 1.8
update moduli file

(snj)

2017-01-22 05:52:14 UTC netbsd-7 commitmail json YAML

Pull up following revision(s) (requested by aymeric/agc in ticket #1318):
crypto/external/bsd/openssh/dist/moduli: up to revision 1.8
update moduli file

(snj)

2017-01-22 05:11:22 UTC MAIN commitmail json YAML

Respect coding style of upstream; revert r1.4 and put back parentheses.
No binary changes. Pointed out by mrg.

(rin)

2017-01-22 04:52:04 UTC MAIN commitmail json YAML

re-do the previous to avoid malloc/free on the same size every iteration.

with this, or the previous, 'netstat -b 1' no longer leaks memory in
-current (or any older release using sysctl for this.)

(mrg)

2017-01-22 04:26:31 UTC MAIN commitmail json YAML

2017-01-21 23:37:17 UTC MAIN commitmail json YAML

Use more specific error messages if the setting of channel parameters
fails.  Use aprint_error_dev for this.

As suggested by pgoyette@

(nat)

2017-01-21 23:03:36 UTC MAIN commitmail json YAML

Don't let set cloexec for "exec n>&1" like ksh does (but not bash). Unit
tests pass... If we don't like that, we should add some unittests that fail.

(christos)

2017-01-21 22:54:11 UTC MAIN commitmail json YAML

Don't release/reacquire thread lock during open in setup_[p/r]filters.
This can lead to panics and/or unpredictable behaviour.
Found by maya@

Addresses PR kern/51746.

(nat)

2017-01-21 22:27:43 UTC MAIN commitmail json YAML

Bump for } command fix in v_paragraph.c r1.5.

(rin)

2017-01-21 22:22:41 UTC MAIN commitmail json YAML

Add auto config for channel/hw format.

Addresses PR kern/51703.
Addresses PR kern/51760.
Addresses PR kern/51879.

(nat)

2017-01-21 22:22:28 UTC MAIN commitmail json YAML

Fix a strange corner case in } command.

When } command is executed in the last paragraph including EOF, the original vi
(traditional/SVR4) moves the cursor to the *last* character in the last line.
However, nvi moves it to the *first* character in the last line.

(rin)

2017-01-21 22:06:46 UTC MAIN commitmail json YAML

KNF; remove parentheses from return's

(rin)

2017-01-21 20:30:29 UTC MAIN commitmail json YAML

2017-01-21 20:29:38 UTC MAIN commitmail json YAML

2017-01-21 20:21:57 UTC MAIN commitmail json YAML

2017-01-21 19:37:46 UTC MAIN commitmail json YAML

This fixes a bug where mtree would use names & IDs from the host system
instead of from the build.

(jklos)

2017-01-21 15:41:55 UTC MAIN commitmail json YAML

Pull across from nick-nhusb.  This really should be fixed to use the
appropriate FDT info.  At this point this is more likely to get fixed in
HEAD than on the branch.

(skrll)

2017-01-21 12:45:22 UTC MAIN commitmail json YAML

Pull across from nick-nhusb.

Some locking fixing, MPification and an attach fix

(skrll)

2017-01-21 11:07:46 UTC MAIN commitmail json YAML

Add some checks, mostly same as in_arpinput.

(maxv)

2017-01-21 10:30:15 UTC MAIN commitmail json YAML

Merge from nick-nhusb - some MPification

(skrll)

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

2017-01-21 07:39:31 UTC MAIN commitmail json YAML

Fix a kmem_{zalloc,free} size

(skrll)

2017-01-21 05:58:49 UTC MAIN commitmail json YAML

Remove unused iwm_softc member.

(nonaka)

2017-01-21 05:54:06 UTC MAIN commitmail json YAML

PR/51797: initialize hardware completely when receiving a deauth frame from AP.

avoid "iwm0: fatal firmware error".

(nonaka)

2017-01-21 05:46:57 UTC MAIN commitmail json YAML

more block network interrupt.

(nonaka)

2017-01-21 05:43:24 UTC MAIN commitmail json YAML

increase command response timeout value.

(nonaka)

2017-01-21 05:40:47 UTC MAIN commitmail json YAML

include <sys/intr.h> for softint(9).

(nonaka)

2017-01-20 23:00:30 UTC MAIN commitmail json YAML

npfctl: fix shift/reduce conflicts, thanks to riastradh@.

(rmind)

2017-01-20 22:10:38 UTC MAIN commitmail json YAML

add a wishlist for a major bump. isinff and compatibility cabs.

(maya)

2017-01-20 21:15:56 UTC MAIN commitmail json YAML

use isinf instead of isinff. this doesn't introduce a functional change -
isinf works for float as well, and is more portable.

from Ngie Cooper in PR bin/51838

(maya)

2017-01-20 19:21:01 UTC MAIN commitmail json YAML

Make sure the protocol address length equals that of IPv4. Also, make sure
the hardware address length equals that of the interface we received the
packet on. Otherwise a packet could easily set them both to zero and make
the kernel read beyond the allocated mbuf, which is terrible.

Note: for the latter we drop the packet instead of replying, since it is
malformed.

Note: I also added an ugly hack in CARP, since it apparently expects at
least six bytes.

(maxv)

2017-01-20 17:50:52 UTC MAIN commitmail json YAML

2017-01-20 17:45:42 UTC MAIN commitmail json YAML

Reput a nullcheck that was mistakenly removed in rev1.204. ar_hrd is
packet-controlled.

(maxv)

2017-01-20 16:54:11 UTC MAIN commitmail json YAML

2017-01-20 16:14:44 UTC MAIN commitmail json YAML

Fix typo: s/suport/support

(abhinav)

2017-01-20 12:25:07 UTC MAIN commitmail json YAML

2017-01-20 09:45:13 UTC MAIN commitmail json YAML

2017-01-20 08:48:14 UTC MAIN commitmail json YAML

Bump date for previous.

(wiz)

2017-01-20 08:35:33 UTC MAIN commitmail json YAML

Protect if_clone data with if_clone_mtx

To this end, carpattach needs to be delayed from RUMP_COMPONENT_NET to
RUMP_COMPONENT_NET_IF on rump_server. Otherwise mutex_enter via carpattach
for if_clone_mtx is called before mutex_init for it in ifinit1.

(ozaki-r)

2017-01-20 08:16:31 UTC MAIN commitmail json YAML

Simplify getiobuf.  buf_init already does bp->b_objlock == &buffer_lock

(skrll)

2017-01-20 03:16:40 UTC MAIN commitmail json YAML

Add missing ; - hopefully unbreak build.

(kre)

2017-01-20 02:25:24 UTC MAIN commitmail json YAML

don't memcpy overlapping buffers, use memmove.
this is undefined behaviour.
CID 1299069

(maya)

2017-01-20 02:22:42 UTC MAIN commitmail json YAML

kassert that we aren't overflowing the array.

this assert isn't expected to trigger due to current parameters used, but
to be sure, check.

(maya)

2017-01-20 00:29:28 UTC MAIN commitmail json YAML

2017-01-19 23:51:16 UTC MAIN commitmail json YAML

2017-01-19 23:50:32 UTC MAIN commitmail json YAML

hook in EXA acceleration for 65550 / HiQV chips
mostly for rev. 4 sharks
also, default to 16bit colour since these chips really don't like higher depth
all that much

(macallan)

2017-01-19 20:35:44 UTC MAIN commitmail json YAML

2017-01-19 20:18:18 UTC MAIN commitmail json YAML

npfctl:
- Add protocol filter option for "map".
- Print user-friendly error if table contains an entry with invalid netmask.
- Add support for inline ports.

(rmind)

2017-01-19 19:09:06 UTC MAIN commitmail json YAML

Add single and multi-mode fiber

(ginsbach)

2017-01-19 16:05:00 UTC MAIN commitmail json YAML

2017-01-19 11:24:05 UTC MAIN commitmail json YAML

newstate should be blocked network interrupt, because it called iwm_start.

(nonaka)

2017-01-19 11:10:38 UTC MAIN commitmail json YAML

restrict psabi warning hack to gcc, it doesn't exist in clang.

should help i386 llvm builds

(maya)

2017-01-19 09:42:08 UTC MAIN commitmail json YAML

Reduce diff against FreeBSD. No functional change.

(msaitoh)

2017-01-19 06:58:55 UTC MAIN commitmail json YAML

Disable rt_update mechanism by default

This is a workaround for PR kern/51877. Enable again once the issue
is fixed.

(ozaki-r)

2017-01-19 06:56:33 UTC MAIN commitmail json YAML

2017-01-19 06:45:34 UTC netbsd-7-nhusb commitmail json YAML

2017-01-19 06:45:07 UTC netbsd-7-nhusb commitmail json YAML

2017-01-19 03:39:16 UTC MAIN commitmail json YAML

Add and tweak some cryptography entries.

(riastradh)

2017-01-19 03:25:34 UTC MAIN commitmail json YAML

NFCI no functional change intended

(Not to be taken literally about this commit!)

(riastradh)

2017-01-19 00:44:40 UTC MAIN commitmail json YAML

2017-01-18 22:38:00 UTC MAIN commitmail json YAML

Fix couple of typos:
s/intractible/intractable
s/contiuously/continuously

(abhinav)

2017-01-18 22:07:26 UTC MAIN commitmail json YAML

Fix typo: s/forwared/forwarded
Also remove full stop from the date.

(abhinav)

2017-01-18 21:33:26 UTC MAIN commitmail json YAML

be more specific when identifying SuperSPARC CPUs

(macallan)

2017-01-18 18:39:56 UTC MAIN commitmail json YAML

Remove xhci... It exists. It works (ymmv). It can be improved, but it
doesn't needed an entry here.

(skrll)

2017-01-18 18:22:13 UTC MAIN commitmail json YAML

Withdraw the 36-bit port item. While there's always interest in it
when the idea comes up on the list, there's also a feeling that
quixotic and/or crazy projects shouldn't be on roadmaps. Which seems
reasonable.

(dholland)

2017-01-18 17:29:52 UTC MAIN commitmail json YAML

DNFT: do not feed troll

(riastradh)

2017-01-18 12:15:21 UTC MAIN commitmail json YAML

Fix bug with swapped event type and register that fired in hw watchpoints

Swap bits for DR_EVENT_MASK and DR_REGISTER_MASK.

Sponsored by <The NetBSD Foundation>

(kamil)

2017-01-18 10:22:09 UTC MAIN commitmail json YAML

Now we can use multiqueue. It's default on ixg(4). Not yet for ixv(4).

(msaitoh)

2017-01-18 10:18:40 UTC MAIN commitmail json YAML

Fix sysctl stuff. Make the top sysctl node and keep the pointer.

(msaitoh)

2017-01-18 08:46:48 UTC netbsd-7-nhusb commitmail json YAML

src/common/lib/libc/stdlib/_strtoul.h@1.7.10.1 / diff / nxr@1.7.10.1
src/crypto/external/bsd/openssl/dist/CHANGES@1.1.1.11.2.6.2.1 / diff / nxr@1.1.1.11.2.6.2.1
src/crypto/external/bsd/openssl/dist/CONTRIBUTING@1.1.1.1.2.2.2.1 / diff / nxr@1.1.1.1.2.2.2.1
src/crypto/external/bsd/openssl/dist/Configure@1.8.2.5.2.1 / diff / nxr@1.8.2.5.2.1
src/crypto/external/bsd/openssl/dist/Makefile@1.2.2.6.2.1 / diff / nxr@1.2.2.6.2.1
src/crypto/external/bsd/openssl/dist/NEWS@1.1.1.9.2.6.2.1 / diff / nxr@1.1.1.9.2.6.2.1
src/crypto/external/bsd/openssl/dist/README@1.1.1.10.2.6.2.1 / diff / nxr@1.1.1.10.2.6.2.1
src/crypto/external/bsd/openssl/dist/apps/apps.c@1.1.1.8.2.3.2.1 / diff / nxr@1.1.1.8.2.3.2.1
src/crypto/external/bsd/openssl/dist/apps/enc.c@1.1.1.6.2.2.4.1 / diff / nxr@1.1.1.6.2.2.4.1
src/crypto/external/bsd/openssl/dist/apps/passwd.c@1.1.1.1.26.1.4.1 / diff / nxr@1.1.1.1.26.1.4.1
src/crypto/external/bsd/openssl/dist/apps/s_server.c@1.6.2.4.2.1 / diff / nxr@1.6.2.4.2.1
src/crypto/external/bsd/openssl/dist/apps/x509.c@1.1.1.6.10.2.2.1 / diff / nxr@1.1.1.6.10.2.2.1
src/crypto/external/bsd/openssl/dist/crypto/asn1/a_bytes.c@1.1.1.1.26.2.2.1 / diff / nxr@1.1.1.1.26.2.2.1
src/crypto/external/bsd/openssl/dist/crypto/asn1/a_object.c@1.1.1.5.2.1.4.1 / diff / nxr@1.1.1.5.2.1.4.1
src/crypto/external/bsd/openssl/dist/crypto/asn1/a_set.c@1.1.1.2.26.1.4.1 / diff / nxr@1.1.1.2.26.1.4.1
src/crypto/external/bsd/openssl/dist/crypto/asn1/asn1_lib.c@1.1.1.2.2.2.2.1 / diff / nxr@1.1.1.2.2.2.2.1
src/crypto/external/bsd/openssl/dist/crypto/asn1/asn_mime.c@1.4.2.2.4.1 / diff / nxr@1.4.2.2.4.1
src/crypto/external/bsd/openssl/dist/crypto/asn1/d2i_pr.c@1.1.1.1.26.2.2.1 / diff / nxr@1.1.1.1.26.2.2.1
src/crypto/external/bsd/openssl/dist/crypto/asn1/f_enum.c@1.1.1.1.26.1.4.1 / diff / nxr@1.1.1.1.26.1.4.1
src/crypto/external/bsd/openssl/dist/crypto/asn1/f_int.c@1.1.1.1.26.1.4.1 / diff / nxr@1.1.1.1.26.1.4.1
      :
(more 1541 files)
Sync with netbsd-5

(skrll)

2017-01-18 08:23:03 UTC MAIN commitmail json YAML

Use 64bit DMA tag. If not, a lot of bounce buffer is allocated.
Fixes PR#49968 reported by Hauke.

XXX pullup-[67].

(msaitoh)

2017-01-18 08:15:22 UTC MAIN commitmail json YAML

Call ixgbe_free_transmit_buffers instead of ixgbe_free_transmit_structures()
in ixgbe_allocate_transmit_buffers()...

(msaitoh)

2017-01-18 06:02:50 UTC MAIN commitmail json YAML

- Move __DDR4_VALUE()'s comment to the correct position.
- s/ftp/ftb/. No functional change.

(msaitoh)

2017-01-18 05:48:16 UTC MAIN commitmail json YAML

Remove assert that Debug Registers are not mixed with Debug Trap Flag

New code is designed to mix them.

Sponsored by <The NetBSD Foundation>

(kamil)

2017-01-18 05:14:34 UTC MAIN commitmail json YAML

Use siginfo_t to validate tests/kernel/arch/amd64/t_ptrace_wait*

This change makes sure that the fired expected watchpoint with expected
property. It's done with PT_GET_SIGINFO and checking SIGTRAP codes.

Sponsored by <The NetBSD Foundation>

(kamil)

2017-01-18 05:12:00 UTC MAIN commitmail json YAML

Embed hardware trap and its type that fired (x86), information for tracers

Now x86 throws SIGTRAP on hardware exception with:
- si_code TRAP_HWWPT - dedicated for hw assisted watchpoint interface
- si_trap - unchanged (T_TRCTRAP)
- si_trap2 - watchpoint number that fired
- si_trap3 - watchpoint specific event description

x86 returns in si_trap3 one of the field from <x86/dbregs.h>
- X86_HW_WATCHPOINT_EVENT_FIRED - watchpoint fired
- X86_HW_WATCHPOINT_EVENT_FIRED_AND_SSTEP - watchpoint fired under PT_STEP

Othe changes:
- restrict more code from <x86/dbregs.h> to _KERNEL

Sponsored bt <The NetBSD Foundation>

(kamil)

2017-01-18 02:33:25 UTC MAIN commitmail json YAML

Resort _MKVARS.no

(matt)

2017-01-17 15:28:34 UTC MAIN commitmail json YAML

use ULL so this doesn't break on 32bit builds... sorry

(maya)

2017-01-17 13:13:07 UTC MAIN commitmail json YAML

define constants as being wider than int when needed, instead of casting
them at use. makes compilers happier.

(maya)

2017-01-17 12:49:27 UTC MAIN commitmail json YAML

2017-01-17 12:48:39 UTC MAIN commitmail json YAML

2017-01-17 11:09:36 UTC MAIN commitmail json YAML

avoid conversion warnings

(rin)

2017-01-17 11:09:11 UTC MAIN commitmail json YAML

Don't randomly break the build and restrict -Wsystem-headers to gcc.

(joerg)

2017-01-17 11:08:50 UTC MAIN commitmail json YAML

remove unnecessary cast, KNF

(rin)

2017-01-17 08:47:32 UTC MAIN commitmail json YAML

show NVM channel flags when AB_DEBUG is set.

(nonaka)

2017-01-17 08:44:31 UTC MAIN commitmail json YAML

more acknowledge interrupts from iwn(4).

(nonaka)

2017-01-17 08:35:16 UTC MAIN commitmail json YAML

only bus_dmamap_sync(9) once for ICT region.

(nonaka)

2017-01-17 08:10:37 UTC MAIN commitmail json YAML

Fix build (undefined reference to `rumpns_pfil_init' on usr.sbin/puffs/rump_nfs)

(ozaki-r)

2017-01-17 07:53:06 UTC MAIN commitmail json YAML

Fix typo in comments

(ozaki-r)

2017-01-17 02:03:09 UTC MAIN commitmail json YAML

2017-01-17 02:02:27 UTC MAIN commitmail json YAML

pfile_init earlier (not here)

(christos)

2017-01-17 01:25:22 UTC MAIN commitmail json YAML

Fix unlocking in vioif_rx_filter

(ozaki-r)

2017-01-17 01:24:44 UTC MAIN commitmail json YAML

Fix build w/ SCTP and w/o SCTP_DEBUG

(ozaki-r)

2017-01-16 23:22:19 UTC MAIN commitmail json YAML

expat 2.2.0 is out

(snj)

2017-01-16 21:35:59 UTC MAIN commitmail json YAML

Refactor ptrace_watchpoint structure to allow extensions

Add new field pw_type in the ptrace_watchpoint structure.

amd64 and i386 offer the current set of watchpoints as
PTRACE_PW_TYPE_DBREGS.

On other archs than x86, there are readily available different types of
hardware assisted watchpoints like for code-only or data-only registers on
ARM. Also in future there is an option to implement MMU-based watchpoints
and future per-port or per-cpu extensions.

Next step is to alter this interface on x86 to generate SIGTRAP with
si_code TRAP_HWWTRAP with additional information on occurred event:
- which watchpoint fired,
- additional watchpoint-type specific information, like on amd64 with
  PTRACE_PW_TYPE_DBREGS.:
  * only watchpoint fired
  * watchpoint fired and single step occurred

Adjust ATF tests for the pw_type change.

Sponsored by <The NetBSD Foundation>

(kamil)

2017-01-16 21:19:35 UTC MAIN commitmail json YAML

Allow to mix single-step with hardware assisted watchpoints on amd64

This case needs new handling in trap recognition.

Sponsored by <The NetBSD Foundation>

(kamil)

2017-01-16 21:19:14 UTC MAIN commitmail json YAML

Allow to mix single-step with hardware assisted watchpoints on i386

This case needs new handling in trap recognition.

Sponsored by <The NetBSD Foundation>

(kamil)

2017-01-16 19:15:28 UTC MAIN commitmail json YAML

add _PATH_DEVZERO

(christos)

2017-01-16 19:07:06 UTC MAIN commitmail json YAML

2017-01-16 18:04:27 UTC bouyer-socketcan commitmail json YAML

Adapt to CAN_RAW_RECV_OWN_MSGS being off by default, and test
CAN_RAW_RECV_OWN_MSGS and CAN_RAW_LOOPBACK options.

(bouyer)

2017-01-16 18:03:38 UTC bouyer-socketcan commitmail json YAML

Use PACKET_TAG_SO to store the sender's struct socket pointer, and use
it to implement socket options CAN_RAW_LOOPBACK and CAN_RAW_RECV_OWN_MSGS.

(bouyer)

2017-01-16 18:02:00 UTC bouyer-socketcan commitmail json YAML

Add PACKET_TAG_SO tag type, so store a pointer the sender struct socket.

(bouyer)

2017-01-16 17:43:05 UTC MAIN commitmail json YAML

2017-01-16 17:42:52 UTC MAIN commitmail json YAML

Add a Makefile to rebuild the syscall files for all emulations

(christos)

2017-01-16 17:39:59 UTC MAIN commitmail json YAML

2017-01-16 17:39:22 UTC MAIN commitmail json YAML

2017-01-16 17:37:29 UTC MAIN commitmail json YAML

Don't re-define rules for subdir Makefile

(christos)

2017-01-16 16:35:57 UTC MAIN commitmail json YAML

PR/51894: Ngie Cooper: Use /dev/zero to read instead of stdin

(christos)

2017-01-16 16:34:24 UTC MAIN commitmail json YAML

PR/51893: Ngie Cooper: prevent toolchain from optimizing out memset call

(christos)

2017-01-16 16:32:13 UTC MAIN commitmail json YAML

PR/51892: Ngie Cooper: add __unused to `osi` in the sigaction handler

(christos)

2017-01-16 16:31:05 UTC MAIN commitmail json YAML

PR/51891: Ngie Cooper: use sys/disklabel.h instead of machine/disklabel.h

(christos)

2017-01-16 16:29:54 UTC MAIN commitmail json YAML

PR/51885: Ngie Cooper: Add delays to avoid races.

(christos)

2017-01-16 16:29:19 UTC MAIN commitmail json YAML

PR/51884: Ngie Cooper: Include and message fixes

(christos)

2017-01-16 16:28:27 UTC MAIN commitmail json YAML

PR/51886: Ngie Cooper: Use _exit instead of exit

(christos)

2017-01-16 16:27:43 UTC MAIN commitmail json YAML

PR/51887: Ngie Cooper: Include and error message fixes

(christos)

2017-01-16 16:27:06 UTC MAIN commitmail json YAML

PR/51890: Ngie Cooper: include and error message fixes.

(christos)

2017-01-16 16:23:41 UTC MAIN commitmail json YAML

PR/51888: Ngie Cooper: more error checking, missing includes

(christos)

2017-01-16 16:22:22 UTC MAIN commitmail json YAML

PR/51889: Ngie Cooper: add sys/time.h

(christos)

2017-01-16 15:46:19 UTC MAIN commitmail json YAML

2017-01-16 15:44:47 UTC MAIN commitmail json YAML

2017-01-16 15:44:05 UTC MAIN commitmail json YAML

2017-01-16 15:14:16 UTC MAIN commitmail json YAML

rename arplog -> ARPLOG to make it clear that it is a macro and tuck-in the
buffer used for address formatting.

(christos)

2017-01-16 12:54:25 UTC MAIN commitmail json YAML

Last Nm macro line must not end with a comma.

(njoly)

2017-01-16 12:50:14 UTC MAIN commitmail json YAML

Add missing comma in NAME section.

(njoly)

2017-01-16 12:05:40 UTC MAIN commitmail json YAML

FSINCOS: Fix register address which writes cosine value back.

(isaki)

2017-01-16 11:57:32 UTC netbsd-7-0 commitmail json YAML

2017-01-16 11:56:45 UTC netbsd-7-0 commitmail json YAML

src/doc/3RDPARTY@1.1145.2.18.2.12 / diff / nxr@1.1145.2.18.2.12
src/external/bsd/bind/Makefile.inc@1.21.2.1.2.3 / diff / nxr@1.21.2.1.2.3
src/external/bsd/bind/dist/CHANGES@1.12.2.5.2.4 / diff / nxr@1.12.2.5.2.4
src/external/bsd/bind/dist/README@1.1.1.14.2.5.2.4 / diff / nxr@1.1.1.14.2.5.2.4
src/external/bsd/bind/dist/bin/tests/system/dname/ns2/example.db@1.1.1.2.14.1 / diff / nxr@1.1.1.2.14.1
src/external/bsd/bind/dist/bin/tests/system/dname/tests.sh@1.1.1.3.12.1 / diff / nxr@1.1.1.3.12.1
src/external/bsd/bind/dist/contrib/zkt-1.1.2/examples/flat/zkt-ls deleted
src/external/bsd/bind/dist/contrib/zkt-1.1.2/examples/flat/zkt-signer deleted
src/external/bsd/bind/dist/contrib/zkt-1.1.2/examples/hierarchical/zkt-ls deleted
src/external/bsd/bind/dist/contrib/zkt-1.1.2/examples/hierarchical/zkt-signer deleted
src/external/bsd/bind/dist/doc/arm/Bv9ARM.ch01.html@1.1.1.11.2.4.2.4 / diff / nxr@1.1.1.11.2.4.2.4
src/external/bsd/bind/dist/doc/arm/Bv9ARM.ch02.html@1.1.1.8.2.4.2.4 / diff / nxr@1.1.1.8.2.4.2.4
src/external/bsd/bind/dist/doc/arm/Bv9ARM.ch03.html@1.1.1.13.2.4.2.4 / diff / nxr@1.1.1.13.2.4.2.4
src/external/bsd/bind/dist/doc/arm/Bv9ARM.ch04.html@1.1.1.15.2.5.2.4 / diff / nxr@1.1.1.15.2.5.2.4
src/external/bsd/bind/dist/doc/arm/Bv9ARM.ch05.html@1.1.1.14.2.4.2.4 / diff / nxr@1.1.1.14.2.4.2.4
src/external/bsd/bind/dist/doc/arm/Bv9ARM.ch06.html@1.1.1.15.2.5.2.4 / diff / nxr@1.1.1.15.2.5.2.4
src/external/bsd/bind/dist/doc/arm/Bv9ARM.ch07.html@1.1.1.15.2.5.2.4 / diff / nxr@1.1.1.15.2.5.2.4
src/external/bsd/bind/dist/doc/arm/Bv9ARM.ch08.html@1.1.1.15.2.5.2.4 / diff / nxr@1.1.1.15.2.5.2.4
src/external/bsd/bind/dist/doc/arm/Bv9ARM.ch09.html@1.1.1.15.2.5.2.4 / diff / nxr@1.1.1.15.2.5.2.4
src/external/bsd/bind/dist/doc/arm/Bv9ARM.ch10.html@1.1.1.10.2.4.2.4 / diff / nxr@1.1.1.10.2.4.2.4
      :
(more 44 files)
Pull up following revision(s) (requested by snj in ticket #1348):
doc/3RDPARTY: 1.1397 via patch
external/bsd/bind/Makefile.inc: up to 1.24 via patch
external/bsd/bind/dist/CHANGES: up to 1.24
external/bsd/bind/dist/README: up to 1.12
external/bsd/bind/dist/bin/tests/system/dname/ns2/example.db: up to 1.1.1.3
external/bsd/bind/dist/bin/tests/system/dname/tests.sh: up to 1.1.1.4
external/bsd/bind/dist/contrib/zkt-1.1.2/examples/flat/zkt-ls delete
external/bsd/bind/dist/contrib/zkt-1.1.2/examples/flat/zkt-signer delete
external/bsd/bind/dist/contrib/zkt-1.1.2/examples/hierarchical/zkt-ls delete
external/bsd/bind/dist/contrib/zkt-1.1.2/examples/hierarchical/zkt-signer delete
external/bsd/bind/dist/doc/arm/Bv9ARM.ch01.html: up to 1.1.1.22
external/bsd/bind/dist/doc/arm/Bv9ARM.ch02.html: up to 1.1.1.19
external/bsd/bind/dist/doc/arm/Bv9ARM.ch03.html: up to 1.1.1.24
external/bsd/bind/dist/doc/arm/Bv9ARM.ch04.html: up to 1.12
external/bsd/bind/dist/doc/arm/Bv9ARM.ch05.html: up to 1.1.1.25
external/bsd/bind/dist/doc/arm/Bv9ARM.ch06.html: up to 1.12
external/bsd/bind/dist/doc/arm/Bv9ARM.ch07.html: up to 1.12
external/bsd/bind/dist/doc/arm/Bv9ARM.ch08.html: up to 1.12
external/bsd/bind/dist/doc/arm/Bv9ARM.ch09.html: up to 1.12
external/bsd/bind/dist/doc/arm/Bv9ARM.ch10.html: up to 1.1.1.21
external/bsd/bind/dist/doc/arm/Bv9ARM.ch11.html: up to 1.1.1.10
external/bsd/bind/dist/doc/arm/Bv9ARM.ch12.html: up to 1.1.1.10
external/bsd/bind/dist/doc/arm/Bv9ARM.ch13.html: up to 1.1.1.10
external/bsd/bind/dist/doc/arm/Bv9ARM.html: up to 1.12
external/bsd/bind/dist/doc/arm/man.arpaname.html: up to 1.12
external/bsd/bind/dist/doc/arm/man.ddns-confgen.html: up to 1.12
external/bsd/bind/dist/doc/arm/man.delv.html: up to 1.12
external/bsd/bind/dist/doc/arm/man.dig.html: up to 1.12
external/bsd/bind/dist/doc/arm/man.dnssec-checkds.html: up to 1.12
external/bsd/bind/dist/doc/arm/man.dnssec-coverage.html: up to 1.12
external/bsd/bind/dist/doc/arm/man.dnssec-dsfromkey.html: up to 1.12
external/bsd/bind/dist/doc/arm/man.dnssec-importkey.html: up to 1.12
external/bsd/bind/dist/doc/arm/man.dnssec-keyfromlabel.html: up to 1.12
external/bsd/bind/dist/doc/arm/man.dnssec-keygen.html: up to 1.12
external/bsd/bind/dist/doc/arm/man.dnssec-revoke.html: up to 1.12
external/bsd/bind/dist/doc/arm/man.dnssec-settime.html: up to 1.12
external/bsd/bind/dist/doc/arm/man.dnssec-signzone.html: up to 1.12
external/bsd/bind/dist/doc/arm/man.dnssec-verify.html: up to 1.12
external/bsd/bind/dist/doc/arm/man.genrandom.html: up to 1.12
external/bsd/bind/dist/doc/arm/man.host.html: up to 1.12
external/bsd/bind/dist/doc/arm/man.isc-hmac-fixup.html: up to 1.12
external/bsd/bind/dist/doc/arm/man.lwresd.html: up to 1.1.1.4
external/bsd/bind/dist/doc/arm/man.named-checkconf.html: up to 1.12
external/bsd/bind/dist/doc/arm/man.named-checkzone.html: up to 1.12
external/bsd/bind/dist/doc/arm/man.named-journalprint.html: up to 1.12
external/bsd/bind/dist/doc/arm/man.named-rrchecker.html: up to 1.12
external/bsd/bind/dist/doc/arm/man.named.conf.html: up to 1.1.1.4
external/bsd/bind/dist/doc/arm/man.named.html: up to 1.12
external/bsd/bind/dist/doc/arm/man.nsec3hash.html: up to 1.12
external/bsd/bind/dist/doc/arm/man.nsupdate.html: up to 1.12
external/bsd/bind/dist/doc/arm/man.rndc-confgen.html: up to 1.12
external/bsd/bind/dist/doc/arm/man.rndc.conf.html: up to 1.12
external/bsd/bind/dist/doc/arm/man.rndc.html: up to 1.12
external/bsd/bind/dist/doc/arm/notes.html: up to 1.1.1.10
external/bsd/bind/dist/doc/arm/notes.pdf: up to 1.1.1.10
external/bsd/bind/dist/doc/arm/notes.xml: up to 1.1.1.10
external/bsd/bind/dist/lib/dns/api: up to 1.12
external/bsd/bind/dist/lib/dns/message.c: up to 1.21
external/bsd/bind/dist/lib/dns/resolver.c: up to 1.28
external/bsd/bind/dist/lib/isc/api: up to 1.1.1.21
external/bsd/bind/dist/lib/isc/unix/socket.c: up to 1.20
external/bsd/bind/dist/lib/isc/win32/socket.c: up to 1.12
external/bsd/bind/dist/srcid: up to 1.18
external/bsd/bind/dist/version: up to 1.22
external/bsd/bind/include/isc/platform.h: up to 1.22 via patch
Update BIND to 9.10.4-P5, fixing CVE-2016-9131, CVE-2016-9147,
and CVE-2016-9444.

(martin)

2017-01-16 11:55:47 UTC netbsd-7 commitmail json YAML

2017-01-16 11:54:45 UTC netbsd-7 commitmail json YAML

src/doc/3RDPARTY@1.1145.2.33 / diff / nxr@1.1145.2.33
src/external/bsd/bind/Makefile.inc@1.21.2.4 / diff / nxr@1.21.2.4
src/external/bsd/bind/dist/CHANGES@1.12.2.9 / diff / nxr@1.12.2.9
src/external/bsd/bind/dist/README@1.1.1.14.2.9 / diff / nxr@1.1.1.14.2.9
src/external/bsd/bind/dist/bin/tests/system/dname/ns2/example.db@1.1.1.2.12.1 / diff / nxr@1.1.1.2.12.1
src/external/bsd/bind/dist/bin/tests/system/dname/tests.sh@1.1.1.3.10.1 / diff / nxr@1.1.1.3.10.1
src/external/bsd/bind/dist/contrib/zkt-1.1.2/examples/flat/zkt-ls deleted
src/external/bsd/bind/dist/contrib/zkt-1.1.2/examples/flat/zkt-signer deleted
src/external/bsd/bind/dist/contrib/zkt-1.1.2/examples/hierarchical/zkt-ls deleted
src/external/bsd/bind/dist/contrib/zkt-1.1.2/examples/hierarchical/zkt-signer deleted
src/external/bsd/bind/dist/doc/arm/Bv9ARM.ch01.html@1.1.1.11.2.8 / diff / nxr@1.1.1.11.2.8
src/external/bsd/bind/dist/doc/arm/Bv9ARM.ch02.html@1.1.1.8.2.8 / diff / nxr@1.1.1.8.2.8
src/external/bsd/bind/dist/doc/arm/Bv9ARM.ch03.html@1.1.1.13.2.8 / diff / nxr@1.1.1.13.2.8
src/external/bsd/bind/dist/doc/arm/Bv9ARM.ch04.html@1.1.1.15.2.9 / diff / nxr@1.1.1.15.2.9
src/external/bsd/bind/dist/doc/arm/Bv9ARM.ch05.html@1.1.1.14.2.8 / diff / nxr@1.1.1.14.2.8
src/external/bsd/bind/dist/doc/arm/Bv9ARM.ch06.html@1.1.1.15.2.9 / diff / nxr@1.1.1.15.2.9
src/external/bsd/bind/dist/doc/arm/Bv9ARM.ch07.html@1.1.1.15.2.9 / diff / nxr@1.1.1.15.2.9
src/external/bsd/bind/dist/doc/arm/Bv9ARM.ch08.html@1.1.1.15.2.9 / diff / nxr@1.1.1.15.2.9
src/external/bsd/bind/dist/doc/arm/Bv9ARM.ch09.html@1.1.1.15.2.9 / diff / nxr@1.1.1.15.2.9
src/external/bsd/bind/dist/doc/arm/Bv9ARM.ch10.html@1.1.1.10.2.8 / diff / nxr@1.1.1.10.2.8
      :
(more 44 files)
Pull up following revision(s) (requested by snj in ticket #1348):
doc/3RDPARTY: 1.1397 via patch
external/bsd/bind/Makefile.inc: up to 1.24 via patch
external/bsd/bind/dist/CHANGES: up to 1.24
external/bsd/bind/dist/README: up to 1.12
external/bsd/bind/dist/bin/tests/system/dname/ns2/example.db: up to 1.1.1.3
external/bsd/bind/dist/bin/tests/system/dname/tests.sh: up to 1.1.1.4
external/bsd/bind/dist/contrib/zkt-1.1.2/examples/flat/zkt-ls delete
external/bsd/bind/dist/contrib/zkt-1.1.2/examples/flat/zkt-signer delete
external/bsd/bind/dist/contrib/zkt-1.1.2/examples/hierarchical/zkt-ls delete
external/bsd/bind/dist/contrib/zkt-1.1.2/examples/hierarchical/zkt-signer delete
external/bsd/bind/dist/doc/arm/Bv9ARM.ch01.html: up to 1.1.1.22
external/bsd/bind/dist/doc/arm/Bv9ARM.ch02.html: up to 1.1.1.19
external/bsd/bind/dist/doc/arm/Bv9ARM.ch03.html: up to 1.1.1.24
external/bsd/bind/dist/doc/arm/Bv9ARM.ch04.html: up to 1.12
external/bsd/bind/dist/doc/arm/Bv9ARM.ch05.html: up to 1.1.1.25
external/bsd/bind/dist/doc/arm/Bv9ARM.ch06.html: up to 1.12
external/bsd/bind/dist/doc/arm/Bv9ARM.ch07.html: up to 1.12
external/bsd/bind/dist/doc/arm/Bv9ARM.ch08.html: up to 1.12
external/bsd/bind/dist/doc/arm/Bv9ARM.ch09.html: up to 1.12
external/bsd/bind/dist/doc/arm/Bv9ARM.ch10.html: up to 1.1.1.21
external/bsd/bind/dist/doc/arm/Bv9ARM.ch11.html: up to 1.1.1.10
external/bsd/bind/dist/doc/arm/Bv9ARM.ch12.html: up to 1.1.1.10
external/bsd/bind/dist/doc/arm/Bv9ARM.ch13.html: up to 1.1.1.10
external/bsd/bind/dist/doc/arm/Bv9ARM.html: up to 1.12
external/bsd/bind/dist/doc/arm/man.arpaname.html: up to 1.12
external/bsd/bind/dist/doc/arm/man.ddns-confgen.html: up to 1.12
external/bsd/bind/dist/doc/arm/man.delv.html: up to 1.12
external/bsd/bind/dist/doc/arm/man.dig.html: up to 1.12
external/bsd/bind/dist/doc/arm/man.dnssec-checkds.html: up to 1.12
external/bsd/bind/dist/doc/arm/man.dnssec-coverage.html: up to 1.12
external/bsd/bind/dist/doc/arm/man.dnssec-dsfromkey.html: up to 1.12
external/bsd/bind/dist/doc/arm/man.dnssec-importkey.html: up to 1.12
external/bsd/bind/dist/doc/arm/man.dnssec-keyfromlabel.html: up to 1.12
external/bsd/bind/dist/doc/arm/man.dnssec-keygen.html: up to 1.12
external/bsd/bind/dist/doc/arm/man.dnssec-revoke.html: up to 1.12
external/bsd/bind/dist/doc/arm/man.dnssec-settime.html: up to 1.12
external/bsd/bind/dist/doc/arm/man.dnssec-signzone.html: up to 1.12
external/bsd/bind/dist/doc/arm/man.dnssec-verify.html: up to 1.12
external/bsd/bind/dist/doc/arm/man.genrandom.html: up to 1.12
external/bsd/bind/dist/doc/arm/man.host.html: up to 1.12
external/bsd/bind/dist/doc/arm/man.isc-hmac-fixup.html: up to 1.12
external/bsd/bind/dist/doc/arm/man.lwresd.html: up to 1.1.1.4
external/bsd/bind/dist/doc/arm/man.named-checkconf.html: up to 1.12
external/bsd/bind/dist/doc/arm/man.named-checkzone.html: up to 1.12
external/bsd/bind/dist/doc/arm/man.named-journalprint.html: up to 1.12
external/bsd/bind/dist/doc/arm/man.named-rrchecker.html: up to 1.12
external/bsd/bind/dist/doc/arm/man.named.conf.html: up to 1.1.1.4
external/bsd/bind/dist/doc/arm/man.named.html: up to 1.12
external/bsd/bind/dist/doc/arm/man.nsec3hash.html: up to 1.12
external/bsd/bind/dist/doc/arm/man.nsupdate.html: up to 1.12
external/bsd/bind/dist/doc/arm/man.rndc-confgen.html: up to 1.12
external/bsd/bind/dist/doc/arm/man.rndc.conf.html: up to 1.12
external/bsd/bind/dist/doc/arm/man.rndc.html: up to 1.12
external/bsd/bind/dist/doc/arm/notes.html: up to 1.1.1.10
external/bsd/bind/dist/doc/arm/notes.pdf: up to 1.1.1.10
external/bsd/bind/dist/doc/arm/notes.xml: up to 1.1.1.10
external/bsd/bind/dist/lib/dns/api: up to 1.12
external/bsd/bind/dist/lib/dns/message.c: up to 1.21
external/bsd/bind/dist/lib/dns/resolver.c: up to 1.28
external/bsd/bind/dist/lib/isc/api: up to 1.1.1.21
external/bsd/bind/dist/lib/isc/unix/socket.c: up to 1.20
external/bsd/bind/dist/lib/isc/win32/socket.c: up to 1.12
external/bsd/bind/dist/srcid: up to 1.18
external/bsd/bind/dist/version: up to 1.22
external/bsd/bind/include/isc/platform.h: up to 1.22 via patch
Update BIND to 9.10.4-P5, fixing CVE-2016-9131, CVE-2016-9147,
and CVE-2016-9444.

(martin)

2017-01-16 10:15:42 UTC MAIN commitmail json YAML

Correct definitions for TCR.

Values from ARM Cortex A-53 MPCore Processor Technical Reference Manual
4.3.48. Translation Control Register, EL1

(maya)

2017-01-16 09:58:04 UTC MAIN commitmail json YAML

move declaration to #ifdef WM_DEBUG block as opposed to using __debugused
fixes build with DEBUG but without WM_DEBUG

ok martin

(maya)

2017-01-16 09:39:26 UTC MAIN commitmail json YAML

Add carp as an alias for vrrp - after all, we do not ship vrrp, but we
do ship carp(4).

Restore the pfsync entry that was added with 1.20, then wiped out by
the 1.21 import. Please merge any wholesale imports properly.

Remove http://www.sethwklein.net/projects/iana-etc/ which 404s.

Should fix PR bin/51568

(hauke)

2017-01-16 09:28:41 UTC MAIN commitmail json YAML

2017-01-16 08:26:30 UTC MAIN commitmail json YAML

Remove KASSERT (revert in6.c,v 1.232)

We don't need it (it's harmless though).

(ozaki-r)

2017-01-16 08:18:11 UTC MAIN commitmail json YAML

Rewrite tests for CARP in a shell script instead of C

The new shell script enables us to modify/add tests easily.

(ozaki-r)

2017-01-16 07:33:36 UTC MAIN commitmail json YAML

2017-01-16 04:45:07 UTC MAIN commitmail json YAML

2017-01-16 04:44:38 UTC MAIN commitmail json YAML

Add Intel SSD DC P3520.

(msaitoh)

2017-01-16 00:14:04 UTC MAIN commitmail json YAML

update todo comment

(knakahara)

2017-01-16 00:11:42 UTC MAIN commitmail json YAML

2017-01-16 00:11:10 UTC MAIN commitmail json YAML

2017-01-16 00:09:07 UTC MAIN commitmail json YAML

support {extended, advanced} receive descriptor for wm(4).

support below two receive descriptors.
    - extended descriptor (used by 82574 only)
    - advanced descriptor (used by 82575 and newer)

SPH(split header buffer) is not supported yet.

ok by msaitoh@n.o.

(knakahara)

2017-01-15 23:53:13 UTC netbsd-6 commitmail json YAML

2017-01-15 23:51:32 UTC netbsd-6 commitmail json YAML

Pull up following revision(s) (requested by flxd in ticket #1418):
sbin/scsictl/scsictl.8: 1.27, 1.29, 1.30 via patch
sbin/scsictl/scsictl.c: revision 1.39 via patch
sys/dev/scsipi/scsi_disk.h: revision 1.32
Add "getrealloc" and "setrealloc" commands to get/set automatic reallocation
parameters/enables for error recovery, similar to {get,set}cache.
Many old SCSI disks shipped with reallocation disabled, albeit
supporting it.
Minor (cosmetic) fixup of scsi_disk_pages while there.
Based upon code in PR bin/29165 by Greg A. Woods.
OK christos@
--
Bump date for previous.
--
Add crossreference to scsi(4) per note in PR 9627.
Whitespace, sort.

(snj)

2017-01-15 22:18:11 UTC MAIN commitmail json YAML

Fix one markup issue and add initial HISTORY section

Import HISTORY notes from FreeBSD.

Sponsored by <The NetBSD Foundation>

(kamil)

2017-01-15 22:14:22 UTC MAIN commitmail json YAML

2017-01-15 21:42:09 UTC MAIN commitmail json YAML

Document E2BIG error when copying a large object.

(pgoyette)

2017-01-15 21:42:03 UTC MAIN commitmail json YAML

Introduce TRAP_HWWPT in <sys/siginfo> for hw assisted watchpoints

TRAP_HWWPT is si_code of SIGTRAP and it will be used for hardware assisted
watchpoints (vel breakpoints).

Sponsored by <The NetBSD Foundation>

(kamil)

2017-01-15 21:27:38 UTC MAIN commitmail json YAML

2017-01-15 21:19:28 UTC MAIN commitmail json YAML

note that spz updated BIND to 9.10.4-P5 (thanks!) and that 9.11.0-P2 is
out (though it seems kinda silly to track that branch)

(snj)

2017-01-15 21:10:24 UTC MAIN commitmail json YAML

2017-01-15 21:01:34 UTC bouyer-socketcan commitmail json YAML

Align can_frame.data to 8 bytes, per SocketCAN spec.

(bouyer)

2017-01-15 20:36:21 UTC MAIN commitmail json YAML

Document bouyer-socketcan
While there update status of bouyer-quota2 (which got merged a long
time ago).

(bouyer)

2017-01-15 20:29:01 UTC bouyer-socketcan commitmail json YAML

2017-01-15 20:27:34 UTC bouyer-socketcan commitmail json YAML

2017-01-15 20:10:25 UTC MAIN commitmail json YAML

elide strict-prototypes for unrepresentable function

(christos)

2017-01-15 18:15:45 UTC MAIN commitmail json YAML

bump to 128K (because of npf large rules) and return E2BIG.

(christos)

2017-01-15 18:03:12 UTC MAIN commitmail json YAML

2017-01-15 17:00:59 UTC MAIN commitmail json YAML

put linux_handler_t in the right place.

(christos)

2017-01-15 17:00:37 UTC MAIN commitmail json YAML

2017-01-15 16:41:39 UTC MAIN commitmail json YAML

2017-01-15 15:27:41 UTC MAIN commitmail json YAML

more types for constants

(christos)

2017-01-15 15:20:15 UTC MAIN commitmail json YAML

2017-01-15 15:19:33 UTC MAIN commitmail json YAML

2017-01-15 15:18:52 UTC MAIN commitmail json YAML

need intptr_t cast for linux_handler_t

(christos)

2017-01-15 11:56:11 UTC MAIN commitmail json YAML

exp(>11356) is +inf even if extended precision.
exp(<-11401) is 0 even if extended precision.

(isaki)

2017-01-15 11:46:21 UTC MAIN commitmail json YAML

2017-01-15 07:46:57 UTC MAIN commitmail json YAML

Fix indent in comments.

(isaki)

2017-01-15 04:45:40 UTC MAIN commitmail json YAML

2017-01-15 04:44:02 UTC MAIN commitmail json YAML

2017-01-15 04:43:28 UTC MAIN commitmail json YAML

Add Intel 200 series chipset devices from "Table 2-2. PCH-H Device and
Revision ID Table, Intel 200 Series Chipset Family Platform Controller
Hub(PCI) Datasheet Volume 1 of 2 (335192-001)".

(msaitoh)

2017-01-15 03:49:44 UTC MAIN commitmail json YAML

2017-01-15 03:49:09 UTC MAIN commitmail json YAML

Add Core 7G devices from "7th Generation Intel Processor Families for
{S, U/Y, H} Platforms Datasheel Volume 2 of 2" (S: 335196-001, U/Y: 334662-002,
H: 335191-001). For 0x5906 (U processor, HD Graphics 610), it's taken from
ark.inte.com.

(msaitoh)

2017-01-15 01:48:05 UTC MAIN commitmail json YAML

We no longer need ioconf.c - remove it to avoid "defined but not used"
compiler error.

(pgoyette)

2017-01-15 01:47:24 UTC MAIN commitmail json YAML

use a bound string copy

(maya)

2017-01-15 01:28:14 UTC MAIN commitmail json YAML

use a bound string copy

(maya)

2017-01-15 00:04:02 UTC MAIN commitmail json YAML

Forgot not to decrement sc_opens on unsuccessful open.

(nat)

2017-01-14 22:58:04 UTC MAIN commitmail json YAML