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:38:34 UTC Now

2017-04-30 20:28:53 UTC MAIN commitmail json YAML

Use URL and appropriate macro for pointing to ftp.freebsd.org.

(wiz)

2017-04-30 20:05:30 UTC MAIN commitmail json YAML

Direct reader solely to ftp.FreeBSD.org.
The mirror list is no longer publish on FTP and the main mirror now uses geodns
to guide visitors to nearest mirror.
Bump date.

(sevan)

2017-04-30 17:34:29 UTC MAIN commitmail json YAML

Use backtracking for regular patterns, but not ksh-specific ones [*?!+@](...)
which still use recursion.

(christos)

2017-04-30 16:56:30 UTC MAIN commitmail json YAML

2017-04-30 16:46:09 UTC MAIN commitmail json YAML

Rename of_getprop_bool to of_hasprop and make of_getprop_bool an alias.

(jmcneill)

2017-04-30 16:02:48 UTC MAIN commitmail json YAML

Uppercase UID. Fix typo.

(wiz)

2017-04-30 15:59:18 UTC MAIN commitmail json YAML

Remove unnecessary Pp. Add missing plural-s. More markup.

(wiz)

2017-04-30 15:27:24 UTC MAIN commitmail json YAML

Instead of dereferencing the pointer passed in as function argument, use a
temporary local buffer. Saves the cost of pointer dereferencing at so many places.

(abhinav)

2017-04-30 14:53:58 UTC MAIN commitmail json YAML

Update the comment to be in sync with the code.

(abhinav)

2017-04-30 14:49:26 UTC MAIN commitmail json YAML

Use sqlite3_mprintf() to generate SQL query instead of asprintf.

(abhinav)

2017-04-30 13:45:06 UTC MAIN commitmail json YAML

Free the buffer allocated by getline(3).

ok christos.

(abhinav)

2017-04-30 12:32:40 UTC MAIN commitmail json YAML

Add a cross-ref to devsw(9)

(pgoyette)

2017-04-30 12:30:55 UTC MAIN commitmail json YAML

Add new primary entry for devsw(9) man page

(pgoyette)

2017-04-30 12:30:00 UTC MAIN commitmail json YAML

Make the primary name for this man-page devsw

(pgoyette)

2017-04-30 10:27:16 UTC prg-localcount2 commitmail json YAML

2017-04-30 10:17:26 UTC prg-localcount2 commitmail json YAML

2017-04-30 09:00:49 UTC MAIN commitmail json YAML

2017-04-30 08:41:18 UTC MAIN commitmail json YAML

Avoid a call to strncmp when comparing only the first character of the string.

(abhinav)

2017-04-30 07:07:56 UTC prg-localcount2 commitmail json YAML

Use the right conditional to enable/disable LOCKDEBUG within RUMP

(pgoyette)

2017-04-30 05:18:53 UTC prg-localcount2 commitmail json YAML

Release the interlock mutex before calling device_release().

Ensure that device_release() gets called even if the (ca->ca_detach)()
call fails.

(pgoyette)

2017-04-30 05:16:52 UTC prg-localcount2 commitmail json YAML

Only include sys/localcount.h if we're in the _KERNEL

(pgoyette)

2017-04-30 04:56:55 UTC prg-localcount2 commitmail json YAML

2017-04-29 23:00:42 UTC MAIN commitmail json YAML

Adjust voltage when changing CPU frequency.

(jmcneill)

2017-04-29 20:43:48 UTC MAIN commitmail json YAML

- Recognize the AS3722 sd0_v_minus_200mV bit, which is 1 on my Jetson TK1.
- Reduce intended core voltage for Tegra K1 124 by 200mV to 1.2V.

The actual value programmed into the SD0 regulator remains the same (0x50),
a value corresponding to 1.20V.

(jakllsch)

2017-04-29 19:57:00 UTC MAIN commitmail json YAML

Add AS3722 SD4 regulator frobbing bits.

Reduces aprint_error counter with TEGRA kernel on Jetson TK1 to 1 from 3.

(jakllsch)

2017-04-29 18:31:43 UTC MAIN commitmail json YAML

add a link to midirecord(1).

(mrg)

2017-04-29 16:49:51 UTC MAIN commitmail json YAML

Bring the comment in sync with code (after changes brought by the last commit).

(abhinav)

2017-04-29 15:26:44 UTC MAIN commitmail json YAML

Correct description of the trap command (make it posix compatible)
and add a couple more examples.  Also terminate a few sentences...

(kre)

2017-04-29 15:14:29 UTC MAIN commitmail json YAML

Keep track of which file descriptors the shell is using for its
own purposes, and move them elsewhere whenever a user redirection
happens to pick the same number.  With this we can move the shell
file descriptors back to lower values (be slightly kinder to the kernel)
since we can no longer clash.  (Also get rid of a little old unneeded code.)

This also completes the fdflags command, which no longer permits access
to (by way or either obtaining, or changing) the shell's internal fds.

(kre)

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

Fix several problems with the implementation of the "trap" command
(that is, with the command itself, not with the traps that are
executed, if any).

- "trap -- -l" is not rational, permit the (non-std) -l option only
  when given as the sole arg (ie: "trap -l").
- "trap --" is the same as just "trap" (and -- is ignored for below)
- "trap action" generates a usage message (there must be at least one condition)
- "trap N [condition...]" (the old form with a numeric first arg, to reset
  traps to default, instead of "trap - condition...") is properly detected.
  In particular while "trap 1 2 3" resets sighup sigint and siquit handlers
  to default, "trap hup int quit" runs the "hup" command on sigint or sigquit
  and does nothing to sighup at all.
- actions can start with "-" (as can commands in general) - it may be unusual
  or even unwise, but it is not prohibited, and should work
