CVS commit: src/sys/net80211

2018-05-08 Thread Maxime Villard
Module Name:src
Committed By:   maxv
Date:   Tue May  8 07:02:07 UTC 2018

Modified Files:
src/sys/net80211: ieee80211_crypto.c ieee80211_input.c
ieee80211_output.c ieee80211_var.h

Log Message:
Remove three useless debug messages, remove meaningless XXXs, and remove
ieee80211_note_frame (unused).


To generate a diff of this commit:
cvs rdiff -u -r1.22 -r1.23 src/sys/net80211/ieee80211_crypto.c
cvs rdiff -u -r1.110 -r1.111 src/sys/net80211/ieee80211_input.c
cvs rdiff -u -r1.62 -r1.63 src/sys/net80211/ieee80211_output.c
cvs rdiff -u -r1.32 -r1.33 src/sys/net80211/ieee80211_var.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/dev/pci

2018-05-08 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Tue May  8 07:59:56 UTC 2018

Modified Files:
src/sys/dev/pci: if_wm.c

Log Message:
 rxipsum and rxtusum are not interrupt counter, so use EVCNT_TYPE_MISC
instead of EVCNT_TYPE_INTR.


To generate a diff of this commit:
cvs rdiff -u -r1.576 -r1.577 src/sys/dev/pci/if_wm.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/dev/pci/ixgbe

2018-05-08 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Tue May  8 09:45:54 UTC 2018

Modified Files:
src/sys/dev/pci/ixgbe: ix_txrx.c ixgbe.c ixgbe.h ixv.c

