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 07:37:59 UTC Now

2015-11-05 09:35:24 UTC netbsd-7-0 commitmail json YAML

Pull up following revision(s) (requested by pgoyette in ticket #998):
sys/compat/linux/arch/arm/linux_ptrace.c: revision 1.19
sys/compat/linux/arch/i386/linux_ptrace.c: revision 1.31
sys/compat/linux/arch/powerpc/linux_ptrace.c: revision 1.29
Don't release proc_lock until we're done looking at things that are
protected by the lock, particularly p_stat and p_waited.  Found by
Robert Elz.

(snj)

2015-11-05 09:34:23 UTC netbsd-7 commitmail json YAML

2015-11-05 09:30:20 UTC netbsd-7-0 commitmail json YAML

Pull up following revision(s) (requested by pgoyette in ticket #999):
sys/kern/kern_exit.c: revision 1.248
Update value of p_stat before we release the proc_lock.  Thanks to
Robert Elz.

(snj)

2015-11-05 09:30:11 UTC netbsd-7 commitmail json YAML

Pull up following revision(s) (requested by pgoyette in ticket #999):
sys/kern/kern_exit.c: revision 1.248
Update value of p_stat before we release the proc_lock.  Thanks to
Robert Elz.

(snj)

2015-11-05 09:28:30 UTC MAIN commitmail json YAML

Add missing options to SYNOPSIS and sort

(ozaki-r)

2015-11-05 09:26:59 UTC MAIN commitmail json YAML

2015-11-05 09:24:47 UTC netbsd-7 commitmail json YAML

Pull up following revision(s) (requested by pgoyette in ticket #998):
sys/compat/linux/arch/arm/linux_ptrace.c: revision 1.19
sys/compat/linux/arch/i386/linux_ptrace.c: revision 1.31
sys/compat/linux/arch/powerpc/linux_ptrace.c: revision 1.29
Don't release proc_lock until we're done looking at things that are
protected by the lock, particularly p_stat and p_waited.  Found by
Robert Elz.

(snj)

2015-11-05 09:21:50 UTC netbsd-7-0 commitmail json YAML

Pull up following revision(s) (requested by pgoyette in ticket #997):
sys/kern/kern_sig.c: revision 1.321
When delivering a signal, it's possible that the process's state in
p_stat is SACTIVE yet p_sflag is PS_STOPPING (while waiting for other
lwp's to stop).  In that case, we don't want to adjust the parent's
p_nstopchild count.
Found by Robert Elz.

(snj)

2015-11-05 09:21:30 UTC netbsd-7 commitmail json YAML

Pull up following revision(s) (requested by pgoyette in ticket #997):
sys/kern/kern_sig.c: revision 1.321
When delivering a signal, it's possible that the process's state in
p_stat is SACTIVE yet p_sflag is PS_STOPPING (while waiting for other
lwp's to stop).  In that case, we don't want to adjust the parent's
p_nstopchild count.
Found by Robert Elz.

(snj)

2015-11-05 09:05:19 UTC netbsd-7-0 commitmail json YAML

Pull up following revision(s) (requested by pgoyette in ticket #996):
sys/kern/kern_exec.c: revisions 1.419, 1.420
sys/kern/kern_exit.c: revisions 1.246, 1.247
sys/kern/kern_synch.c: revision 1.309
In execve_runproc(), update the p_waited entry for the process being
moved to SSTOP state, not for its parent.  (It is correct to update
the parent's p_nstopchild count.)  If the value is not already zero,
it could prevent its parent from waiting for the process.
Fixes PR kern/50298
--
When clearing out the scheduler queues during system shutdown, we move
all processes to the SSTOP state.  Make sure we update each process's
p_waited and the parents' p_nstopchild counters to maintain consistent
values.  Should not make any real difference this late in the shutdown
process, but we should still be consistent just in case.
Fixes PR kern/50318
--
Currently, if a process is exiting and its parent has indicated no intent
of reaping the process (nor any other children), the process wil get
reparented to init.  Since the state of the exiting process at this point
is SDEAD, proc_reparent() will not update either the old or new parent's
p_nstopchild counters.
This change causes both old and new parents to be properly updated.
Fixes PR kern/50300
--
For processes marked with PS_STOPEXIT, update the process's p_waited
value, and update its parent's p_nstopchild value when marking the
process's p_stat to SSTOP.  The process needed to be SACTIVE to get
here, so this transition represents an additional process for which
the parent needs to wait.
Fixes PR kern/50308
--
In spawn_return() we temporarily move the process state to SSTOP, but
without updating its p_waited value or its parent's p_nstopchild
counter.  Later, we restore the original state, again without any
adjustment of the related values.  This leaves a relatively short
window when the values are inconsistent and could interfere with the
proper operation of sys_wait() for the parent (if it manages to be
scheduled;  it's not totally clear what, if anything, prevents
scheduling/execution of the parent).
If during this window, any of the checks being made result in an
error, we call exit1() which will eventually migrate the process's
state to SDEAD (with an intermediate transition to SDYING).  At
this point the other variables get updated, and we finally restore
a consistent state.
This change updates the p_waited and parent's p_nstopchild at each
step to eliminate any windows during which the values could lead to
incorrect decisions.
Fixes PR kern/50330

(snj)

2015-11-05 09:04:55 UTC netbsd-7 commitmail json YAML

Pull up following revision(s) (requested by pgoyette in ticket #996):
sys/kern/kern_exec.c: revisions 1.419, 1.420
sys/kern/kern_exit.c: revisions 1.246, 1.247
sys/kern/kern_synch.c: revision 1.309
In execve_runproc(), update the p_waited entry for the process being
moved to SSTOP state, not for its parent.  (It is correct to update
the parent's p_nstopchild count.)  If the value is not already zero,
it could prevent its parent from waiting for the process.
Fixes PR kern/50298
--
When clearing out the scheduler queues during system shutdown, we move
all processes to the SSTOP state.  Make sure we update each process's
p_waited and the parents' p_nstopchild counters to maintain consistent
values.  Should not make any real difference this late in the shutdown
process, but we should still be consistent just in case.
Fixes PR kern/50318
--
Currently, if a process is exiting and its parent has indicated no intent
of reaping the process (nor any other children), the process wil get
reparented to init.  Since the state of the exiting process at this point
is SDEAD, proc_reparent() will not update either the old or new parent's
p_nstopchild counters.
This change causes both old and new parents to be properly updated.
Fixes PR kern/50300
--
For processes marked with PS_STOPEXIT, update the process's p_waited
value, and update its parent's p_nstopchild value when marking the
process's p_stat to SSTOP.  The process needed to be SACTIVE to get
here, so this transition represents an additional process for which
the parent needs to wait.
Fixes PR kern/50308
--
In spawn_return() we temporarily move the process state to SSTOP, but
without updating its p_waited value or its parent's p_nstopchild
counter.  Later, we restore the original state, again without any
adjustment of the related values.  This leaves a relatively short
window when the values are inconsistent and could interfere with the
proper operation of sys_wait() for the parent (if it manages to be
scheduled;  it's not totally clear what, if anything, prevents
scheduling/execution of the parent).
If during this window, any of the checks being made result in an
error, we call exit1() which will eventually migrate the process's
state to SDEAD (with an intermediate transition to SDYING).  At
this point the other variables get updated, and we finally restore
a consistent state.
This change updates the p_waited and parent's p_nstopchild at each
step to eliminate any windows during which the values could lead to
incorrect decisions.
Fixes PR kern/50330

(snj)

2015-11-05 08:29:42 UTC MAIN commitmail json YAML

Correctly document backtrace_symbols_fd_fmt.

From Henning Petersen in PR 50407.

Bump date.

(wiz)

2015-11-05 06:50:51 UTC MAIN commitmail json YAML

Improve lock traces and add reference traces

(ozaki-r)

2015-11-05 06:26:16 UTC MAIN commitmail json YAML

Remove SYSVSHM-specific code.  The value of shminfo.shmall is zero at
the time this pmap initialization code is called, so the increment is
a no-op.  (Thanks christos@ for pointing it out.)

(pgoyette)

2015-11-05 05:27:45 UTC netbsd-7 commitmail json YAML

2015-11-05 05:26:38 UTC netbsd-7 commitmail json YAML

Pull up following revision(s) (requested by wiz in ticket #981):
usr.bin/ftp/ftp.1: revision 1.135
usr.bin/ftp/ssl.c: revision 1.3
usr.bin/ftp/ssl.c: revision 1.4
usr.bin/ftp/ssl.h: revision 1.3
usr.bin/ftp/version.h: revision 1.86
usr.bin/ftp/version.h: revision 1.87
usr.bin/ftp/fetch.c: revision 1.207
usr.bin/ftp/main.c: revision 1.123
Add  -x xferbufsize  to set xferbuf size.
Implement  -x xferbufsize  set the socket send and receive buffer size,
as per 'xferbuf' in interactive mode.
Patch from Nicholas Mills (via private mail), with minor adjustment by me.
Add Server Name Indication (SNI) support for https.
Needed for e.g. some github URLs.
Bump version for SNI support.
servername cannot be NULL here.
Noted by joerg@.

(riz)

2015-11-05 05:24:11 UTC netbsd-7 commitmail json YAML

Pull up following revision(s) (requested by joerg in ticket #980):
lib/libform/form.h: revision 1.23
lib/libform/field.c: revision 1.29
Constify set_field_buffer.

(riz)

2015-11-05 03:48:51 UTC MAIN commitmail json YAML

Remove superfluous #includes - nothing depends on them

(pgoyette)

2015-11-05 02:57:36 UTC MAIN commitmail json YAML

Add tests for ifconfig parameters

From s-yamaguchi@IIJ

(ozaki-r)

2015-11-05 00:12:28 UTC MAIN commitmail json YAML

Remove unnecessary #include for sys/shm.h - there's nothing here that needs
anything from there.

(pgoyette)

2015-11-05 00:10:48 UTC MAIN commitmail json YAML

Now that SYSVSHM is modularized, reattach the linkages from uvm so that
we can correctly clean up on process exit or fork.

Without this, firefox attaches to a shared memory segment but doesn't
detach before exit.  Thus once firefox causes an autoload for sysv_ipc
it cannot be unloaded since the segment still retains references.

(pgoyette)

2015-11-05 00:02:59 UTC MAIN commitmail json YAML

2015-11-04 23:57:06 UTC MAIN commitmail json YAML

2015-11-04 21:09:21 UTC netbsd-7 commitmail json YAML

2015-11-04 21:08:09 UTC netbsd-7 commitmail json YAML

Pull up following revision(s) (requested by phx in ticket #977):
sys/dev/gpio/gpioiic.c: revision 1.7
i2c_acquire_bus() should return 0 on success.
Fixed bug in gpioiic_bb_set_bits(), which was introduced with the SDA/SCL-
reverse feature.
Now the driver is confirmed to work. Tested with Raspberry Pi GPIO.

(riz)

2015-11-04 21:05:01 UTC netbsd-7 commitmail json YAML

Pull up following revision(s) (requested by phx in ticket #976):
sys/arch/sandpoint/sandpoint/mainbus.c: revision 1.30
sys/arch/sandpoint/sandpoint/machdep.c: revision 1.64
sys/arch/sandpoint/sandpoint/flash_cfi.c: revision 1.4
Fix nor-flash bus space: extent limit should not be zero and bus space is
definitely big-endian. Reading the flash via /dev/flash0 works now.
Writing is untested.

(riz)

2015-11-04 21:04:11 UTC MAIN commitmail json YAML

mute the mixer with that has input children

(christos)

2015-11-04 21:00:30 UTC netbsd-7 commitmail json YAML

Pull up following revision(s) (requested by phx in ticket #975):
sys/dev/i2c/hytp14.c: revision 1.5
share/man/man4/hythygtemp.4: revision 1.3
sys/dev/i2c/hytp14var.h: revision 1.3
Tests showed that the sensor needs at least 30ms after a MR (measurement
request) to have valid data ready, so the driver didn't work very well.
Now the MR is sent in configurable intervals (hw.hythygtemp0.interval)
using callout(9), so that valid data is immediately available for
sysmon's sensor refresh. When the refresh comes too close after the last
MR, then the previous values are used.

(riz)

2015-11-04 20:55:48 UTC netbsd-7 commitmail json YAML

Pull up following revision(s) (requested by riastradh in ticket #898):
sys/dev/pci/hdaudio/hdaudio.c: revision 1.2
Initialize dma.dma_sizereg to avoid copying uninitialized data later.
This field is not actually used here -- not clear it should be in
the hdaudio_dma structure at all.
Noted by Coverity, CID 979553.

(riz)

2015-11-04 18:21:20 UTC netbsd-7-0 commitmail json YAML

2015-11-04 18:21:07 UTC netbsd-7-0 commitmail json YAML

Pull up following revision(s) (requested by msaitoh in ticket #971):
sys/dev/mii/atphy.c: revision 1.17
  Fix incorrect argument of mii_anar(). Fixes PR#50206.
XXX pullup -[567]

(riz)

2015-11-04 18:20:45 UTC netbsd-7 commitmail json YAML

2015-11-04 18:19:58 UTC netbsd-7 commitmail json YAML

Pull up following revision(s) (requested by msaitoh in ticket #971):
sys/dev/mii/atphy.c: revision 1.17
  Fix incorrect argument of mii_anar(). Fixes PR#50206.
XXX pullup -[567]

(riz)

2015-11-04 18:17:22 UTC netbsd-7 commitmail json YAML

Pull up following revision(s) (requested by riastradh in ticket #970):
sys/external/bsd/drm2/dist/drm/radeon/atombios_crtc.c: revision 1.4
Apply preceeding change:
Don't reserve if atomic -- caller must have pre-pinned the buffer.
to avivo_crtc_do_set_base() as well.

(riz)

2015-11-04 18:10:49 UTC MAIN commitmail json YAML

Remove trailing and stray whitespace.

(christos)

2015-11-04 18:04:34 UTC netbsd-7 commitmail json YAML

2015-11-04 18:04:28 UTC MAIN commitmail json YAML

more complex version to determine what is an input.

(christos)

2015-11-04 18:00:34 UTC netbsd-7 commitmail json YAML

Pull up following revision(s) (requested by maxv in ticket #965):
sys/kern/kern_cpu.c: revision 1.71
Don't decrement the number of offline cpus if we fail to shut down one.
ok christos@, via tech-kern@

(riz)

2015-11-04 17:58:38 UTC netbsd-7 commitmail json YAML

Pull up following revision(s) (requested by christos in ticket #964):
bin/sh/jobs.c: revision 1.74
bin/sh/jobs.c: revision 1.75
bin/sh/trap.c: revision 1.36
bin/sh/trap.c: revision 1.37
bin/sh/trap.h: revision 1.21
bin/sh/trap.h: revision 1.22
Process pending signals while waiting for a job:
    $ cat << EOF > hup.sh
    #!/bin/sh
    trap 'echo SIGHUP; exit 1' 1
    sleep 10000 &
    wait
    EOF
    $ chmod +x ./hup.sh
    $ ./hup.sh &
    $ kill -HUP %1
report the signal that wait was interrupted by, which is not always SIGINT
anymore.

(riz)

2015-11-04 17:55:23 UTC netbsd-7 commitmail json YAML

Pull up following revision(s) (requested by manu in ticket #962):
sys/kern/vfs_mount.c: revision 1.36
Do not VFS_SYNC before VFS_UNMOUNT on force unmount
VFS_SYNC does not consider whether we are performing a force unmount or not,
and therefore it can wait for a while if the filesytstem is misbehaving.
Removing VFS_SYNC before VFS_UNMOUNT on forced unmount fixes the problem.
This should not cause harm as the VFS_SYNC seems just useless.
As noted by Chuck Silvers in
http://mail-index.netbsd.org/tech-kern/2015/07/13/msg019156.html
- Nothing seems to prevent vnodes from getting dirty again after VFS_SYNC call.
- Filesystems do flush data through vflush() in VFS_UNMOUNT anyway.
As a consequence, the VFS_SYNC call in do_unmount() could probably be
completely removed. But since such a change is quite dangerous, we just
remove it in the case of forced unmounts, which are situations where
the risk of data loss is known to the operator.

(riz)

2015-11-04 17:50:37 UTC netbsd-7 commitmail json YAML

Pull up following revision(s) (requested by jmcneill in ticket #960):
sys/dev/mii/rgephy.c: revision 1.40
sys/dev/mii/rgephyreg.h: revision 1.9
Disable link down power save mode and energy efficient ethernet on RTL8211F.
add some more RTL8211F bits

(riz)

2015-11-04 17:46:21 UTC netbsd-7 commitmail json YAML

Pull up following revision(s) (requested by mrg in ticket #956):
sys/compat/netbsd32/files.netbsd32: revision 1.36
sys/compat/netbsd32/netbsd32_sysent.c: revision 1.115
sys/compat/netbsd32/netbsd32_syscallargs.h: revision 1.116
sys/nfs/nfs_var.h: revision 1.93
sys/compat/netbsd32/netbsd32_conv.h: revision 1.30
sys/compat/netbsd32/netbsd32_syscall.h: revision 1.116
sys/compat/netbsd32/netbsd32_syscalls.c: revision 1.115
sys/compat/netbsd32/netbsd32_nfssvc.c: revision 1.1
sys/compat/netbsd32/netbsd32_nfssvc.c: revision 1.3
sys/nfs/nfs_syscalls.c: revision 1.156
sys/compat/netbsd32/syscalls.master: revision 1.108
sys/compat/netbsd32/netbsd32.h: revision 1.107
add netbsd32 support for nfssvc(2).  we do this by defining 5 copyin/out
functions that do all the ugly work, are just plain copyin/out for the
native system calls, and do the necessary translations for netbsd32.
with this i'm able to run 32 bit nfsd and mountd on 64 bit kernel and
mount the file systems remotely.
don't copy the first netbsd32_export_args nexports times, but actually
advance the userland pointer each entry through the loop.  oops.

(riz)

2015-11-04 17:35:06 UTC netbsd-7 commitmail json YAML

2015-11-04 17:32:00 UTC netbsd-7 commitmail json YAML

Pull up following revision(s) (requested by manu in ticket #882):
sbin/umount/umount.c: revision 1.48
sys/nfs/nfsmount.h: revision 1.53
sys/nfs/nfs_var.h: revision 1.94
sys/nfs/nfs_iod.c: revision 1.7
sys/nfs/nfs_socket.c: revision 1.197
sys/nfs/nfs_bio.c: revision 1.191
sys/nfs/nfs_vfsops.c: revision 1.230
sys/nfs/nfs_clntsocket.c: revision 1.3
Remove useless and harmful sync(2) call in umount(8)
Remove sync(2) call before unmount(2) in umount(8). This sync(2) is useless
since unmount(2) will perform a VFS_SYNC anyway.
But moreover, this sync(2) may be harmful, as there are some situation where
it cannot return (unreachable NFS server, for instance), causing umount -f
to be uneffective.
Fix soft NFS force unmount
For many reasons, forcibly unmounting a soft NFS mount could hang forever.
Here are the fixes:
- Introduce decents timeouts in operation that awaited NFS server reply.
- On timeout, fails operations on soft mounts with EIO.
- Introduce NFSMNT_DISMNTFORCE to let the filesystem know that a
  force unmount is ongoing. This causes timeouts to be reduced and
  prevents the NFS client to attempt reconnecting to the NFS server.
Also fix a race condition where some asynchronous I/O could reference
destroyed mount structures. We fix this by awaiting asynchronous I/O
to drain before proceeding.
Reviewed by Chuck Silvers.

(riz)

2015-11-04 17:08:38 UTC netbsd-7 commitmail json YAML

2015-11-04 17:07:07 UTC netbsd-7 commitmail json YAML

Pull up following revision(s) (requested by shm in ticket #944):
libexec/ftpd/logwtmp.c: revision 1.26
libexec/ftpd/logwtmp.c: revision 1.27
Removed unnecessary memset(3) call
Clear utmpx struct before writing it to wtmpx files

(riz)

2015-11-04 17:06:23 UTC MAIN commitmail json YAML

2015-11-04 17:04:14 UTC netbsd-7 commitmail json YAML

Pull up following revision(s) (requested by maxv in ticket #940):
share/man/man4/options.4: revision 1.446
share/man/man4/options.4: revision 1.447
share/man/man9/malloc.9: revision 1.52
share/man/man9/malloc.9: revision 1.53
Remove the DIAGNOSTIC section, and two references to MALLOC and FREE.
Remove KMEMSTATS.
Remove the malloc debug options. They no longer exist.
Remove KMEMSTATS

(riz)

2015-11-04 16:43:51 UTC netbsd-7-0 commitmail json YAML

2015-11-04 16:43:30 UTC netbsd-7 commitmail json YAML

2015-11-04 16:40:58 UTC netbsd-7 commitmail json YAML

Pull up following revision(s) (requested by kamil in ticket #927):
share/man/man5/login.conf.5: revision 1.29
share/man/man7/sysctl.7: revision 1.88
share/man/man5/login.conf.5: revision 1.30
lib/libutil/login_cap.c: revision 1.32
share/man/man5/login.conf.5: revision 1.31
share/doc/psd/05.sysman/1.6.t: revision 1.6
Clean-up resources (sys/sys/resource.h) usage
Add vmemoryuse to login_cap(3)
Document vmemoryuse in login.conf(5)
Reviewed by <riastradh>
Approved by <pgoyette>
Tested by Dominik Bialy
Closes PR xsrc/49912
Bump date for previous.
Clean-up documentation of login.conf(5)
Remove redundant word "limit" from sentences "Maximum ...".
Note that vmemoryuse might specify both maximum and current limits.
Remove redundant 'in bytes' from the description of vmemoryuse, it's not
ed
in the next section describing the argument type 'size'.
Changes inspired by <riastradh> in PR xsrc/49912

(riz)

2015-11-04 16:29:56 UTC netbsd-7 commitmail json YAML

Pull up following revision(s) (requested by christos in ticket #920):
lib/libc/stdio/fopen.3: revision 1.31
lib/libc/stdio/setbuf.3: revision 1.14
lib/libc/stdio/makebuf.c: revision 1.18
Allow changing the default buffering policy for a stdio stream during
construction by setting environment variables.

(riz)

2015-11-04 16:27:25 UTC netbsd-7 commitmail json YAML

Pull up following revision(s) (requested by riastradh in ticket #905):
sys/external/bsd/drm2/include/radeon/r600_reg_safe.h: revision 1.2
sys/external/bsd/drm2/include/radeon/rn50_reg_safe.h: revision 1.2
sys/external/bsd/drm2/include/radeon/evergreen_reg_safe.h: revision 1.2
sys/external/bsd/drm2/include/radeon/r420_reg_safe.h: revision 1.2
sys/external/bsd/drm2/include/radeon/rv515_reg_safe.h: revision 1.2
sys/external/bsd/drm2/include/radeon/r100_reg_safe.h: revision 1.2
sys/external/bsd/drm2/include/radeon/r200_reg_safe.h: revision 1.2
sys/external/bsd/drm2/include/radeon/rs600_reg_safe.h: revision 1.2
sys/external/bsd/drm2/include/radeon/r300_reg_safe.h: revision 1.2
sys/external/bsd/drm2/include/radeon/cayman_reg_safe.h: revision 1.2
Regen to get real rcsids here.

(riz)

2015-11-04 16:25:17 UTC netbsd-7 commitmail json YAML

Pull up following revision(s) (requested by riastradh in ticket #899):
sys/dev/cgd.c: revision 1.97
Use explicit_memset to zero key material.

(riz)

2015-11-04 16:24:38 UTC netbsd-7-0 commitmail json YAML

Pull up following revision(s) (requested by riastradh in ticket #899):
sys/dev/cgd.c: revision 1.97
Use explicit_memset to zero key material.

(riz)

2015-11-04 16:21:52 UTC MAIN commitmail json YAML

2015-11-04 16:04:55 UTC MAIN commitmail json YAML

2015-11-04 15:04:52 UTC netbsd-7 commitmail json YAML

2015-11-04 15:01:56 UTC MAIN commitmail json YAML

be more selective and mute only mic's. Suggested by jmcneill

(christos)

2015-11-04 14:56:32 UTC netbsd-7 commitmail json YAML

Pull up following revision(s) (requested by riastradh in ticket #896):
sys/ufs/ffs/ffs_bswap.c: revision 1.38
sys/ufs/ffs/ffs_bswap.c: revision 1.39
Don't (harmlessly) overrun di_db array; copy di_ib separately.
Noted by Coverity, CID 974635.
While here, simplify size calculation for memcpy.
memcpy di_extb/db/ib separately.  Noted by Coverity, CID 974636.

(riz)

2015-11-04 14:11:09 UTC MAIN commitmail json YAML

Startup with the mic muted to avoid feedback and spying.

(christos)

2015-11-04 09:24:14 UTC MAIN commitmail json YAML

Use An in AUTHORS section.

(wiz)

2015-11-04 08:07:54 UTC MAIN commitmail json YAML

Fix rump.ping6 -c N (N > 1) doesn't work

2nd packet and subsequent packets are sent based on SIGALRM and
it depends on poll(2) returns with EINTR by the signal. However,
currently poll is rump-ified while signals aren't so the signal
doesn't wake up poll and ping6 doesn't work expectedly.

Rump-ifying signals is unsure (nobody does it for now) and the
combination use of signals and poll makes the logic a bit complex.
So let's fix the defect by stopping using signals for packet
transmissions. The new logic is derived from ping(8).

Bonus: ping6 -i 0.01 works as we expect now while the original
didn't work enough fast.

(ozaki-r)

2015-11-04 07:59:25 UTC MAIN commitmail json YAML

Fix exit status when -c and -X is used

It exited with status 0 when at least one packet was received
and timed out. However, when we specify -c N (while N > 0),
we expect that it fails if it times out before all sent requests
are replied.

(ozaki-r)

2015-11-04 05:11:16 UTC MAIN commitmail json YAML

ADded Apple iDevices:
iPhone 4, 4_VZW, 4s, and 5.
iPad 2, 3 and Mini

This is in preparation for forcing all of these devices to attach as
ugen(4)
devices rather than as uhid/uaudio devices.

(buhrow)

2015-11-04 05:05:45 UTC MAIN commitmail json YAML

ADded Apple iDevices:
iPhone 4, 4_VZW, 4s, and 5.
iPad 2, 3 and Mini

This is in preparation for forcing all of these devices to attach as ugen(4)
devices rather than as uhid/uaudio devices.

(buhrow)

2015-11-04 04:31:53 UTC MAIN commitmail json YAML

Document the ms_flags field which is now exported in struct modstat

(pgoyette)

2015-11-04 04:30:42 UTC MAIN commitmail json YAML

Add FLAGS to the module data displayed.  Reduce some of the extra
inter-column white-space to (partly) compensate for the additional
column.

(pgoyette)

2015-11-04 04:28:59 UTC MAIN commitmail json YAML

2015-11-04 01:14:02 UTC MAIN commitmail json YAML

2015-11-03 21:36:59 UTC MAIN commitmail json YAML

Fix descriptions of el_set functions.
Americanise initialise :-)

(christos)

2015-11-03 19:28:28 UTC MAIN commitmail json YAML

2015-11-03 18:38:03 UTC MAIN commitmail json YAML

A debe can't feed both tcon at the same time.
AWIN_DEBE_MODCTL_OUT_SEL will select which tcon instance will get data
(0 for tcon0, 1 for tcon1).
In tcon, AWIN_TCON_CTL_SRC_SEL_DE0 selects the default debe for this
tcon instance: debe0 for tcon0, debe1 for tcon1.
So always connect tcon0 to debe0 and tcon1 to debe1.
now display modes 0, 1 and 2 works; display modes 3 and 4 needs more work.

(bouyer)

2015-11-03 14:15:08 UTC MAIN commitmail json YAML

PR/50199 - fix for strftime called with empty string.
Patch written by Juho Salminen

(shm)

2015-11-03 11:14:05 UTC MAIN commitmail json YAML

2015-11-03 10:43:31 UTC MAIN commitmail json YAML

2015-11-03 10:26:06 UTC MAIN commitmail json YAML

2015-11-03 07:59:29 UTC MAIN commitmail json YAML

Also wait for DAT when sending RSP_BSY commands. Fixes PR 50388.

(mlelstv)

2015-11-03 06:49:39 UTC MAIN commitmail json YAML

fix timeout path in soft reset when building with SDHC_DEBUG

(mlelstv)

2015-11-03 06:00:50 UTC MAIN commitmail json YAML

remove some trailing \'s that aren't needed.  from Ryosuke Moro

(mrg)

2015-11-03 03:33:43 UTC MAIN commitmail json YAML

Remove extraneous ')' from previous.

(pgoyette)

2015-11-03 03:01:35 UTC MAIN commitmail json YAML

By my count, [[[[[cc]yy]mm]dd]hh]mm[.ss] has seven fields, not six!

(pgoyette)

2015-11-03 02:19:24 UTC MAIN commitmail json YAML

Add a "header" subcommand that displays information about the size of
the disk along with information from the GPT header if it exists.

(jnemeth)

2015-11-03 02:04:12 UTC MAIN commitmail json YAML

Add some additional status messages for kern.module.verbose=TRUE

(pgoyette)

2015-11-02 22:21:26 UTC MAIN commitmail json YAML

enable 8-bit mode on AM335X SDMMC2

(jmcneill)

2015-11-02 22:21:01 UTC MAIN commitmail json YAML

Support 8-bit eMMC for TI AM335x. On my BeagleBone Black,

Before: 134217728 bytes transferred in 9.410 secs (14263307 bytes/sec)
After:  134217728 bytes transferred in 7.518 secs (17852850 bytes/sec)

(jmcneill)

2015-11-02 22:18:45 UTC MAIN commitmail json YAML

allow vendor specific code to hook into bus width changes

(jmcneill)

2015-11-02 17:45:13 UTC MAIN commitmail json YAML

PR/50395: Vicente Chaves de Melo: Loss of characters in serial port
communication between gdb and kgdb_stub: switch to line break interrupt
both when entering KGDB and also on shutdown so we can re-enter the debugger
with BREAK.

(christos)

2015-11-02 17:40:20 UTC MAIN commitmail json YAML

Add dkctl to evbarm ramdisk, so we can configure wedges.

(riz)

2015-11-02 15:21:23 UTC MAIN commitmail json YAML

Add missing paren.

(christos)

2015-11-02 14:49:07 UTC MAIN commitmail json YAML

Use existing macros to implement TAILQ_FOREACH_REVERSE, like
TAILQ_FOREACH_REVERSE_SAFE does.

(christos)

2015-11-02 12:06:33 UTC MAIN commitmail json YAML

' != " so make the condition actually work.

(joerg)

2015-11-02 09:57:43 UTC MAIN commitmail json YAML

Don't forget to call nfs_fini() when we're finished.  Without this,
we leave a dangling pool nfsrvdescpl around.

(pgoyette)

2015-11-02 09:29:08 UTC MAIN commitmail json YAML

Add verbose messages when the kernel disables MSI/MSI-X.

(knakahara)

2015-11-02 08:37:28 UTC MAIN commitmail json YAML

2015-11-02 02:45:25 UTC MAIN commitmail json YAML

2015-11-02 01:06:15 UTC MAIN commitmail json YAML

2015-11-02 00:51:18 UTC MAIN commitmail json YAML

Use -f with cp.

When the source tree is 444 (as should be unremarkable), cp results in
object files that are 444, which when cp'd again without -f result in
an error.

(gdt)

2015-11-02 00:50:47 UTC MAIN commitmail json YAML

omapgpio(4): Add support for TI AM335x GPIO

(jmcneill)

2015-11-02 00:49:24 UTC MAIN commitmail json YAML

2015-11-02 00:48:45 UTC MAIN commitmail json YAML

2015-11-01 23:33:05 UTC MAIN commitmail json YAML

AM335x EDMA3 has an alignment restriction for both SAM and DAM in constant
addressing mode. In these cases, the physical address must be aligned to
256-bits. To handle this, pre-allocate a MAXPHYS sized bounce buffer and
use it for unaligned transfers.

Fixes "edma errint!" problem mentioned in port-arm/50288.

(jmcneill)

2015-11-01 22:41:24 UTC MAIN commitmail json YAML

Allow PCI implementers to specify arbitrary makefile constructs.
(interface subject to change)

from Robert Millan

(pooka)

2015-11-01 21:31:40 UTC MAIN commitmail json YAML

Don't pretend to do zero length IN control transfers as dwctwo(4)
(correctly according to usb 2.0 specification 8.5.3) uses IN status stage
when no (zero length) data stage.  Instead read into a 1 byte array.

My uplcom(4) now works on RPI.

(skrll)

2015-11-01 17:44:42 UTC MAIN commitmail json YAML

Ignore the ancient 01.01 tag that gnuc used to put in old NetBSD binaries.

(christos)

2015-11-01 17:23:36 UTC MAIN commitmail json YAML

Don't overwrite the user iov pointer in sendmmsg. Make the send and receive
code look the same.

(christos)

2015-11-01 15:21:42 UTC MAIN commitmail json YAML

2015-11-01 14:47:54 UTC MAIN commitmail json YAML

2015-11-01 12:34:28 UTC MAIN commitmail json YAML

fix typo: fnctl -> fcntl

from Robert Millan <rmh@gnu.org> via rumpkernel-users

(pooka)

2015-11-01 12:09:49 UTC nick-nhusb commitmail json YAML

Missed a s:uhcidebug >:uhcidebug >=: in the consistency with USBHIST_LOGN
commit

(skrll)

2015-11-01 12:03:48 UTC nick-nhusb commitmail json YAML

2015-11-01 11:02:23 UTC MAIN commitmail json YAML

Improve wording even more, suggested by Robert Elz.

(wiz)

2015-11-01 10:45:42 UTC nick-nhusb commitmail json YAML

Print 0 or 1 and not bit value

(skrll)

2015-11-01 10:36:52 UTC nick-nhusb commitmail json YAML

Prefix hex values in debug output with "0x"

(skrll)

2015-11-01 10:18:44 UTC nick-nhusb commitmail json YAML

Consistency with USBHIST_LOGN

(skrll)

2015-11-01 10:14:19 UTC nick-nhusb commitmail json YAML

2015-11-01 09:03:29 UTC MAIN commitmail json YAML

2015-11-01 08:55:05 UTC MAIN commitmail json YAML

Use SCSIPI_CHAN_NOSETTLE.

(pooka)

2015-11-01 08:54:37 UTC MAIN commitmail json YAML

2015-11-01 08:52:29 UTC MAIN commitmail json YAML

Fix macro. Remove trailing whitespace.

(wiz)

2015-11-01 01:40:23 UTC MAIN commitmail json YAML

panel_below(NULL) returns the top panel.
panel_above(NULL) returns the bottom panel.

(uwe)

2015-10-31 22:03:58 UTC netbsd-7 commitmail json YAML

2015-10-31 21:35:29 UTC netbsd-7 commitmail json YAML

src/external/gpl3/gcc/dist/ChangeLog@1.1.1.4.2.3 / diff / nxr@1.1.1.4.2.3
src/external/gpl3/gcc/dist/INSTALL/binaries.html@1.3.2.1 / diff / nxr@1.3.2.1
src/external/gpl3/gcc/dist/INSTALL/build.html@1.3.2.1 / diff / nxr@1.3.2.1
src/external/gpl3/gcc/dist/INSTALL/configure.html@1.3.2.1 / diff / nxr@1.3.2.1
src/external/gpl3/gcc/dist/INSTALL/download.html@1.3.2.1 / diff / nxr@1.3.2.1
src/external/gpl3/gcc/dist/INSTALL/finalinstall.html@1.3.2.1 / diff / nxr@1.3.2.1
src/external/gpl3/gcc/dist/INSTALL/gfdl.html@1.3.2.1 / diff / nxr@1.3.2.1
src/external/gpl3/gcc/dist/INSTALL/index.html@1.3.2.1 / diff / nxr@1.3.2.1
src/external/gpl3/gcc/dist/INSTALL/old.html@1.3.2.1 / diff / nxr@1.3.2.1
src/external/gpl3/gcc/dist/INSTALL/prerequisites.html@1.3.2.1 / diff / nxr@1.3.2.1
src/external/gpl3/gcc/dist/INSTALL/specific.html@1.3.2.1 / diff / nxr@1.3.2.1
src/external/gpl3/gcc/dist/INSTALL/test.html@1.3.2.1 / diff / nxr@1.3.2.1
src/external/gpl3/gcc/dist/LAST_UPDATED@1.3.2.3 / diff / nxr@1.3.2.3
src/external/gpl3/gcc/dist/MD5SUMS@1.3.2.3 / diff / nxr@1.3.2.3
src/external/gpl3/gcc/dist/NEWS@1.3.2.1 / diff / nxr@1.3.2.1
src/external/gpl3/gcc/dist/config/ChangeLog@1.1.1.4.2.3 / diff / nxr@1.1.1.4.2.3
src/external/gpl3/gcc/dist/configure@1.6.2.3 / diff / nxr@1.6.2.3
src/external/gpl3/gcc/dist/configure.ac@1.5.4.3 / diff / nxr@1.5.4.3
src/external/gpl3/gcc/dist/contrib/ChangeLog@1.1.1.4.2.3 / diff / nxr@1.1.1.4.2.3
src/external/gpl3/gcc/dist/contrib/reghunt/ChangeLog@1.1.1.4.2.2 / diff / nxr@1.1.1.4.2.2
      :
(more 385 files)
Apply patch (requested by mrg in ticket #1005):
Update gcc to 4.8.5.

(snj)

2015-10-31 20:13:45 UTC MAIN commitmail json YAML

don't look for libdrm_nouveau unless we've built it.

(mrg)

2015-10-31 17:45:33 UTC MAIN commitmail json YAML

mention what we are allowed to do.

(christos)

2015-10-31 17:04:39 UTC MAIN commitmail json YAML

Adjust compat netbsd32 clock_nanosleep(2) to match recent native
changes that return error number.

(njoly)

2015-10-31 12:41:25 UTC MAIN commitmail json YAML

2015-10-31 12:31:37 UTC MAIN commitmail json YAML

PR misc/50046
Remove the expensive tests in _have_rc_postprocessor(), as proposed by apb@.
It more than halves the multiuser boot time on slow machines and brings
it back near to the previous level.

(phx)

2015-10-31 09:14:27 UTC MAIN commitmail json YAML

disable the once-a-second and many-times-a-minute logs about thermals.

these trigger on multiple cards for me and totally spam my logs in the
normal case.  one card switches from 41% to 42% and back again quite
regularly.

(mrg)

2015-10-31 03:42:00 UTC MAIN commitmail json YAML

Don't attempt to set TM_ZONE (name) for 'J' as isdst isn't known.

(ginsbach)

2015-10-31 02:40:44 UTC MAIN commitmail json YAML

Use PRIxPADDR instead of type casting.

(nakayama)

2015-10-31 02:36:17 UTC MAIN commitmail json YAML

Remove #define SUN4U since machine/frame.h doesn't check SUN4U anymore.

(nakayama)

2015-10-31 02:25:11 UTC MAIN commitmail json YAML

2015-10-31 02:14:08 UTC MAIN commitmail json YAML

make %Z and %z understand the same strings.

(christos)

2015-10-31 02:13:41 UTC MAIN commitmail json YAML

2015-10-31 02:09:06 UTC MAIN commitmail json YAML

- Add reference to RFC-3339
- Add J to military / nautical time zone description

(ginsbach)

2015-10-31 00:55:18 UTC MAIN commitmail json YAML

handle asprintf errors consistently.

(christos)

2015-10-31 00:41:19 UTC MAIN commitmail json YAML

fix the status return.

(christos)

2015-10-30 23:45:31 UTC MAIN commitmail json YAML

2015-10-30 23:27:47 UTC MAIN commitmail json YAML

2015-10-30 23:21:05 UTC MAIN commitmail json YAML

- don't use alloca and then check if alloca returns null and then try to
  free it. Allocating from the stack does not return null, and freeing it
  will have unpredictable results. use malloc instead.
- now we are using malloc remove -Wno-stack-protector kludge

(christos)

2015-10-30 23:06:49 UTC MAIN commitmail json YAML

mention vioscsi

(christos)

2015-10-30 22:29:23 UTC MAIN commitmail json YAML

2015-10-30 21:59:26 UTC MAIN commitmail json YAML

Fake mode sense data for illegal targets. qemu reports 256 targets...

(christos)

2015-10-30 21:36:25 UTC MAIN commitmail json YAML

Add 'J' (Juliett) as military time zone name meaning the local time zone.

(ginsbach)

2015-10-30 21:18:16 UTC MAIN commitmail json YAML

kill some more debugging.

(christos)

2015-10-30 21:16:15 UTC MAIN commitmail json YAML

2015-10-30 21:15:05 UTC MAIN commitmail json YAML

this is working now, remove debugging.

(christos)

2015-10-30 20:38:31 UTC MAIN commitmail json YAML

2015-10-30 20:03:45 UTC MAIN commitmail json YAML

- Move PCI_INTRSTR_LEN from pcireg.h to pcivar.h.
- In PCI-X cap, print 2nd bus's PCI-X mode, error protection type, Max clock
  frequency and Max clock period.
- In SATA cap, print register location correctly.
- In Virtual Channel cap, print reference clock with "ns".
- In Root Complex Link Declaration, print Link Entry number.

(msaitoh)

2015-10-30 19:22:01 UTC MAIN commitmail json YAML

- On ICH8, call wm_gig_downshift_workaround_ich8lan() when link changed down.
- Drop PHY_CTRL_GBE_DIS explicitly in wm_lplu_d0_disable() in case BIOS sets
  this bit.
- Fix two bugs in wm_kmrn_lock_loss_workaround_ich8lan(). Now the function
  checks the status correctly but it causes linkdown up to 10 times, so it's
  disabled for the time being.

(msaitoh)

2015-10-30 19:11:57 UTC MAIN commitmail json YAML

2015-10-30 19:04:21 UTC MAIN commitmail json YAML

2015-10-30 19:04:10 UTC MAIN commitmail json YAML

2015-10-30 18:53:26 UTC MAIN commitmail json YAML

Fix build with "USE_SSP" set to "yes".

(tron)

2015-10-30 18:52:16 UTC MAIN commitmail json YAML

- Fix a problem that wm_gate_hw_phy_config_ich8lan() isn't called in wm_reset()
  on PCH2.
- Clear WMREG_WUC in wm_reset() if the chip >= 82544. This might fix the
  behavior on suspend/resume.
- Fix logic of wm_check_reset_block() on ICH* and PCH*. This change might fix
  a problem that PHY's read/write functions can't get semaphore.
- Fix wm_check_mng_mode_ich8lan(). This function is used only when WM_WOL is
  defined and it's disabled by default.
- KNF.

(msaitoh)

2015-10-30 18:29:08 UTC MAIN commitmail json YAML

Call wm_get_wakeup(sc) before checking WM_F_HAS_AMT.

(msaitoh)

2015-10-30 18:25:50 UTC MAIN commitmail json YAML

2015-10-30 18:23:37 UTC MAIN commitmail json YAML

Call wm_get_hw_control() correctly. This change fixes a bug that some AMT
based systems doesn't linkup at 1000BaseT. The problem was observed on
HP Compaq dc7700.

A lot of fixes have been done to wm(4) and igphy(4). Now PR#44893 should be
fixed.

(msaitoh)

2015-10-30 18:20:16 UTC MAIN commitmail json YAML

2015-10-30 18:04:42 UTC MAIN commitmail json YAML

revert timezone() ifdef; it is wrong (pointed out by ginsbach)

(christos)

2015-10-30 16:21:46 UTC MAIN commitmail json YAML

Add a missing newline in zs at sbus attach message.

(tsutsui)

2015-10-30 12:19:08 UTC MAIN commitmail json YAML

Fixed format string types to make it compile with BAH_DEBUG again.

(phx)

2015-10-30 12:14:33 UTC MAIN commitmail json YAML

Include genfb.h for NGENFB.

(phx)

2015-10-30 07:44:52 UTC MAIN commitmail json YAML

Disable LPLU (Low Power Link Up) on D0 state on 82574, 82583 and ICH* too.

(msaitoh)

2015-10-30 07:35:30 UTC MAIN commitmail json YAML

igphy(4),ukphy(4): Set mii_mpd_* entries.
wm(4): check PHY type correctly.

(msaitoh)

2015-10-30 03:18:10 UTC MAIN commitmail json YAML

ISO 8601 and RFC 3339 specify that an offset can be up to 23:59 and
not 12:00 east/west.  Just proves that one shouldn't use other
implementations as a canonical reference.  Thanks to all who pointed
this out.

(ginsbach)

2015-10-30 03:08:57 UTC MAIN commitmail json YAML

Add tzgetgmtoff() prototype I forgot to commit.

(christos)

2015-10-30 01:51:15 UTC MAIN commitmail json YAML

Additional tests for timezone offsets.

(ginsbach)

2015-10-30 01:49:36 UTC MAIN commitmail json YAML

Reject timezone offsets more than 12 hours (east or west).

(ginsbach)

2015-10-29 22:42:55 UTC MAIN commitmail json YAML

2015-10-29 22:37:15 UTC MAIN commitmail json YAML

After setting HS_TIMING value for HS200 or later, send repeated SEND_STATUS
command until the device is no longer busy or the SWITCH_ERROR bit is set.

(jmcneill)

2015-10-29 21:07:48 UTC MAIN commitmail json YAML

only advertise HS200 and 8-bit mode on the eMMC slot

(jmcneill)

2015-10-29 20:29:24 UTC MAIN commitmail json YAML

Correct typos in comments

Pointed out by Edgar Fuss and J. Lewis Muir.

(kamil)

2015-10-29 19:18:32 UTC MAIN commitmail json YAML

another lint warning for compat.

(christos)

2015-10-29 19:18:19 UTC MAIN commitmail json YAML

- use #defined constants (from gisbach)
- back to setting tm_zone to NULL when we don't know.

(christos)

2015-10-29 18:40:19 UTC MAIN commitmail json YAML

if NUSB == 0, don't look for usbhist.

(mrg)

2015-10-29 17:57:27 UTC MAIN commitmail json YAML

2015-10-29 17:55:09 UTC MAIN commitmail json YAML

2015-10-29 17:54:49 UTC MAIN commitmail json YAML

PR/50380: Balazs Scheidler: strptime() returns incorrect values in tm_gmtoff
- Always offset in seconds.
- Handle arbitrary timezones.

(christos)

2015-10-29 17:53:05 UTC MAIN commitmail json YAML

2015-10-29 17:51:58 UTC MAIN commitmail json YAML

Document tzgetgmtoff(3)

(christos)

2015-10-29 17:49:24 UTC MAIN commitmail json YAML

Add tzgetgmtoff, delint compat

(christos)

2015-10-29 17:48:55 UTC MAIN commitmail json YAML

add tzgetgmtoff

(christos)

2015-10-29 17:48:21 UTC MAIN commitmail json YAML

2015-10-29 16:19:44 UTC MAIN commitmail json YAML

Make sure that nde->td_node is NULL for asserts.
Thanks and from Mindaugas Rasiukevicius.

Fixes PR kern/50381.

(leot)

2015-10-29 15:19:43 UTC MAIN commitmail json YAML

Simplify even further and fix non-modular kernels:
We cannot use the init at attach() trick, because other npf ext modules
will load before the attach function is called on non modular kernels.

(christos)

2015-10-29 11:31:52 UTC MAIN commitmail json YAML

- Added error checks for initgroups(3) and setgroups(2).
- Reorder functions in privilege regain - setgroups(2) should be called after
  seteuid(2).

OK christos@

(shm)

2015-10-29 10:12:28 UTC MAIN commitmail json YAML

2015-10-29 10:10:09 UTC MAIN commitmail json YAML

2015-10-29 08:09:55 UTC MAIN commitmail json YAML

properly link and enable all the nouveau parts.
with this, hw GL seems to work!

(mrg)

2015-10-29 08:08:52 UTC MAIN commitmail json YAML

provide a ttm-backed set of nouveau_uvm_ops{} in the ttm_bo_driver{}.
fixes NULL pointer derefs inside UVM due to lack of pager ops.

copy the DRM_FILE_PAGE_OFFSET vs !_LP64 workaround.

with these, X starts up on my GTX 440.

(mrg)

2015-10-29 07:46:08 UTC MAIN commitmail json YAML

New sentence, new line.

(wiz)

2015-10-29 07:24:01 UTC MAIN commitmail json YAML

Fix a bug that the multiqueue setting is done in a multiqueue capabile
chip but can't use MSI-X on a machine. In that case, only one queue must
be used. Written by knakahara@ and tested by me.

This change should be fix a problem which was reported by Robert Swindells.

(msaitoh)

2015-10-29 06:57:34 UTC MAIN commitmail json YAML

More articles, less typos.

(wiz)

2015-10-29 02:36:01 UTC MAIN commitmail json YAML

Document update_panels().

(uwe)

2015-10-29 02:33:46 UTC MAIN commitmail json YAML

Fix typo missed by wizd(8).

(uwe)

2015-10-29 02:29:41 UTC MAIN commitmail json YAML

2015-10-29 02:09:02 UTC MAIN commitmail json YAML

Name virtqueue index

(ozaki-r)

2015-10-29 01:56:12 UTC MAIN commitmail json YAML