- bad conditions (signal names/numbers) are just a usage error (resulting in
  non-zero "exit status" (and a diagnostic on stderr)) they do not cause
  the script to abort (as a syntax error in a special builtin would.)
  (so says posix, very explicitly.)
- when outputting the trap list ("trap") properly quote null actions
  (ignored conditions).  This has the side effect of also generating an
  explicit null string ('') in other cases where null values are output,
  such as when reporting var values ("set") but that's OK, and might be
  better (VAR= and VAR='' mean the same, but the latter is more obvious.)

We still do not properly handle traps=$(trap) (ie: it does not work at all,
and should) but that's a different problem that needs fixing in another place.

(kre)

2017-04-29 14:43:09 UTC MAIN commitmail json YAML

Don't parse Nm macro when it occurs anywhere outside the NAME section.

mandoc(3) already generates the text node representing the value for the .Nm macro.
Doing our own parsing for .Nm on top of that leads to large duplication of text
in the database. This gets specially worse for man pages with large NAME sections,
such as queue(3).

(abhinav)

2017-04-29 13:25:27 UTC MAIN commitmail json YAML

2017-04-29 12:49:05 UTC MAIN commitmail json YAML

Rename fdt_print to fdtbus_print and make it public.

(jmcneill)

2017-04-29 12:38:26 UTC MAIN commitmail json YAML

Move logic for checking "status" property out of fdtbus into a public
fdtbus_status_okay function.

(jmcneill)

2017-04-29 11:47:32 UTC MAIN commitmail json YAML

APB-DMA channel registers start at offset 1000h relative to the APB-DMA
controller registers.

(jmcneill)

2017-04-29 11:12:15 UTC prg-localcount2 commitmail json YAML

2017-04-29 11:02:17 UTC MAIN commitmail json YAML

add tegraapbdma driver

(jmcneill)

2017-04-29 11:01:52 UTC MAIN commitmail json YAML

2017-04-29 11:00:56 UTC MAIN commitmail json YAML

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

2017-04-29 10:50:46 UTC prg-localcount2 commitmail json YAML

Remove explicit inclusion of <sys/localcount.h> since there is no
explicit usage of localcounts here.  <sys/conf.h> will take care of
including as needed.

(pgoyette)

2017-04-29 10:19:32 UTC prg-localcount2 commitmail json YAML

2017-04-29 09:18:00 UTC prg-localcount2 commitmail json YAML

Add DEVSW_MODULE_INIT to existing device-driver modules, so that they
willl have a localcount defined and thus be permitted to load.  Without
a localcount, loading the module will return EINVAL.

XXX the dtrace and drm stuff might need to be fed back upstream?

(pgoyette)

2017-04-29 08:55:37 UTC prg-localcount2 commitmail json YAML

2017-04-29 06:33:37 UTC prg-localcount2 commitmail json YAML

Remove extraneous argument to .Nm

(pgoyette)

2017-04-29 01:18:35 UTC MAIN commitmail json YAML

MAP_COPY is handled in compat

(christos)

2017-04-29 01:17:47 UTC MAIN commitmail json YAML

MAP_COPY moved to compat

(christos)

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

2017-04-29 00:08:46 UTC MAIN commitmail json YAML

Added missing file...

> nvmectl(8): sync with FreeBSD HEAD r316105.
>
>  - Expand the SMART / Health Information Log Page (Page 02) printout based on
>    NVM Express 1.2.1 Standard.
>  - Implement Intel-specific log pages.
>  - Implement HGST-specific log pages.
>  - Implement wdc-specific nvme control options.
>  - Add the ability to dump log pages directly in binary to stdout.

(nonaka)

2017-04-29 00:06:40 UTC MAIN commitmail json YAML

nvmectl(8): sync with FreeBSD HEAD r316105.

- Expand the SMART / Health Information Log Page (Page 02) printout based on
  NVM Express 1.2.1 Standard.
- Implement Intel-specific log pages.
- Implement HGST-specific log pages.
- Implement wdc-specific nvme control options.
- Add the ability to dump log pages directly in binary to stdout.

(nonaka)

2017-04-29 00:05:36 UTC MAIN commitmail json YAML

2017-04-28 23:16:14 UTC prg-localcount2 commitmail json YAML

Don't call device_release() from vnd_detach().  The caller (typically,
config_detach()) will take care of this.  Without this fix, we end up
with a negative reference count, and panic.

(pgoyette)

2017-04-28 19:01:01 UTC MAIN commitmail json YAML

Fix typo in ATF test t_strtoi.c

No functional change.

(kamil)

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

Remove unused LNAME macro

(skrll)

2017-04-28 13:38:36 UTC MAIN commitmail json YAML

Also move bootjs.net after we've evaluated $OBJS (thanks gson@)

(christos)

2017-04-28 11:33:00 UTC MAIN commitmail json YAML

Prevent SEGV on corrupted msdos directories (Veo Zhang)

(christos)

2017-04-28 10:37:41 UTC MAIN commitmail json YAML

Print node path in debug log.

(jmcneill)

2017-04-28 10:24:45 UTC MAIN commitmail json YAML

Fix a bug that reading hw.ixgM.qN.interrupt_rate cause the interrupt
throtting rate register to 0. Check sysctl read/write correctly...

(msaitoh)

2017-04-28 10:12:35 UTC MAIN commitmail json YAML

Fix a UVMHIST_LOG after the "%s" removal

(skrll)

2017-04-28 09:46:49 UTC MAIN commitmail json YAML

Hide the debug output unless either TEGRA_XUSB_DEBUG is defined or
tegra_xusb_debug is set to 1.

(jmcneill)

2017-04-28 06:59:49 UTC MAIN commitmail json YAML