Log Message:
- Fix broken watchdog timer. This change detects TX device timeout correctly.
  NOTE: It's supporsed not to be called {ixgbe,ixv}_rearm_queues() in the
  timer. Those are not required if any chip have no bug. In reality,
  ixgbe_rearm_queues() is required on 82599 and newer chip AND other than
  queue 0 to prevent device timeout. When it occured, packet was sent but the
  descriptor's DD bit wasn't set even though IXGBE_TXD_CMD_EOP and
  IXGBE_TXD_CMD_RS were set. After forcing interrupt by writing EICS register
  in ixgbe_rearm_queues(), DD is set. Why? Is this an undocumented errata? It
  might be possible not call rearm_queues on 82598 or queue 0, we call in any
  cases in case the problem occurs. On ixv(4), I have not seen this problem yet
  (though I tested only on X550_X(Xeon D 12xx)'s virtual function), but we
  do rearm in case TX device timeout happen.
- ixv(4): Call callout_stop() earlier in ixv_stop() like ixgbe_stop().
- KNF.


To generate a diff of this commit:
cvs rdiff -u -r1.41 -r1.42 src/sys/dev/pci/ixgbe/ix_txrx.c
cvs rdiff -u -r1.149 -r1.150 src/sys/dev/pci/ixgbe/ixgbe.c
cvs rdiff -u -r1.46 -r1.47 src/sys/dev/pci/ixgbe/ixgbe.h
cvs rdiff -u -r1.95 -r1.96 src/sys/dev/pci/ixgbe/ixv.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/dev/ic

2018-05-08 Thread Paul Goyette
Module Name:src
Committed By:   pgoyette
Date:   Tue May  8 10:41:56 UTC 2018

Modified Files:
src/sys/dev/ic: hme.c

Log Message:
Fix mis-placed right paren.  kern/53271


To generate a diff of this commit:
cvs rdiff -u -r1.96 -r1.97 src/sys/dev/ic/hme.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/dev/pci

2018-05-08 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Tue May  8 11:36:40 UTC 2018

Modified Files:
src/sys/dev/pci: if_wm.c

Log Message:
 Fix a bug that TX might stall because WM_TXQ_NO_SPACE is not cleared in
if_init() (though I've never seen this problem). Clear txq->txq_flags in
wm_init_tx_queue(). OK'd by knakahara.


To generate a diff of this commit:
cvs rdiff -u -r1.577 -r1.578 src/sys/dev/pci/if_wm.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/usr.sbin/cpuctl/arch

2018-05-08 Thread Ryo Shimizu
Module Name:src
Committed By:   ryo
Date:   Tue May  8 11:42:43 UTC 2018

Modified Files:
src/usr.sbin/cpuctl/arch: aarch64.c

Log Message:
TGran64 indication was actually the opposite


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/usr.sbin/cpuctl/arch/aarch64.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/bin/ksh

2018-05-08 Thread Kamil Rytarowski
Module Name:src
Committed By:   kamil
Date:   Tue May  8 16:37:59 UTC 2018

Modified Files:
src/bin/ksh: c_ksh.c c_sh.c emacs.c eval.c exec.c expand.h expr.c
history.c io.c lex.c mail.c main.c misc.c syn.c table.c trap.c
tree.c var.c vi.c

Log Message:
Stop using the register keyword in ksh(1)

ksh also does some strange things with it, like put it in argument lists.

No functional change intended.

PR bin/53237 ksh: remove register keyword by Nia Alarie


To generate a diff of this commit:
cvs rdiff -u -r1.27 -r1.28 src/bin/ksh/c_ksh.c
cvs rdiff -u -r1.23 -r1.24 src/bin/ksh/c_sh.c src/bin/ksh/misc.c \
src/bin/ksh/var.c
cvs rdiff -u -r1.37 -r1.38 src/bin/ksh/emacs.c
cvs rdiff -u -r1.22 -r1.23 src/bin/ksh/eval.c src/bin/ksh/lex.c \
src/bin/ksh/main.c
cvs rdiff -u -r1.26 -r1.27 src/bin/ksh/exec.c
cvs rdiff -u -r1.6 -r1.7 src/bin/ksh/expand.h src/bin/ksh/table.c
cvs rdiff -u -r1.11 -r1.12 src/bin/ksh/expr.c
cvs rdiff -u -r1.18 -r1.19 src/bin/ksh/history.c
cvs rdiff -u -r1.17 -r1.18 src/bin/ksh/io.c
cvs rdiff -u -r1.8 -r1.9 src/bin/ksh/mail.c src/bin/ksh/tree.c
cvs rdiff -u -r1.10 -r1.11 src/bin/ksh/syn.c
cvs rdiff -u -r1.13 -r1.14 src/bin/ksh/trap.c
cvs rdiff -u -r1.19 -r1.20 src/bin/ksh/vi.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/nfs

2018-05-08 Thread Maxime Villard
Module Name:src
Committed By:   maxv
Date:   Tue May  8 16:47:58 UTC 2018

Modified Files:
src/sys/nfs: nfs_subs.c

Log Message:
Use M_MOVE_PKTHDR.


To generate a diff of this commit:
cvs rdiff -u -r1.231 -r1.232 src/sys/nfs/nfs_subs.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/arch

2018-05-08 Thread Maxime Villard
Module Name:src
Committed By:   maxv
Date:   Tue May  8 17:20:44 UTC 2018

Modified Files:
src/sys/arch/amd64/amd64: amd64_trap.S machdep.c
src/sys/arch/x86/include: pmap.h

Log Message:
Mitigation for the SS bug, CVE-2018-8897. We disabled dbregs a month ago
in -current and -8 so we are not particularly affected anymore.

The #DB handler runs on ist3, if we decide to process the exception we
copy the iret frame on the correct non-ist stack and continue as usual.


To generate a diff of this commit:
cvs rdiff -u -r1.40 -r1.41 src/sys/arch/amd64/amd64/amd64_trap.S
cvs rdiff -u -r1.303 -r1.304 src/sys/arch/amd64/amd64/machdep.c
cvs rdiff -u -r1.76 -r1.77 src/sys/arch/x86/include/pmap.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/uvm

2018-05-08 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Tue May  8 19:33:57 UTC 2018

Modified Files:
src/sys/uvm: uvm_extern.h uvm_fault.c uvm_fault_i.h

Log Message:
don't store the rssmax in the lwp rusage, it is a per proc property. Instead
utilize an unused field in the vmspace struct to store it. Also conditionalize
on platforms that have pmap statistics available.


To generate a diff of this commit:
cvs rdiff -u -r1.210 -r1.211 src/sys/uvm/uvm_extern.h
cvs rdiff -u -r1.203 -r1.204 src/sys/uvm/uvm_fault.c
cvs rdiff -u -r1.30 -r1.31 src/sys/uvm/uvm_fault_i.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/kern

2018-05-08 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Tue May  8 19:34:54 UTC 2018

Modified Files:
src/sys/kern: kern_resource.c

Log Message:
get the maxrss from the vmspace field, and handle platforms that don't
have pmap statistics here.


To generate a diff of this commit:
cvs rdiff -u -r1.178 -r1.179 src/sys/kern/kern_resource.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/arch

2018-05-08 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Tue May  8 19:35:17 UTC 2018

Modified Files:
src/sys/arch/sun2/include: types.h
src/sys/arch/sun3/include: types.h

Log Message:
make as not having pmap statistics available


To generate a diff of this commit:
cvs rdiff -u -r1.11 -r1.12 src/sys/arch/sun2/include/types.h
cvs rdiff -u -r1.19 -r1.20 src/sys/arch/sun3/include/types.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/arch/arm/sunxi

2018-05-08 Thread Jared D. McNeill
Module Name:src
Committed By:   jmcneill
Date:   Tue May  8 22:05:25 UTC 2018

Modified Files:
src/sys/arch/arm/sunxi: sunxi_ccu.h sunxi_ccu_fixed_factor.c

Log Message:
Pass set_rate calls on fixed factor clocks through to the parent clock 
(adjusting accordingly)


To generate a diff of this commit:
cvs rdiff -u -r1.17 -r1.18 src/sys/arch/arm/sunxi/sunxi_ccu.h
cvs rdiff -u -r1.1 -r1.2 src/sys/arch/arm/sunxi/sunxi_ccu_fixed_factor.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/arch/arm/sunxi

2018-05-08 Thread Jared D. McNeill
Module Name:src
Committed By:   jmcneill
Date:   Tue May  8 22:07:02 UTC 2018

Modified Files:
src/sys/arch/arm/sunxi: sun50i_a64_ccu.c

Log Message:
Add audio clocks


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/sys/arch/arm/sunxi/sun50i_a64_ccu.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/usr.bin/crunch/crunchgen

2018-05-08 Thread matthew green
Module Name:src
Committed By:   mrg
Date:   Tue May  8 23:05:17 UTC 2018

Modified Files:
src/usr.bin/crunch/crunchgen: crunchgen.c

Log Message:
in dir_search(), don't assume a directory existing is useful, instead
confirm that there is a non zero makefile in there.  (this assumes
the makefile is called "Makefile", which is assumed in other places
in crunchgen.c already, so this doesn't make it worse.)

this fixes build issues when an empty subdir exists because some files
were moved subdir at some stage (ktrace, rcorder), and a non-prune
update may look in the wrong dir.

bump version (lots of updates between now and the previous update.)


To generate a diff of this commit:
cvs rdiff -u -r1.85 -r1.86 src/usr.bin/crunch/crunchgen/crunchgen.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/crypto/external/bsd/netpgp/dist/src/lib

2018-05-08 Thread Sevan Janiyan
Module Name:src
Committed By:   sevan
Date:   Wed May  9 00:24:50 UTC 2018

Modified Files:
src/crypto/external/bsd/netpgp/dist/src/lib: libnetpgp.3

Log Message:
Add the type of information returned about maintainer.


To generate a diff of this commit:
cvs rdiff -u -r1.23 -r1.24 \
src/crypto/external/bsd/netpgp/dist/src/lib/libnetpgp.3

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/usr.bin/pmap

2018-05-08 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Wed May  9 01:04:01 UTC 2018

Modified Files:
src/usr.bin/pmap: pmap.c

Log Message:
handle field rename.


To generate a diff of this commit:
cvs rdiff -u -r1.53 -r1.54 src/usr.bin/pmap/pmap.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/dev/i2c

2018-05-08 Thread Jason R Thorpe
Module Name:src
Committed By:   thorpej
Date:   Wed May  9 02:46:22 UTC 2018

Modified Files:
src/sys/dev/i2c: ibmhawk.c

Log Message:
The probe this driver uses is potentially destructive; at the very
least, filter on the I2C address the device is expected at before we
unleash its fury.


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/sys/dev/i2c/ibmhawk.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/arch/arm

2018-05-08 Thread Jason R Thorpe
Module Name:src
Committed By:   thorpej
Date:   Wed May  9 02:53:00 UTC 2018

Modified Files:
src/sys/arch/arm/broadcom: bcm2835_bsc.c
src/sys/arch/arm/nvidia: tegra_i2c.c
src/sys/arch/arm/samsung: exynos_i2c.c
src/sys/arch/arm/sunxi: sunxi_rsb.c sunxi_twi.c

Log Message:
If we don't get informed (via device properties) of child I2C devices,
don't assign an empty array to iba.iba_child_devices, as it will prevent
indirect configuration of the I2C bus from occurring.

Tested on Raspberry Pi (bcm2835), identical logical fix replicated
(and compile-tested) elsewhere.

PR port-arm/53171


To generate a diff of this commit:
cvs rdiff -u -r1.10 -r1.11 src/sys/arch/arm/broadcom/bcm2835_bsc.c
cvs rdiff -u -r1.16 -r1.17 src/sys/arch/arm/nvidia/tegra_i2c.c
cvs rdiff -u -r1.13 -r1.14 src/sys/arch/arm/samsung/exynos_i2c.c
cvs rdiff -u -r1.1 -r1.2 src/sys/arch/arm/sunxi/sunxi_rsb.c
cvs rdiff -u -r1.8 -r1.9 src/sys/arch/arm/sunxi/sunxi_twi.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/dev/pci

2018-05-08 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Wed May  9 03:50:51 UTC 2018

Modified Files:
src/sys/dev/pci: pci_subr.c pcireg.h

Log Message:
 Fix typo. s/TPL/TLP/


To generate a diff of this commit:
cvs rdiff -u -r1.200 -r1.201 src/sys/dev/pci/pci_subr.c
cvs rdiff -u -r1.137 -r1.138 src/sys/dev/pci/pcireg.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src

2018-05-08 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Wed May  9 05:59:28 UTC 2018

Modified Files:
src/distrib/sets/lists/man: mi
src/share/man/man4: ixg.4
Added Files:
src/share/man/man4: ixv.4

Log Message:
 Add a maunal page for ixv(4).


To generate a diff of this commit:
cvs rdiff -u -r1.1584 -r1.1585 src/distrib/sets/lists/man/mi
cvs rdiff -u -r1.10 -r1.11 src/share/man/man4/ixg.4
cvs rdiff -u -r0 -r1.1 src/share/man/man4/ixv.4

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/share/man/man4

2018-05-08 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Wed May  9 06:04:48 UTC 2018

Modified Files:
src/share/man/man4: ixv.4

Log Message:
 Add missing .Nd.


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/share/man/man4/ixv.4

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/tests/lib/libc/sys

2018-05-08 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Wed May  9 06:32:52 UTC 2018

Modified Files:
src/tests/lib/libc/sys: t_getrusage.c

Log Message:
Make the getrusage_maxrss test more stable by preventing the compiler to
optimize out a dummy loop. While there print more details when failing.


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/tests/lib/libc/sys/t_getrusage.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys

2018-05-08 Thread Maxime Villard
Module Name:src
Committed By:   maxv
Date:   Wed May  9 06:35:10 UTC 2018

Modified Files:
src/sys/net: if_arcsubr.c if_ethersubr.c if_fddisubr.c
if_ieee1394subr.c if_tokensubr.c raw_usrreq.c
src/sys/netinet6: ip6_output.c

Log Message:
Replace
m_copym(m, 0, M_COPYALL, M_DONTWAIT)
by
m_copypacket(m, M_DONTWAIT)
when it is clear that we are copying a packet (that has M_PKTHDR) and not
a raw mbuf chain.


To generate a diff of this commit:
cvs rdiff -u -r1.79 -r1.80 src/sys/net/if_arcsubr.c
cvs rdiff -u -r1.265 -r1.266 src/sys/net/if_ethersubr.c
cvs rdiff -u -r1.108 -r1.109 src/sys/net/if_fddisubr.c
cvs rdiff -u -r1.61 -r1.62 src/sys/net/if_ieee1394subr.c
cvs rdiff -u -r1.82 -r1.83 src/sys/net/if_tokensubr.c
cvs rdiff -u -r1.60 -r1.61 src/sys/net/raw_usrreq.c
cvs rdiff -u -r1.208 -r1.209 src/sys/netinet6/ip6_output.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/lib/libsa

2018-05-08 Thread Maxime Villard
Module Name:src
Committed By:   maxv
Date:   Wed May  9 06:49:48 UTC 2018

Modified Files:
src/sys/lib/libsa: ip.c

Log Message:
Remove annoying things, style, and fix buffer overflows.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/sys/lib/libsa/ip.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS import: xsrc/external/mit/freetype/dist

2018-05-08 Thread Maya Rashish
Module Name:xsrc
Committed By:   maya
Date:   Wed May  9 06:50:55 UTC 2018

Update of /cvsroot/xsrc/external/mit/freetype/dist
In directory ivanova.netbsd.org:/tmp/cvs-serv20242

Log Message:
initial import of freetype-2.9.1

Status:

Vendor Tag: xorg
Release Tags:   freetype-2-9-1

U xsrc/external/mit/freetype/dist/CMakeLists.txt
U xsrc/external/mit/freetype/dist/version.sed
U xsrc/external/mit/freetype/dist/ChangeLog.20
U xsrc/external/mit/freetype/dist/ChangeLog.21
U xsrc/external/mit/freetype/dist/ChangeLog.22
U xsrc/external/mit/freetype/dist/ChangeLog.23
U xsrc/external/mit/freetype/dist/ChangeLog.24
U xsrc/external/mit/freetype/dist/ChangeLog.25
N xsrc/external/mit/freetype/dist/ChangeLog.26
N xsrc/external/mit/freetype/dist/ChangeLog.27
N xsrc/external/mit/freetype/dist/ChangeLog.28
U xsrc/external/mit/freetype/dist/Jamrules
U xsrc/external/mit/freetype/dist/Makefile
U xsrc/external/mit/freetype/dist/README.git
U xsrc/external/mit/freetype/dist/autogen.sh
U xsrc/external/mit/freetype/dist/configure
U xsrc/external/mit/freetype/dist/modules.cfg
U xsrc/external/mit/freetype/dist/vms_make.com
U xsrc/external/mit/freetype/dist/ChangeLog
U xsrc/external/mit/freetype/dist/Jamfile
U xsrc/external/mit/freetype/dist/README
U xsrc/external/mit/freetype/dist/devel/ft2build.h
U xsrc/external/mit/freetype/dist/devel/ftoption.h
U xsrc/external/mit/freetype/dist/docs/INSTALL.CROSS
U xsrc/external/mit/freetype/dist/docs/GPLv2.TXT
U xsrc/external/mit/freetype/dist/docs/INSTALL.MAC
U xsrc/external/mit/freetype/dist/docs/PROBLEMS
U xsrc/external/mit/freetype/dist/docs/LICENSE.TXT
U xsrc/external/mit/freetype/dist/docs/CMAKE
U xsrc/external/mit/freetype/dist/docs/CUSTOMIZE
U xsrc/external/mit/freetype/dist/docs/DEBUG
U xsrc/external/mit/freetype/dist/docs/FTL.TXT
U xsrc/external/mit/freetype/dist/docs/INSTALL
U xsrc/external/mit/freetype/dist/docs/INSTALL.ANY
U xsrc/external/mit/freetype/dist/docs/freetype-config.1
U xsrc/external/mit/freetype/dist/docs/INSTALL.GNU
U xsrc/external/mit/freetype/dist/docs/INSTALL.UNIX
U xsrc/external/mit/freetype/dist/docs/INSTALL.VMS
U xsrc/external/mit/freetype/dist/docs/MAKEPP
U xsrc/external/mit/freetype/dist/docs/TODO
U xsrc/external/mit/freetype/dist/docs/formats.txt
U xsrc/external/mit/freetype/dist/docs/raster.txt
U xsrc/external/mit/freetype/dist/docs/release
U xsrc/external/mit/freetype/dist/docs/CHANGES
N xsrc/external/mit/freetype/dist/docs/VERSIONS.TXT
U xsrc/external/mit/freetype/dist/docs/reference/ft2-toc.html
U xsrc/external/mit/freetype/dist/docs/reference/README
U xsrc/external/mit/freetype/dist/docs/reference/ft2-winfnt_fonts.html
U xsrc/external/mit/freetype/dist/docs/reference/ft2-index.html
U xsrc/external/mit/freetype/dist/docs/reference/ft2-system_interface.html
U xsrc/external/mit/freetype/dist/docs/reference/ft2-glyph_stroker.html
U xsrc/external/mit/freetype/dist/docs/reference/ft2-ot_validation.html
U xsrc/external/mit/freetype/dist/docs/reference/ft2-base_interface.html
U xsrc/external/mit/freetype/dist/docs/reference/ft2-cache_subsystem.html
U xsrc/external/mit/freetype/dist/docs/reference/ft2-tt_driver.html
U xsrc/external/mit/freetype/dist/docs/reference/ft2-gasp_table.html
U xsrc/external/mit/freetype/dist/docs/reference/ft2-user_allocation.html
U xsrc/external/mit/freetype/dist/docs/reference/ft2-sfnt_names.html
U xsrc/external/mit/freetype/dist/docs/reference/ft2-incremental.html
U xsrc/external/mit/freetype/dist/docs/reference/ft2-multiple_masters.html
U xsrc/external/mit/freetype/dist/docs/reference/ft2-basic_types.html
U xsrc/external/mit/freetype/dist/docs/reference/ft2-bdf_fonts.html
U xsrc/external/mit/freetype/dist/docs/reference/ft2-header_file_macros.html
U xsrc/external/mit/freetype/dist/docs/reference/ft2-glyph_management.html
U xsrc/external/mit/freetype/dist/docs/reference/ft2-truetype_engine.html
U xsrc/external/mit/freetype/dist/docs/reference/ft2-version.html
U xsrc/external/mit/freetype/dist/docs/reference/ft2-gx_validation.html
U xsrc/external/mit/freetype/dist/docs/reference/ft2-glyph_variants.html
U xsrc/external/mit/freetype/dist/docs/reference/ft2-font_formats.html
U xsrc/external/mit/freetype/dist/docs/reference/ft2-type1_tables.html
U xsrc/external/mit/freetype/dist/docs/reference/ft2-quick_advance.html
U xsrc/external/mit/freetype/dist/docs/reference/ft2-cff_driver.html
U xsrc/external/mit/freetype/dist/docs/reference/ft2-bitmap_handling.html
U xsrc/external/mit/freetype/dist/docs/reference/ft2-outline_processing.html
U xsrc/external/mit/freetype/dist/docs/reference/ft2-bzip2.html
U xsrc/external/mit/freetype/dist/docs/reference/ft2-cid_fonts.html
N xsrc/external/mit/freetype/dist/docs/reference/ft2-parameter_tags.html
U xsrc/external/mit/freetype/dist/docs/reference/ft2-gzip.html
U xsrc/external/mit/freetype/dist/docs/reference/ft2-header_inclusion.html
U xsrc/external/mit/freetype/dist/docs/reference/ft2-module_management.html
U xsrc/external/mit/freetype/dist/docs/reference/ft2-error_code_val

CVS commit: src/sys/arch/arm/gemini

2018-05-08 Thread Maxime Villard
Module Name:src
Committed By:   maxv
Date:   Wed May  9 06:55:26 UTC 2018

Modified Files:
src/sys/arch/arm/gemini: gemini_gmac.c

Log Message:
Remove nonsensical KASSERT.


To generate a diff of this commit:
cvs rdiff -u -r1.14 -r1.15 src/sys/arch/arm/gemini/gemini_gmac.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.