Make "options AUDIO_DEBUG=0" create a silent-by-default version of the
debug output, toggled at runtime by setting audiodebug to a higher value.
To get boot time debugging, use "options AUDIO_DEBUG=1".

(martin)

2017-04-28 06:00:33 UTC prg-localcount2 commitmail json YAML

Introduce config_detach_release() which does all the work from the
former config_detach().  Now, config_detach() simply acquires a
reference to the device, which config_detach_release() can release!

This is needed because some drivers call config_detach() with a
reference, while other drivers have not been updated to use the
localcount reference mechanism.  So we provide a shim to make
everyone equal.

(pgoyette)

2017-04-28 05:56:33 UTC MAIN commitmail json YAML

Don't output debugging logs just if DIAGNOSTIC

Also make log messages informative.

(ozaki-r)

2017-04-28 03:46:57 UTC prg-localcount2 commitmail json YAML

Add a localcount to the devsw so it can be loaded as a rump module

(pgoyette)

2017-04-28 03:41:26 UTC prg-localcount2 commitmail json YAML

Use printf() instead of aprintf_normal(), fix the sense of a comparison

(pgoyette)

2017-04-28 02:36:10 UTC prg-localcount2 commitmail json YAML

No need to panic if a modular driver doesn't include the required
localcount members in the {b,c}devsw.  Just log a console message
and return EINVAL to signal failure.

(pgoyette)

2017-04-28 02:29:38 UTC MAIN commitmail json YAML

Fix function name in log message

(ozaki-r)

2017-04-28 02:13:19 UTC prg-localcount2 commitmail json YAML

The npf device may be loaded as a (rump) module, so make sure we have a
localcount in its devsw

(pgoyette)

2017-04-28 01:49:38 UTC prg-localcount2 commitmail json YAML

The zfs control device is loaded as a module under rump-server, so
add the localcount stuff to its {b,c}devsw

XXX How to feed this back to upstream?

(pgoyette)

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

Added AMD extended APIC register space present definition.

(nonaka)

2017-04-27 23:18:21 UTC prg-localcount2 commitmail json YAML

Don't reference a known-NULL pointer, and remove duplicated calls to
mutex_enter() and mutex_exit()

(pgoyette)

2017-04-27 23:17:21 UTC MAIN commitmail json YAML

- don't blindly copy attribute bits which we don't support or which make no
  sense in the attribute buffer
- support WSATTR_UNDERLINE
- remove unused function

(macallan)

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

2017-04-27 19:40:55 UTC MAIN commitmail json YAML

2017-04-27 19:18:50 UTC MAIN commitmail json YAML

Welcome to 7.99.71, courtesy of a slight increment in vfs sanity.

*fs_remove no longer releases the caller's lock of dvp on exit.

Sorry for delay in bump.  Thanks, martin, for catching this!

(riastradh)

2017-04-27 18:50:34 UTC MAIN commitmail json YAML

switch to a backtracking instead of a recursive pattern matcher.

(christos)

2017-04-27 17:32:26 UTC MAIN commitmail json YAML

seems VirtualBox 5.1.20 doesn't have the buggy nvme(4) behaviour any more,
remove the note

(jdolecek)

2017-04-27 17:07:22 UTC MAIN commitmail json YAML

do not attach nvme ld as randomness source - device is too fast, it overwhelms
the rndq handling code, and causes system crashes; gathering rnd there is
also bad idea from performance perspective

(jdolecek)

2017-04-27 16:52:22 UTC MAIN commitmail json YAML

Rearrange the if conditions in order to get rid of unnecessary indentation.

No functional change intended. ok christos@

(abhinav)

2017-04-27 12:07:23 UTC prg-localcount2 commitmail json YAML

Once more let's try to fix the exit path in cgdclose()

(pgoyette)

2017-04-27 11:58:58 UTC prg-localcount2 commitmail json YAML

Fix checking of failure-to-spawn a unit (check the returned address for
NULL, vs the pointer to that address).

Ensure that that device_release() is called in all exit paths from cgd_close().

Update handling of CGDIOCCLR ioctl the same as CGDIOCSET.  In particular,
don't return without calling device_release(), as any subsequent attempt to
detach the device will hang forever waiting for its localcount to drain.

(pgoyette)

2017-04-27 11:02:14 UTC MAIN commitmail json YAML

Remove a couple of over eager obsolete markers.

(joerg)

2017-04-27 10:17:12 UTC MAIN commitmail json YAML

2017-04-27 10:01:54 UTC MAIN commitmail json YAML

2017-04-27 09:43:52 UTC MAIN commitmail json YAML

Fix KASSERT; restore a lost statement

(ozaki-r)

2017-04-27 09:31:51 UTC MAIN commitmail json YAML

Fix comment indentation at couple of places: Use \t instead of space

(abhinav)

2017-04-27 08:37:15 UTC MAIN commitmail json YAML

PR port-macppc/47464 - Old binutils generated bogus zero-sized COPY
relocations for _SDA_BASE_ and _SDA2_BASE_ that happened to work by
accident.  They no longer happen to work when old binaries are run on
newer systems.  Explicitly ignore these bogus relocations.

(uwe)

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

2017-04-27 08:02:24 UTC MAIN commitmail json YAML

Disable the database compression if DEBUG is defined.

When debugging makemandb(8), it helps to be able to view the text being
stored in the database.

(abhinav)

2017-04-27 06:53:44 UTC MAIN commitmail json YAML

2017-04-27 06:52:45 UTC MAIN commitmail json YAML

2017-04-27 06:50:42 UTC MAIN commitmail json YAML

Add minimum sets of algorithms for testing

(ozaki-r)

2017-04-27 05:36:39 UTC prg-localcount2 commitmail json YAML

Restore all work from the former pgoyette-localcount branch (which is
now abandoned doe to cvs merge botch).

The branch now builds, and installs via anita.  There are still some
problems (cgd is non-functional and all atf tests time-out) but they
will get resolved soon.

(pgoyette)

2017-04-27 04:44:02 UTC MAIN commitmail json YAML

Make ppb(4) interrupt support stable:
- Disable all interrupts in the beginning of attach. Without this, interrupt
  storm occurs while cold == 1 on some environment.
- Disable command complete interrput for a while to prevent hangup on some
  enviroment. I'm sorry, I don't know what this bit is :-|
- Check all status bits and return 0 if an interrupt is not for me. It's
  required for INTx. Tested on XEN3_DOM0 because it doesn't support MSI yet.
- Return 1 when a interrupt is processed.

(msaitoh)

2017-04-27 04:26:12 UTC MAIN commitmail json YAML

Check slot registers if a device is PCI/PCI-X to PCI Express Bridge. Tested
with Pericom Semiconductors(Diodes) PI7C9X111SL PCIe to PCI Reverse Bridge.

(msaitoh)

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

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

- Add some Pericom (Diodes) devices.
- s/P17C9/PI7C9/

(msaitoh)

2017-04-26 22:41:59 UTC MAIN commitmail json YAML

catch up with unit fixes for es_arglen; consistently use bytes.

(christos)

2017-04-26 22:41:53 UTC MAIN commitmail json YAML

Deal with traps that reset the (same) trap in the trap handler
(avoid referrencing memory that might have been freed).
From FreeBSD (ages ago, just not committed until now...)

(kre)

2017-04-26 21:03:52 UTC MAIN commitmail json YAML

properly optimize drawing stretches of blanks that are interrupted only by
a change in background colour or flags

(macallan)

2017-04-26 18:20:01 UTC MAIN commitmail json YAML

Catch up with GENERIC changes.

(christos)

2017-04-26 17:43:33 UTC MAIN commitmail json YAML

Convert the pattern matcher from recursive to backtracking (from FreeBSD).

(christos)

2017-04-26 14:58:53 UTC netbsd-7-0 commitmail json YAML

2017-04-26 14:57:44 UTC netbsd-7-0 commitmail json YAML

Pull up following revision(s) (requested by chs in ticket #1410):
sys/arch/amd64/amd64/trap.c: revision 1.96
restore the ability to run netbsd 1.0 32-bit executables
by checking for the relevant lcall instruction in the trap handler
and treating it as a syscall.

(martin)

2017-04-26 14:57:19 UTC netbsd-7-1 commitmail json YAML

2017-04-26 14:56:54 UTC MAIN commitmail json YAML

Switch from a recursive pattern matching algorithm to handle '*'
to a backtracking one. Avoids DoS attacks with patterns "a*a*a*a*a*...b"
matching against "aaaaaaaaaaaa..." https://research.swtch.com/glob

(christos)

2017-04-26 14:56:30 UTC netbsd-7-1 commitmail json YAML

Pull up following revision(s) (requested by chs in ticket #1410):
sys/arch/amd64/amd64/trap.c: revision 1.96
restore the ability to run netbsd 1.0 32-bit executables
by checking for the relevant lcall instruction in the trap handler
and treating it as a syscall.

(martin)

2017-04-26 14:55:52 UTC netbsd-7 commitmail json YAML

2017-04-26 14:54:57 UTC netbsd-7 commitmail json YAML

Pull up following revision(s) (requested by chs in ticket #1410):
sys/arch/amd64/amd64/trap.c: revision 1.96
restore the ability to run netbsd 1.0 32-bit executables
by checking for the relevant lcall instruction in the trap handler
and treating it as a syscall.

(martin)

2017-04-26 14:52:57 UTC MAIN commitmail json YAML

- add range tests
- be more descriptive about errors

(christos)

2017-04-26 14:52:50 UTC netbsd-7 commitmail json YAML

Pull up following revision(s) (requested by bsiegert in ticket #1397):

sys/arch/amd64/amd64/locore.S 1.122 (via patch)
sys/arch/amd64/amd64/machdep.c 1.254 (via patch)
sys/arch/amd64/amd64/trap.c 1.95 (via patch)

Remove the call gate on amd64, it is useless and vulnerable.

(martin)

2017-04-26 14:51:58 UTC netbsd-7-1 commitmail json YAML

Pull up following revision(s) (requested by bsiegert in ticket #1397):

sys/arch/amd64/amd64/locore.S 1.122 (via patch)
sys/arch/amd64/amd64/machdep.c 1.254 (via patch)
sys/arch/amd64/amd64/trap.c 1.95 (via patch)

Remove the call gate on amd64, it is useless and vulnerable.

(martin)

2017-04-26 14:50:51 UTC netbsd-7-0 commitmail json YAML

Pull up following revision(s) (requested by bsiegert in ticket #1397):

sys/arch/amd64/amd64/locore.S 1.122 (via patch)
sys/arch/amd64/amd64/machdep.c 1.254 (via patch)
sys/arch/amd64/amd64/trap.c 1.95 (via patch)

Remove the call gate on amd64, it is useless and vulnerable.

(martin)

2017-04-26 13:59:56 UTC MAIN commitmail json YAML

Lua updated to versionb 5.3.4

(mbalmer)

2017-04-26 13:58:01 UTC MAIN commitmail json YAML

Lua is at version 5.3.4 now

(mbalmer)

2017-04-26 13:53:18 UTC MAIN commitmail json YAML

kernel mode lua has no floating point available

(mbalmer)

2017-04-26 13:17:33 UTC MAIN commitmail json YAML

2017-04-26 13:09:12 UTC MAIN commitmail json YAML

import conflict resolution

(mbalmer)

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

2017-04-26 13:00:46 UTC MAIN commitmail json YAML

2017-04-26 12:49:35 UTC MAIN commitmail json YAML

2017-04-26 12:36:53 UTC MAIN commitmail json YAML

2017-04-26 11:45:23 UTC bouyer-socketcan commitmail json YAML

2017-04-26 11:32:04 UTC MAIN commitmail json YAML

Improved blksize calculation.
audio_fill_silence instead of audio_pint_silence for the mix ring.

Addresses PR kern/52195.

(nat)

2017-04-26 10:10:05 UTC bouyer-socketcan commitmail json YAML

2017-04-26 10:07:45 UTC MAIN commitmail json YAML

Add my new prg-localcount2 branch, to take over from the previous one
which I messed up somehow.

(pgoyette)

2017-04-26 08:36:32 UTC MAIN commitmail json YAML

Replace leading whitespaces with tabs and tweak some indentations

(ozaki-r)

2017-04-26 08:20:47 UTC MAIN commitmail json YAML

Move mcrr/mrrc earlier so they match before stc/ldc

(skrll)

2017-04-26 08:00:03 UTC MAIN commitmail json YAML

Disable ppb(4)'s interrupt for a while. It causes hangup on some environment.
Define PPB_USEINTR if you'd like to use interrupt.

(msaitoh)

2017-04-26 07:51:23 UTC MAIN commitmail json YAML

Abandon pgoyette-localcount branch due to unrecoverable CVS "pilot
errors".  Work will be salvaged and reappear on a new branch, soon.

(pgoyette)

2017-04-26 07:40:09 UTC MAIN commitmail json YAML

Clean up the NAME section.

The entries in the NAME section of these man pages have man pages of their
own, so it doesn't make sense to have their names here, instead they
should be just described in the body (similar to what we do in math(3) man page).

This also helps whatis(1) and apropos(1), as otherwise you would see multiple
results with the same name in the output, while there is actually only one page
with that name.

Good example is:

$ apropos -n 2 -M realloc
realloc (3)      general memory allocation operations
realloc (3)      general purpose memory allocation functions

The first line is there because memory(3) man page had realloc in its
NAME section. This commit will fix this issue.

ok wiz@

(abhinav)

2017-04-26 07:17:38 UTC MAIN commitmail json YAML

Remove unnecessary LIST_FOREACH definition

(ozaki-r)

2017-04-26 05:52:57 UTC pgoyette-localcount commitmail json YAML

2017-04-26 05:35:36 UTC pgoyette-localcount commitmail json YAML

Somehow this got out of sync on the branch.

(pgoyette)

2017-04-26 03:54:37 UTC MAIN commitmail json YAML

Disable and disestablish interrupt in ppbdetach().

(msaitoh)

2017-04-26 03:29:37 UTC MAIN commitmail json YAML

When crypto request is deferred processing, opencrypto should not return error.

When the crypto device blocks a crypto request, opnecrypto enqueues the request,
that is, the request is just deferred and no error occurs.
The pseudo error causes problems, e.g. ipsec can send wrong ICMP host unreach.

contributed by hsuenaga@IIJ, thanks.

(knakahara)

2017-04-26 03:19:49 UTC MAIN commitmail json YAML

Print protocol number as well as its name

ex.) before: "reserved" -> after: "255(reserved)"

The original author is hsuenaga@IIJ

(ozaki-r)

2017-04-26 03:16:06 UTC MAIN commitmail json YAML

Correct the length of the SADB_EXT header in debug outputs

The length is shifted 3 bits in PF_KEY protocol.

Originally fixed by hsuenaga@IIJ

(ozaki-r)

2017-04-26 03:04:25 UTC MAIN commitmail json YAML

2017-04-26 03:02:49 UTC MAIN commitmail json YAML

2017-04-26 02:57:17 UTC pgoyette-localcount commitmail json YAML

2017-04-26 02:53:36 UTC pgoyette-localcount commitmail json YAML

2017-04-26 01:51:53 UTC MAIN commitmail json YAML

2017-04-26 01:43:00 UTC MAIN commitmail json YAML

Set host1x parent to pll_p_out0

(jmcneill)

2017-04-26 01:42:46 UTC MAIN commitmail json YAML

Ignore dc parent clock from devicetree and use hdmi parent for dc.

(jmcneill)

2017-04-25 22:15:57 UTC netbsd-6-0 commitmail json YAML

2017-04-25 22:07:10 UTC MAIN commitmail json YAML

Add a check to ensure that a new sysctl node was attached in the tree
at the place we expected it to be attached!

As mentioned several times (on tech-kern@ mailing list) over the past
18 months or so, I've seen a few instances where this will trigger,
although I've been unable to reproduce them.  Hopefully some wider
exposure will reveal the under-lying cause of this rare phenomenon.

Commit was proposed on tech-kern list, and no objections raised.

(pgoyette)

2017-04-25 22:02:05 UTC netbsd-6-0 commitmail json YAML

src/external/bsd/bind/Makefile.inc@1.12.4.1.4.3 / diff / nxr@1.12.4.1.4.3
src/external/bsd/bind/bin/dnssec/Makefile@1.2.14.2 / diff / nxr@1.2.14.2
src/external/bsd/bind/bin/dnssec/dnssec-verify/Makefile@1.1.18.3 / diff / nxr@1.1.18.3
src/external/bsd/bind/dist/CHANGES@1.2.2.4.2.6 / diff / nxr@1.2.2.4.2.6
src/external/bsd/bind/dist/COPYRIGHT@1.1.1.5.4.1.4.4 / diff / nxr@1.1.1.5.4.1.4.4
src/external/bsd/bind/dist/FAQ@1.1.1.4.14.2 / diff / nxr@1.1.1.4.14.2
src/external/bsd/bind/dist/FAQ.xml@1.1.1.5.6.1.4.4 / diff / nxr@1.1.1.5.6.1.4.4
src/external/bsd/bind/dist/Makefile.in@1.1.1.5.4.1.4.2 / diff / nxr@1.1.1.5.4.1.4.2
src/external/bsd/bind/dist/README@1.1.1.8.4.1.4.5 / diff / nxr@1.1.1.8.4.1.4.5
src/external/bsd/bind/dist/acconfig.h@1.4.6.1.4.2 / diff / nxr@1.4.6.1.4.2
src/external/bsd/bind/dist/bin/check/Makefile.in@1.1.1.4.6.1.4.2 / diff / nxr@1.1.1.4.6.1.4.2
src/external/bsd/bind/dist/bin/check/check-tool.c@1.2.6.1.4.2 / diff / nxr@1.2.6.1.4.2
src/external/bsd/bind/dist/bin/check/named-checkconf.8@1.2.6.1.4.2 / diff / nxr@1.2.6.1.4.2
src/external/bsd/bind/dist/bin/check/named-checkconf.c@1.3.4.1.4.4 / diff / nxr@1.3.4.1.4.4
src/external/bsd/bind/dist/bin/check/named-checkconf.docbook@1.1.1.4.6.1.4.2 / diff / nxr@1.1.1.4.6.1.4.2
src/external/bsd/bind/dist/bin/check/named-checkconf.html@1.1.1.4.6.1.4.2 / diff / nxr@1.1.1.4.6.1.4.2
src/external/bsd/bind/dist/bin/check/named-checkzone.8@1.2.6.1.4.2 / diff / nxr@1.2.6.1.4.2
src/external/bsd/bind/dist/bin/check/named-checkzone.c@1.2.6.1.4.2 / diff / nxr@1.2.6.1.4.2
src/external/bsd/bind/dist/bin/check/named-checkzone.docbook@1.1.1.4.6.1.4.2 / diff / nxr@1.1.1.4.6.1.4.2
src/external/bsd/bind/dist/bin/check/named-checkzone.html@1.1.1.4.6.1.4.2 / diff / nxr@1.1.1.4.6.1.4.2
      :
(more 1349 files)
Apply patch (requested by spz in ticket #1449):
Update BIND to 9.9.9-P8

Security issues fixed with this update:
CVE-2015-8704 CVE-2016-1285 CVE-2016-1286 CVE-2016-2775 CVE-2016-2776
CVE-2016-8864 CVE-2016-9131 CVE-2016-9147 CVE-2016-9444 CVE-2017-3135
CVE-2017-3136 CVE-2017-3137 CVE-2017-3138

The update also contains numerous bug fixes as well as changes to
comply with recent RFCs.

(snj)

2017-04-25 21:53:06 UTC pgoyette-localcount commitmail json YAML

Use {b,c}devsw_acquire() and {b,c}devsw_release() in the various device
acccess methods.

(pgoyette)

2017-04-25 21:36:41 UTC pgoyette-localcount commitmail json YAML

Add membar_datadep_consumer() to {b,c}devsw_lookup() to ensure that
the devsw content is visible.

Again, thanks riastradh@

(pgoyette)

2017-04-25 21:31:33 UTC pgoyette-localcount commitmail json YAML

Call localcount_init() before publishing the new {b,c}devsw.

Thanks to riastradh@

(pgoyette)

2017-04-25 21:01:03 UTC netbsd-6-1 commitmail json YAML

2017-04-25 20:55:05 UTC jdolecek-ncq commitmail json YAML

make compile without DIAGNOSTIC

(jdolecek)

2017-04-25 20:54:00 UTC netbsd-6-1 commitmail json YAML

src/external/bsd/bind/Makefile.inc@1.12.4.1.6.3 / diff / nxr@1.12.4.1.6.3
src/external/bsd/bind/dist/CHANGES@1.2.2.5.2.5 / diff / nxr@1.2.2.5.2.5
src/external/bsd/bind/dist/COPYRIGHT@1.1.1.5.4.1.6.4 / diff / nxr@1.1.1.5.4.1.6.4
src/external/bsd/bind/dist/FAQ@1.1.1.4.22.2 / diff / nxr@1.1.1.4.22.2
src/external/bsd/bind/dist/FAQ.xml@1.1.1.5.6.1.6.4 / diff / nxr@1.1.1.5.6.1.6.4
src/external/bsd/bind/dist/Makefile.in@1.1.1.5.4.2.2.2 / diff / nxr@1.1.1.5.4.2.2.2
src/external/bsd/bind/dist/README@1.1.1.8.4.2.2.5 / diff / nxr@1.1.1.8.4.2.2.5
src/external/bsd/bind/dist/acconfig.h@1.4.6.2.2.2 / diff / nxr@1.4.6.2.2.2
src/external/bsd/bind/dist/bin/check/Makefile.in@1.1.1.4.6.2.2.2 / diff / nxr@1.1.1.4.6.2.2.2
src/external/bsd/bind/dist/bin/check/check-tool.c@1.2.6.2.2.2 / diff / nxr@1.2.6.2.2.2
src/external/bsd/bind/dist/bin/check/named-checkconf.8@1.2.6.1.6.2 / diff / nxr@1.2.6.1.6.2
src/external/bsd/bind/dist/bin/check/named-checkconf.c@1.3.4.1.6.4 / diff / nxr@1.3.4.1.6.4
src/external/bsd/bind/dist/bin/check/named-checkconf.docbook@1.1.1.4.6.1.6.2 / diff / nxr@1.1.1.4.6.1.6.2
src/external/bsd/bind/dist/bin/check/named-checkconf.html@1.1.1.4.6.1.6.2 / diff / nxr@1.1.1.4.6.1.6.2
src/external/bsd/bind/dist/bin/check/named-checkzone.8@1.2.6.1.6.2 / diff / nxr@1.2.6.1.6.2
src/external/bsd/bind/dist/bin/check/named-checkzone.c@1.2.6.1.6.2 / diff / nxr@1.2.6.1.6.2
src/external/bsd/bind/dist/bin/check/named-checkzone.docbook@1.1.1.4.6.1.6.2 / diff / nxr@1.1.1.4.6.1.6.2
src/external/bsd/bind/dist/bin/check/named-checkzone.html@1.1.1.4.6.1.6.2 / diff / nxr@1.1.1.4.6.1.6.2
src/external/bsd/bind/dist/bin/confgen/Makefile.in@1.1.1.3.6.2.2.1 / diff / nxr@1.1.1.3.6.2.2.1
src/external/bsd/bind/dist/bin/confgen/ddns-confgen.8@1.2.6.1.6.2 / diff / nxr@1.2.6.1.6.2
      :
(more 1328 files)
Apply patch (requested by spz in ticket #1449):
Update BIND to 9.9.9-P8

Security issues fixed with this update:
CVE-2015-8704 CVE-2016-1285 CVE-2016-1286 CVE-2016-2775 CVE-2016-2776
CVE-2016-8864 CVE-2016-9131 CVE-2016-9147 CVE-2016-9444 CVE-2017-3135
CVE-2017-3136 CVE-2017-3137 CVE-2017-3138

The update also contains numerous bug fixes as well as changes to
comply with recent RFCs.

(snj)

2017-04-25 20:04:21 UTC netbsd-6 commitmail json YAML

2017-04-25 19:54:35 UTC netbsd-6 commitmail json YAML

src/external/bsd/bind/dist/CHANGES@1.2.2.9 / diff / nxr@1.2.2.9
src/external/bsd/bind/dist/COPYRIGHT@1.1.1.5.4.4 / diff / nxr@1.1.1.5.4.4
src/external/bsd/bind/dist/FAQ@1.1.1.4.8.2 / diff / nxr@1.1.1.4.8.2
src/external/bsd/bind/dist/FAQ.xml@1.1.1.5.6.4 / diff / nxr@1.1.1.5.6.4
src/external/bsd/bind/dist/Makefile.in@1.1.1.5.4.4 / diff / nxr@1.1.1.5.4.4
src/external/bsd/bind/dist/README@1.1.1.8.4.6 / diff / nxr@1.1.1.8.4.6
src/external/bsd/bind/dist/acconfig.h@1.4.6.4 / diff / nxr@1.4.6.4
src/external/bsd/bind/dist/bin/check/Makefile.in@1.1.1.4.6.4 / diff / nxr@1.1.1.4.6.4
src/external/bsd/bind/dist/bin/check/check-tool.c@1.2.6.4 / diff / nxr@1.2.6.4
src/external/bsd/bind/dist/bin/check/named-checkconf.8@1.2.6.3 / diff / nxr@1.2.6.3
src/external/bsd/bind/dist/bin/check/named-checkconf.c@1.3.4.4 / diff / nxr@1.3.4.4
src/external/bsd/bind/dist/bin/check/named-checkconf.docbook@1.1.1.4.6.3 / diff / nxr@1.1.1.4.6.3
src/external/bsd/bind/dist/bin/check/named-checkconf.html@1.1.1.4.6.3 / diff / nxr@1.1.1.4.6.3
src/external/bsd/bind/dist/bin/check/named-checkzone.8@1.2.6.3 / diff / nxr@1.2.6.3
src/external/bsd/bind/dist/bin/check/named-checkzone.c@1.2.6.3 / diff / nxr@1.2.6.3
src/external/bsd/bind/dist/bin/check/named-checkzone.docbook@1.1.1.4.6.3 / diff / nxr@1.1.1.4.6.3
src/external/bsd/bind/dist/bin/check/named-checkzone.html@1.1.1.4.6.3 / diff / nxr@1.1.1.4.6.3
src/external/bsd/bind/dist/bin/confgen/Makefile.in@1.1.1.3.6.3 / diff / nxr@1.1.1.3.6.3
src/external/bsd/bind/dist/bin/confgen/ddns-confgen.8@1.2.6.3 / diff / nxr@1.2.6.3
src/external/bsd/bind/dist/bin/confgen/ddns-confgen.docbook@1.1.1.2.6.3 / diff / nxr@1.1.1.2.6.3
      :
(more 900 files)
Apply patch (requested by spz in ticket #1449):
Update BIND to 9.9.9-P8

Security issues fixed with this update:
CVE-2015-8704 CVE-2016-1285 CVE-2016-1286 CVE-2016-2775 CVE-2016-2776
CVE-2016-8864 CVE-2016-9131 CVE-2016-9147 CVE-2016-9444 CVE-2017-3135
CVE-2017-3136 CVE-2017-3137 CVE-2017-3138

The update also contains numerous bug fixes as well as changes to
comply with recent RFCs.

(snj)

2017-04-25 18:52:31 UTC MAIN commitmail json YAML

Switch BEAGLEBONE config over to using GENERIC.common.
Remove duplicates already defined in GENERIC.common.

(sevan)

2017-04-25 17:11:47 UTC MAIN commitmail json YAML

2017-04-25 13:20:41 UTC MAIN commitmail json YAML

2017-04-25 13:19:45 UTC MAIN commitmail json YAML

2017-04-25 09:03:03 UTC pgoyette-localcount commitmail json YAML

Use KASSERTMSG() to ensure that the device has a localcount.

(pgoyette)

2017-04-25 09:02:34 UTC MAIN commitmail json YAML

Dump more of the trapframe

(skrll)

2017-04-25 09:02:05 UTC MAIN commitmail json YAML

Report trapframe where possible

(skrll)

2017-04-25 09:01:38 UTC MAIN commitmail json YAML

Expose lwp_trapframe for _KEMUSER, e.g. crash(8)

(skrll)

2017-04-25 08:46:38 UTC MAIN commitmail json YAML

Use __func__ for routine name in printf() calls.  NFC intended.

(pgoyette)

2017-04-25 06:08:24 UTC MAIN commitmail json YAML

Use Fn instead of Nm to refer the macros in the body of the man page.

Thanks to wiz@ for reviewing.

(abhinav)

2017-04-25 05:44:11 UTC MAIN commitmail json YAML

Check if solock of PCB is held when SP caches in the PCB are accessed

To this end, a back pointer from inpcbpolicy to inpcb_hdr is added.

(ozaki-r)

2017-04-25 05:36:03 UTC MAIN commitmail json YAML

In umass_detach set sc_dyring so that further attempts at transfers will
fail.  This fixes part of

PR/51129 (Disconnecting USB SD card without umount causes file operations to hang)

(skrll)

2017-04-24 23:01:45 UTC MAIN commitmail json YAML

in ppbdetach(), try to detach the children before tearing down our own state,
to avoid trouble if detaching the children fails.

(chs)

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

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

2017-04-24 21:14:32 UTC MAIN commitmail json YAML

Fix PRB blanking, so as not to stomp on the feet of neighboring slots.
Also, don't blank some PRB fields twice.

[:U+1F633:]

(jakllsch)

2017-04-24 18:22:32 UTC jdolecek-ncq commitmail json YAML

only clear the bcount for NCQ case when the transfer actually ended w/o error

(jdolecek)

2017-04-24 18:18:16 UTC MAIN commitmail json YAML

Add ``cooperate''

(abhinav)

2017-04-24 17:09:37 UTC MAIN commitmail json YAML

fix another parallel-build race with MKDEBUG=yes by creating the .so.link
with a temporary name and renaming to the final name only after
the file is fully written.

(chs)

2017-04-24 17:03:43 UTC MAIN commitmail json YAML

restore the ability to run netbsd 1.0 32-bit executables
by checking for the relevant lcall instruction in the trap handler
and treating it as a syscall.

(chs)

2017-04-24 15:15:02 UTC jdolecek-ncq commitmail json YAML

do not use PRD Byte Count for queued commands to determine number of bytes
actually transferred; it should not be used and is not guaranteed to be
valid according to AHCI spec, underflow is always invalid for queued cmds

this fixes my ls problem under QEMU

(jdolecek)

2017-04-24 14:07:29 UTC jdolecek-ncq commitmail json YAML

ata_free_xfer() must be called with lock held, same as ata_get_xfer()

(jdolecek)

2017-04-24 13:38:33 UTC bouyer-socketcan commitmail json YAML

Use bpf_mtap() not bpf_mtap_af(). Now files produced by tcpdump can be
decoded by wireshark.

(bouyer)

2017-04-24 13:24:34 UTC jdolecek-ncq commitmail json YAML

2017-04-24 13:19:50 UTC MAIN commitmail json YAML

Fix typo in comment.

(jakllsch)

2017-04-24 13:09:37 UTC jdolecek-ncq commitmail json YAML

2017-04-24 13:05:26 UTC jdolecek-ncq commitmail json YAML

2017-04-24 12:58:15 UTC MAIN commitmail json YAML

Drop unused prototype. Whitespace fixes. Wrap/re-wrap long lines.

(jakllsch)

2017-04-24 12:53:28 UTC MAIN commitmail json YAML

Add PR_PS_ACTIVE_SLOT bits.

(jakllsch)

2017-04-24 12:52:05 UTC MAIN commitmail json YAML

2017-04-24 10:56:03 UTC MAIN commitmail json YAML

If the stdout-path property is missing on /chosen, assume serial0:115200n8

(jmcneill)

2017-04-24 10:55:26 UTC MAIN commitmail json YAML

Defer acquiring the gpio until first use.

(jmcneill)

2017-04-24 10:46:42 UTC jdolecek-ncq commitmail json YAML

2017-04-24 10:21:15 UTC jdolecek-ncq commitmail json YAML

adjust error handling in interrupt handler - finish the successfully
finished xfers, and iterate to error out all the unfinished ones

(jdolecek)

2017-04-24 10:04:38 UTC MAIN commitmail json YAML

2017-04-24 09:57:59 UTC MAIN commitmail json YAML

add a NOTE section documenting the broken Seagate Barracuda drives

(jdolecek)

2017-04-24 09:57:22 UTC jdolecek-ncq commitmail json YAML

sync with HEAD, remove the nonfunctional Seagate 'mod15write' bug workaround

(jdolecek)

2017-04-24 09:42:52 UTC MAIN commitmail json YAML

remove the workaround for Seagate 'mod15write' bug, now driver only prints
error on boog; unfortunately the code actually doesn't work, and there is
little point trying to fix

(jdolecek)

2017-04-24 09:42:19 UTC MAIN commitmail json YAML

Use serial comma. Update a count.

(wiz)

2017-04-24 08:48:46 UTC jdolecek-ncq commitmail json YAML

2017-04-24 08:29:33 UTC jdolecek-ncq commitmail json YAML

adjust to interface changes - ata_queue is now dynamically allocated

(jdolecek)

2017-04-24 03:29:37 UTC MAIN commitmail json YAML

separate crypto_drv_mtx from crypto_mtx.

crypto_mtx is used only for cryptodev.c and ocryptodev.c now.

(knakahara)

2017-04-24 02:04:55 UTC MAIN commitmail json YAML

reduce crypto_q_mtx lock regions.

(knakahara)

2017-04-24 01:42:00 UTC MAIN commitmail json YAML

refactor crypto_unblock(). No functional change.

(knakahara)