CVS commit: src

2017-01-24 Thread Ryota Ozaki
Module Name:src
Committed By:   ozaki-r
Date:   Tue Jan 24 09:05:28 UTC 2017

Modified Files:
src/sys/dev/ic: hd64570.c midway.c
src/sys/dev/pci: if_lmc.c if_lmc.h
src/sys/net: bpf.c bpf.h bpfdesc.h
src/sys/netisdn: i4b_ipr.c
Added Files:
src/doc: TODO.smpnet

Log Message:
Defer bpf_mtap in Rx interrupt context to softint

bpf_mtap of some drivers is still called in hardware interrupt context.
We want to run them in softint as well as bpf_mtap of most drivers
(see if_percpuq_softint and if_input).

To this end, bpf_mtap_softint mechanism is implemented; it defers
bpf_mtap processing to a dedicated softint for a target driver.
By using the machanism, we can move bpf_mtap processing to softint
without changing target drivers much while it adds some overhead
on CPU and memory. Once target drivers are changed to softint-based,
we should return to normal bpf_mtap.

Proposed on tech-kern and tech-net


To generate a diff of this commit:
cvs rdiff -u -r0 -r1.1 src/doc/TODO.smpnet
cvs rdiff -u -r1.51 -r1.52 src/sys/dev/ic/hd64570.c
cvs rdiff -u -r1.98 -r1.99 src/sys/dev/ic/midway.c
cvs rdiff -u -r1.62 -r1.63 src/sys/dev/pci/if_lmc.c
cvs rdiff -u -r1.23 -r1.24 src/sys/dev/pci/if_lmc.h
cvs rdiff -u -r1.204 -r1.205 src/sys/net/bpf.c
cvs rdiff -u -r1.67 -r1.68 src/sys/net/bpf.h
cvs rdiff -u -r1.39 -r1.40 src/sys/net/bpfdesc.h
cvs rdiff -u -r1.40 -r1.41 src/sys/netisdn/i4b_ipr.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

2017-01-24 Thread NONAKA Kimihiro
Module Name:src
Committed By:   nonaka
Date:   Tue Jan 24 10:18:33 UTC 2017

Modified Files:
src/sys/dev/pci: if_rtwn.c if_rtwnreg.h

Log Message:
rtwn(4): increase the number of tx queue required to clear the full mask.


To generate a diff of this commit:
cvs rdiff -u -r1.9 -r1.10 src/sys/dev/pci/if_rtwn.c
cvs rdiff -u -r1.2 -r1.3 src/sys/dev/pci/if_rtwnreg.h

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



CVS commit: src

2017-01-24 Thread NONAKA Kimihiro
Module Name:src
Committed By:   nonaka
Date:   Tue Jan 24 11:09:15 UTC 2017

Modified Files:
src/distrib/sets/lists/base: md.amd64
src/sys/arch/i386/stand: Makefile
src/sys/arch/i386/stand/lib: biosdisk.c bootinfo_biosgeom.c diskbuf.c
exec.c libi386.h vbe.c
src/sys/arch/x86/acpi: acpi_machdep.c
src/sys/arch/x86/include: bootinfo.h efi.h
src/sys/arch/x86/x86: efi.c x86_machdep.c
src/sys/lib/libgnuefi: Makefile Makefile.inc
Added Files:
src/sys/arch/i386/stand/efiboot: Makefile Makefile.efiboot boot.c
conf.c devopen.c devopen.h efiboot.c efiboot.h eficons.c efidelay.c
efidisk.c efidisk.h efidisk_ll.c efigetsecs.c efimemory.c panic.c
self_reloc.c version
src/sys/arch/i386/stand/efiboot/bootia32: Makefile efiboot_machdep.h
efibootia32.c ldscript start.S
src/sys/arch/i386/stand/efiboot/bootx64: Makefile efiboot_machdep.h
efibootx64.c ldscript start.S startprog64.S
src/sys/lib/libgnuefi/arch/i386: Makefile.inc
src/sys/lib/libgnuefi/arch/x86_64: Makefile.inc

Log Message:
Initial commit of native amd64 EFI boot loader.


To generate a diff of this commit:
cvs rdiff -u -r1.267 -r1.268 src/distrib/sets/lists/base/md.amd64
cvs rdiff -u -r1.27 -r1.28 src/sys/arch/i386/stand/Makefile
cvs rdiff -u -r0 -r1.1 src/sys/arch/i386/stand/efiboot/Makefile \
src/sys/arch/i386/stand/efiboot/Makefile.efiboot \
src/sys/arch/i386/stand/efiboot/boot.c \
src/sys/arch/i386/stand/efiboot/conf.c \
src/sys/arch/i386/stand/efiboot/devopen.c \
src/sys/arch/i386/stand/efiboot/devopen.h \
src/sys/arch/i386/stand/efiboot/efiboot.c \
src/sys/arch/i386/stand/efiboot/efiboot.h \
src/sys/arch/i386/stand/efiboot/eficons.c \
src/sys/arch/i386/stand/efiboot/efidelay.c \
src/sys/arch/i386/stand/efiboot/efidisk.c \
src/sys/arch/i386/stand/efiboot/efidisk.h \
src/sys/arch/i386/stand/efiboot/efidisk_ll.c \
src/sys/arch/i386/stand/efiboot/efigetsecs.c \
src/sys/arch/i386/stand/efiboot/efimemory.c \
src/sys/arch/i386/stand/efiboot/panic.c \
src/sys/arch/i386/stand/efiboot/self_reloc.c \
src/sys/arch/i386/stand/efiboot/version
cvs rdiff -u -r0 -r1.1 src/sys/arch/i386/stand/efiboot/bootia32/Makefile \
src/sys/arch/i386/stand/efiboot/bootia32/efiboot_machdep.h \
src/sys/arch/i386/stand/efiboot/bootia32/efibootia32.c \
src/sys/arch/i386/stand/efiboot/bootia32/ldscript \
src/sys/arch/i386/stand/efiboot/bootia32/start.S
cvs rdiff -u -r0 -r1.1 src/sys/arch/i386/stand/efiboot/bootx64/Makefile \
src/sys/arch/i386/stand/efiboot/bootx64/efiboot_machdep.h \
src/sys/arch/i386/stand/efiboot/bootx64/efibootx64.c \
src/sys/arch/i386/stand/efiboot/bootx64/ldscript \
src/sys/arch/i386/stand/efiboot/bootx64/start.S \
src/sys/arch/i386/stand/efiboot/bootx64/startprog64.S
cvs rdiff -u -r1.45 -r1.46 src/sys/arch/i386/stand/lib/biosdisk.c
cvs rdiff -u -r1.22 -r1.23 src/sys/arch/i386/stand/lib/bootinfo_biosgeom.c
cvs rdiff -u -r1.6 -r1.7 src/sys/arch/i386/stand/lib/diskbuf.c
cvs rdiff -u -r1.62 -r1.63 src/sys/arch/i386/stand/lib/exec.c
cvs rdiff -u -r1.40 -r1.41 src/sys/arch/i386/stand/lib/libi386.h
cvs rdiff -u -r1.8 -r1.9 src/sys/arch/i386/stand/lib/vbe.c
cvs rdiff -u -r1.14 -r1.15 src/sys/arch/x86/acpi/acpi_machdep.c
cvs rdiff -u -r1.24 -r1.25 src/sys/arch/x86/include/bootinfo.h
cvs rdiff -u -r1.1 -r1.2 src/sys/arch/x86/include/efi.h
cvs rdiff -u -r1.4 -r1.5 src/sys/arch/x86/x86/efi.c
cvs rdiff -u -r1.81 -r1.82 src/sys/arch/x86/x86/x86_machdep.c
cvs rdiff -u -r1.4 -r1.5 src/sys/lib/libgnuefi/Makefile
cvs rdiff -u -r1.3 -r1.4 src/sys/lib/libgnuefi/Makefile.inc
cvs rdiff -u -r0 -r1.1 src/sys/lib/libgnuefi/arch/i386/Makefile.inc
cvs rdiff -u -r0 -r1.1 src/sys/lib/libgnuefi/arch/x86_64/Makefile.inc

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



CVS commit: src/distrib/amd64

2017-01-24 Thread NONAKA Kimihiro
Module Name:src
Committed By:   nonaka
Date:   Tue Jan 24 11:16:50 UTC 2017

Modified Files:
src/distrib/amd64: Makefile
Added Files:
src/distrib/amd64/uefi-installimage: Makefile Makefile.bootimage
Makefile.installimage boot.cfg.in etc.rc etc.ttys install.sh
spec.inst

Log Message:
make amd64 EFI install image

XXX merge to installimage?


To generate a diff of this commit:
cvs rdiff -u -r1.11 -r1.12 src/distrib/amd64/Makefile
cvs rdiff -u -r0 -r1.1 src/distrib/amd64/uefi-installimage/Makefile \
src/distrib/amd64/uefi-installimage/Makefile.bootimage \
src/distrib/amd64/uefi-installimage/Makefile.installimage \
src/distrib/amd64/uefi-installimage/boot.cfg.in \
src/distrib/amd64/uefi-installimage/etc.rc \
src/distrib/amd64/uefi-installimage/etc.ttys \
src/distrib/amd64/uefi-installimage/install.sh \
src/distrib/amd64/uefi-installimage/spec.inst

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



CVS commit: src/usr.sbin/makefs

2017-01-24 Thread NONAKA Kimihiro
Module Name:src
Committed By:   nonaka
Date:   Tue Jan 24 11:22:43 UTC 2017

Modified Files:
src/usr.sbin/makefs: cd9660.c makefs.8
src/usr.sbin/makefs/cd9660: cd9660_eltorito.c cd9660_eltorito.h

Log Message:
makefs(8): add cd9660 eltorito-alt-boot option for EFI boot.


To generate a diff of this commit:
cvs rdiff -u -r1.53 -r1.54 src/usr.sbin/makefs/cd9660.c
cvs rdiff -u -r1.57 -r1.58 src/usr.sbin/makefs/makefs.8
cvs rdiff -u -r1.20 -r1.21 src/usr.sbin/makefs/cd9660/cd9660_eltorito.c
cvs rdiff -u -r1.5 -r1.6 src/usr.sbin/makefs/cd9660/cd9660_eltorito.h

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



CVS commit: src/distrib/amd64/cdroms

2017-01-24 Thread NONAKA Kimihiro
Module Name:src
Committed By:   nonaka
Date:   Tue Jan 24 11:27:55 UTC 2017

Modified Files:
src/distrib/amd64/cdroms: Makefile.cdrom

Log Message:
amd64: make BIOS and UEFI dual bootable iso image.


To generate a diff of this commit:
cvs rdiff -u -r1.20 -r1.21 src/distrib/amd64/cdroms/Makefile.cdrom

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



CVS commit: xsrc/external/mit/xf86-video-chips/dist/src

2017-01-24 Thread Christos Zoulas
Module Name:xsrc
Committed By:   christos
Date:   Tue Jan 24 15:47:02 UTC 2017

Modified Files:
xsrc/external/mit/xf86-video-chips/dist/src: ct_exa.c

Log Message:
fix compilation.


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 xsrc/external/mit/xf86-video-chips/dist/src/ct_exa.c

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



CVS commit: src/lib/libcurses

2017-01-24 Thread Roy Marples
Module Name:src
Committed By:   roy
Date:   Tue Jan 24 16:45:41 UTC 2017

Modified Files:
src/lib/libcurses: curses_screen.3

Log Message:
Note an issue with our cursor movement in 1 line size window.


To generate a diff of this commit:
cvs rdiff -u -r1.22 -r1.23 src/lib/libcurses/curses_screen.3

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



CVS commit: src

2017-01-24 Thread Roy Marples
Module Name:src
Committed By:   roy
Date:   Tue Jan 24 17:27:30 UTC 2017

Modified Files:
src/distrib/sets/lists/comp: mi
src/lib/libcurses: Makefile curses.h curses_private.h resize.c
ripoffline.c screen.c
Added Files:
src/lib/libcurses: curses_slk.3 slk.c

Log Message:
Implement POSIX Curses Soft Label Key functions.


To generate a diff of this commit:
cvs rdiff -u -r1.2102 -r1.2103 src/distrib/sets/lists/comp/mi
cvs rdiff -u -r1.83 -r1.84 src/lib/libcurses/Makefile
cvs rdiff -u -r1.120 -r1.121 src/lib/libcurses/curses.h
cvs rdiff -u -r1.59 -r1.60 src/lib/libcurses/curses_private.h
cvs rdiff -u -r0 -r1.1 src/lib/libcurses/curses_slk.3 src/lib/libcurses/slk.c
cvs rdiff -u -r1.25 -r1.26 src/lib/libcurses/resize.c
cvs rdiff -u -r1.2 -r1.3 src/lib/libcurses/ripoffline.c
cvs rdiff -u -r1.29 -r1.30 src/lib/libcurses/screen.c

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



CVS commit: src/etc

2017-01-24 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Tue Jan 24 17:54:52 UTC 2017

Modified Files:
src/etc: Makefile.params

Log Message:
MAKE varies between builds because it contains the full pathname.


To generate a diff of this commit:
cvs rdiff -u -r1.16 -r1.17 src/etc/Makefile.params

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



CVS commit: src/distrib/common/bootimage

2017-01-24 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Tue Jan 24 18:01:07 UTC 2017

Modified Files:
src/distrib/common/bootimage: Makefile.bootimage

Log Message:
use the same logic to compute the timestamp like the other files


To generate a diff of this commit:
cvs rdiff -u -r1.12 -r1.13 src/distrib/common/bootimage/Makefile.bootimage

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



CVS commit: src/distrib

2017-01-24 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Tue Jan 24 18:04:05 UTC 2017

Modified Files:
src/distrib/acorn26/instkernel: Makefile
src/distrib/acorn32/ramdisk: Makefile
src/distrib/alpha/instkernel/ramdisk: Makefile
src/distrib/amiga/miniroot: Makefile.inc
src/distrib/arc/ramdisk: Makefile
src/distrib/bebox/ramdisk: Makefile
src/distrib/cats/ramdisk: Makefile
src/distrib/cobalt/ramdisk: Makefile
src/distrib/dreamcast/ramdisk: Makefile
src/distrib/emips/miniroot: Makefile.inc
src/distrib/emips/ramdisk: Makefile
src/distrib/evbarm/instkernel/ramdisk: Makefile
src/distrib/evbarm/instkernel/sshramdisk: Makefile
src/distrib/evbarm64/ramdisk: Makefile
src/distrib/evbmips/instkernel/ramdisk: Makefile
src/distrib/evbppc/ramdisk: Makefile
src/distrib/evbsh3/instkernel/ramdisk: Makefile
src/distrib/ews4800mips/floppies/ramdisk: Makefile
src/distrib/hp300/miniroot: Makefile.inc
src/distrib/hp300/ramdisk: Makefile
src/distrib/hpcarm/miniroot: Makefile.inc
src/distrib/hpcmips/miniroot: Makefile.inc
src/distrib/hpcsh/miniroot: Makefile.inc
src/distrib/hppa/ramdisk: Makefile
src/distrib/i386/ramdisks/ramdisk-rescuetiny: Makefile
src/distrib/i386/ramdisks/ramdisk-tiny: Makefile
src/distrib/ibmnws/netboot/ramdisk: Makefile
src/distrib/landisk/ramdisk: Makefile
src/distrib/luna68k/ramdisk: Makefile
src/distrib/mac68k/instkernel/ramdisk: Makefile
src/distrib/mac68k/miniroot: Makefile.inc
src/distrib/macppc/floppies/ramdisk: Makefile
src/distrib/mipsco/ramdisk: Makefile
src/distrib/mvme68k/miniroot: Makefile.inc
src/distrib/news68k/floppies/ramdisk: Makefile
src/distrib/newsmips/floppies/ramdisk: Makefile
src/distrib/playstation2/miniroot: Makefile.inc
src/distrib/pmax/miniroot: Makefile.inc
src/distrib/pmax/ramdisk: Makefile
src/distrib/prep/floppies/ramdisk: Makefile
src/distrib/riscv/ramdisk: Makefile
src/distrib/rs6000/ramdisk: Makefile
src/distrib/sandpoint/ramdisk: Makefile
src/distrib/sgimips/miniroot: Makefile.inc.xxx
src/distrib/sgimips/ramdisk: Makefile
src/distrib/shark/instkernel/ramdisk: Makefile
src/distrib/sparc/miniroot: Makefile.inc
src/distrib/sparc64/instfs: Makefile.instfs
src/distrib/sun2/miniroot: Makefile
src/distrib/sun2/ramdisk: Makefile
src/distrib/sun3/miniroot: Makefile
src/distrib/sun3/ramdisk: Makefile
src/distrib/vax/miniroot: Makefile.inc
src/distrib/vax/ramdisk: Makefile
src/distrib/x68k/floppies/ramdisk: Makefile
src/distrib/zaurus/ramdisk: Makefile

Log Message:
+= for MAKEFS_FLAGS


To generate a diff of this commit:
cvs rdiff -u -r1.16 -r1.17 src/distrib/acorn26/instkernel/Makefile
cvs rdiff -u -r1.24 -r1.25 src/distrib/acorn32/ramdisk/Makefile
cvs rdiff -u -r1.31 -r1.32 src/distrib/alpha/instkernel/ramdisk/Makefile
cvs rdiff -u -r1.19 -r1.20 src/distrib/amiga/miniroot/Makefile.inc
cvs rdiff -u -r1.24 -r1.25 src/distrib/arc/ramdisk/Makefile
cvs rdiff -u -r1.2 -r1.3 src/distrib/bebox/ramdisk/Makefile
cvs rdiff -u -r1.23 -r1.24 src/distrib/cats/ramdisk/Makefile
cvs rdiff -u -r1.10 -r1.11 src/distrib/cobalt/ramdisk/Makefile
cvs rdiff -u -r1.13 -r1.14 src/distrib/dreamcast/ramdisk/Makefile
cvs rdiff -u -r1.3 -r1.4 src/distrib/emips/miniroot/Makefile.inc
cvs rdiff -u -r1.2 -r1.3 src/distrib/emips/ramdisk/Makefile
cvs rdiff -u -r1.14 -r1.15 src/distrib/evbarm/instkernel/ramdisk/Makefile
cvs rdiff -u -r1.11 -r1.12 src/distrib/evbarm/instkernel/sshramdisk/Makefile
cvs rdiff -u -r1.1 -r1.2 src/distrib/evbarm64/ramdisk/Makefile
cvs rdiff -u -r1.12 -r1.13 src/distrib/evbmips/instkernel/ramdisk/Makefile
cvs rdiff -u -r1.20 -r1.21 src/distrib/evbppc/ramdisk/Makefile
cvs rdiff -u -r1.2 -r1.3 src/distrib/evbsh3/instkernel/ramdisk/Makefile
cvs rdiff -u -r1.11 -r1.12 src/distrib/ews4800mips/floppies/ramdisk/Makefile
cvs rdiff -u -r1.13 -r1.14 src/distrib/hp300/miniroot/Makefile.inc
cvs rdiff -u -r1.33 -r1.34 src/distrib/hp300/ramdisk/Makefile
cvs rdiff -u -r1.7 -r1.8 src/distrib/hpcarm/miniroot/Makefile.inc
cvs rdiff -u -r1.20 -r1.21 src/distrib/hpcmips/miniroot/Makefile.inc
cvs rdiff -u -r1.8 -r1.9 src/distrib/hpcsh/miniroot/Makefile.inc
cvs rdiff -u -r1.4 -r1.5 src/distrib/hppa/ramdisk/Makefile
cvs rdiff -u -r1.2 -r1.3 \
src/distrib/i386/ramdisks/ramdisk-rescuetiny/Makefile
cvs rdiff -u -r1.2 -r1.3 src/distrib/i386/ramdisks/ramdisk-tiny/Makefile
cvs rdiff -u -r1.12 -r1.13 src/distrib/ibmnws/netboot/ramdisk/Makefile
cvs rdiff -u -r1.10 -r1.11 src/distrib/landisk/ramdisk/Makefile
cvs rdiff -u -r1.4 -r1.5 src/distrib/luna68k/ramdisk/Makefile
cvs rdiff -u -r1.36 -r1.37 src/distrib/mac68k/instkernel/ramdisk/Makefile
cvs rdiff -u -r1.8 -r1.9 src/dist

CVS commit: src/sys/net

2017-01-24 Thread Maxime Villard
Module Name:src
Committed By:   maxv
Date:   Tue Jan 24 18:37:20 UTC 2017

Modified Files:
src/sys/net: if_arcsubr.c if_ecosubr.c if_ethersubr.c if_fddisubr.c
if_tokensubr.c

Log Message:
Don't forget to free the mbuf when we decide not to reply to an ARP
request. This obviously is a terrible bug, since it allows a remote sender
to DoS the system with specially-crafted requests sent in a loop.


To generate a diff of this commit:
cvs rdiff -u -r1.75 -r1.76 src/sys/net/if_arcsubr.c
cvs rdiff -u -r1.49 -r1.50 src/sys/net/if_ecosubr.c
cvs rdiff -u -r1.235 -r1.236 src/sys/net/if_ethersubr.c
cvs rdiff -u -r1.103 -r1.104 src/sys/net/if_fddisubr.c
cvs rdiff -u -r1.79 -r1.80 src/sys/net/if_tokensubr.c

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



CVS commit: src/crypto/dist/ipsec-tools/src/racoon

2017-01-24 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Tue Jan 24 19:23:31 UTC 2017

Modified Files:
src/crypto/dist/ipsec-tools/src/racoon: isakmp_frag.c

Log Message:
PR/51682: Avoid DoS with fragment out of order insertion; keep fragments
sorted in the list.


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/crypto/dist/ipsec-tools/src/racoon/isakmp_frag.c

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



CVS commit: src/crypto/dist/ipsec-tools/src/racoon

2017-01-24 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Tue Jan 24 19:23:56 UTC 2017

Modified Files:
src/crypto/dist/ipsec-tools/src/racoon: handler.h isakmp.c isakmp_inf.c

Log Message:
PR/51682: Avoid DoS with fragment out of order insertion; keep fragments
sorted in the list.


To generate a diff of this commit:
cvs rdiff -u -r1.25 -r1.26 src/crypto/dist/ipsec-tools/src/racoon/handler.h
cvs rdiff -u -r1.75 -r1.76 src/crypto/dist/ipsec-tools/src/racoon/isakmp.c
cvs rdiff -u -r1.50 -r1.51 \
src/crypto/dist/ipsec-tools/src/racoon/isakmp_inf.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/npf/npfd

2017-01-24 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Tue Jan 24 20:24:59 UTC 2017

Modified Files:
src/usr.sbin/npf/npfd: npfd.c

Log Message:
output every 5 seconds instead of 60 or every 100 packets


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/usr.sbin/npf/npfd/npfd.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/npf/npfd

2017-01-24 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Tue Jan 24 20:25:08 UTC 2017

Modified Files:
src/usr.sbin/npf/npfd: npfd_log.c

Log Message:
fix signed compare


To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.9 src/usr.sbin/npf/npfd/npfd_log.c

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



CVS import: src/external/bsd/tcpdump/dist

2017-01-24 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Tue Jan 24 21:33:47 UTC 2017

Update of /cvsroot/src/external/bsd/tcpdump/dist
In directory ivanova.netbsd.org:/tmp/cvs-serv16875

Log Message:
Tuesday October 25, 2016 m...@sandelman.ca
  Summary for 4.8.1 tcpdump release
Fix "-x" for Apple PKTAP and PPI packets
Use PRIx64 to print a 64-bit number in hex.
Printer for HNCP (RFCs 7787 and 7788).
dagid is always an IPv6 address, not an opaque 128-bit string, and 
other fixes to RPL printer.
RSVP: Add bounds and length checks
OSPF: Do more bounds checking
Handle OpenSSL 1.1.x.
Initial support for the REdis Serialization Protocol known as RESP.
Add printing function for Generic Protocol Extension for VXLAN
draft-ietf-nvo3-vxlan-gpe-01
Network Service Header: draft-ietf-sfc-nsh-01
Don't recompile the filter if the new file has the same DLT.
Pass an adjusted struct pcap_pkthdr to the sub-printer.
Add three test cases for already fixed CVEs
   CVE-2014-8767: OLSR
   CVE-2014-8768: Geonet
   CVE-2014-8769: AODV
Don't do the DDP-over-UDP heuristic first: GitHub issue #499.
Use the new debugging routines in libpcap.
Harmonize TCP source or destination ports tests with UDP ones
Introduce data types to use for integral values in packet structures.
RSVP: Fix an infinite loop
Support of Type 3 and Type 4 LISP packets.
Don't require IPv6 library support in order to support IPv6 addresses.
Many many changes to support libnetdissect usage.
Add a test that makes unaligned accesses: GitHub issue #478.
add a DNSSEC test case: GH #445 and GH #467.
BGP: add decoding of ADD-PATH capability
fixes to LLC header printing, and RFC948-style IP packets

Friday April 10, 2015 g...@alum.mit.edu
  Summary for 4.7.4 tcpdump release
RPKI to Router Protocol: Fix Segmentation Faults and other problems
RPKI to Router Protocol: print strings with fn_printn()
wb: fix some bounds checks


Status:

Vendor Tag: TCPDUMP
Release Tags:   tcpdump-4_8_1

C src/external/bsd/tcpdump/dist/print-lwres.c
U src/external/bsd/tcpdump/dist/nfsfh.h
U src/external/bsd/tcpdump/dist/llc.h
C src/external/bsd/tcpdump/dist/gmt2local.c
U src/external/bsd/tcpdump/dist/af.h
N src/external/bsd/tcpdump/dist/ascii_strcasecmp.h
U src/external/bsd/tcpdump/dist/l2vpn.h
U src/external/bsd/tcpdump/dist/Makefile-devel-adds
C src/external/bsd/tcpdump/dist/print-m3ua.c
N src/external/bsd/tcpdump/dist/ascii_strcasecmp.c
C src/external/bsd/tcpdump/dist/print-icmp6.c
C src/external/bsd/tcpdump/dist/print-pppoe.c
U src/external/bsd/tcpdump/dist/print-calm-fast.c
C src/external/bsd/tcpdump/dist/print-sunrpc.c
C src/external/bsd/tcpdump/dist/udp.h
C src/external/bsd/tcpdump/dist/print-radius.c
C src/external/bsd/tcpdump/dist/print-ip.c
U src/external/bsd/tcpdump/dist/print-otv.c
C src/external/bsd/tcpdump/dist/print-ascii.c
U src/external/bsd/tcpdump/dist/pcap_dump_ftell.c
U src/external/bsd/tcpdump/dist/addrtoname.h
U src/external/bsd/tcpdump/dist/aclocal.m4
C src/external/bsd/tcpdump/dist/print-ipx.c
C src/external/bsd/tcpdump/dist/print-atalk.c
N src/external/bsd/tcpdump/dist/print-lisp.c
N src/external/bsd/tcpdump/dist/strtoaddr.h
C src/external/bsd/tcpdump/dist/print-lspping.c
C src/external/bsd/tcpdump/dist/print-sl.c
C src/external/bsd/tcpdump/dist/print-tcp.c
U src/external/bsd/tcpdump/dist/print-vtp.c
U src/external/bsd/tcpdump/dist/rpl.h
C src/external/bsd/tcpdump/dist/print-cip.c
C src/external/bsd/tcpdump/dist/print-802_11.c
U src/external/bsd/tcpdump/dist/print-udld.c
U src/external/bsd/tcpdump/dist/gmpls.h
C src/external/bsd/tcpdump/dist/print-pflog.c
U src/external/bsd/tcpdump/dist/print-smtp.c
N src/external/bsd/tcpdump/dist/print-resp.c
U src/external/bsd/tcpdump/dist/nfs.h
C src/external/bsd/tcpdump/dist/print-dhcp6.c
C src/external/bsd/tcpdump/dist/print-slow.c
C src/external/bsd/tcpdump/dist/util.c
U src/external/bsd/tcpdump/dist/machdep.h
U src/external/bsd/tcpdump/dist/CHANGES
C src/external/bsd/tcpdump/dist/print-icmp.c
C src/external/bsd/tcpdump/dist/print-arp.c
U src/external/bsd/tcpdump/dist/print-openflow-1.0.c
C src/external/bsd/tcpdump/dist/print-ripng.c
C src/external/bsd/tcpdump/dist/print-hsrp.c
U src/external/bsd/tcpdump/dist/openflow.h
C src/external/bsd/tcpdump/dist/print-bgp.c
C src/external/bsd/tcpdump/dist/print-fr.c
C src/external/bsd/tcpdump/dist/print-sunatm.c
C src/external/bsd/tcpdump/dist/print-ospf.c
C src/external/bsd/tcpdump/dist/print-aodv.c
U src/external/bsd/tcpdump/dist/README.md
C src/external/bsd/tcpdump/dist/print-fddi.c
U src/external/bsd/tcpdump/dist/print-nflog.c
U src/external/bsd/tcpdump/dist/print-mptcp.c
C src/external/bsd/tcpdump/dist/print-pim.c
U src/external/bsd/tcpdump/dist/print-ftp.c
C src/external/bsd/tcpdump/dist/smbutil.c
C src/exter

CVS import: src/external/bsd/libpcap/dist

2017-01-24 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Tue Jan 24 21:55:32 UTC 2017

Update of /cvsroot/src/external/bsd/libpcap/dist
In directory ivanova.netbsd.org:/tmp/cvs-serv21066

Log Message:
Tuesday, Oct. 25, 2016 m...@sandelman.ca
  Summary for 1.8.1 libpcap release
Add a target in Makefile.in for Exuberant Ctags use: 'extags'.
Rename configure.in to configure.ac: autoconf 2.59
Clean up the name-to-DLT mapping table.
Add some newer DLT_ values: 
IPMI_HPM_2,ZWAVE_R1_R2,ZWAVE_R3,WATTSTOPPER_DLM,ISO_14443,RDS
Clarify what the return values are for both success and failure.
Many changes to build on windows
Check for the "break the loop" condition in the inner loop for TPACKET_V3.
Fix handling of packet count in the TPACKET_V3 inner loop: GitHub issue 
#493.
Filter out duplicate looped back CAN frames.
Fix the handling of loopback filters for IPv6 packets.
Add a link-layer header type for RDS (IEC 62106) groups.
Use different intermediate folders for x86 and x64 builds on Windows.
On Linux, handle all CAN captures with pcap-linux.c, in cooked mode.
Removes the need for the "host-endian" link-layer header type.
Compile with '-Wused-but-marked-unused' in devel mode if supported
Have separate DLTs for big-endian and host-endian SocketCAN headers.
Reflect version.h being renamed to pcap_version.h.
Require that version.h be generated: all build procedures we support 
generate version.h (autoconf, CMake, MSVC)!
Properly check for sock_recv() errors.
Re-impose some of Winsock's limitations on sock_recv().
Replace sprintf() with pcap_snprintf().
Fix signature of pcap_stats_ex_remote().
Initial cmake support for remote packet capture.
Have rpcap_remoteact_getsock() return a SOCKET and supply an "is active" 
flag.
Clean up {DAG, Septel, Myricom SNF}-only builds.
Do UTF-16-to-ASCII conversion into the right place.
pcap_create_interface() needs the interface name on Linux.
Clean up hardware time stamp support: the "any" device does not support any 
time stamp types.
Add support for capturing on FreeBSD usbusN interfaces.
Add a LINKTYPE/DLT_ value for FreeBSD USB.
Go back to using PCAP_API on Windows.
CMake support
Add TurboCap support from WinPcap.
Recognize 802.1ad nested VLAN tag in vlan filter.

Thursday Sep. 3, 2015 g...@alum.mit.edu
  Summary for 1.7.5 libpcap release
Man page cleanups.
Add some allocation failure checks.
Fix a number of Linux/ucLinux configure/build issues.
Fix some memory leaks.
Recognize 802.1ad nested VLAN tag in vlan filter.
Fix building Bluetooth Linux Monitor support with BlueZ 5.1+

Saturday Jun. 27, 2015 m...@sandelman.ca
  Summary for 1.7.4 libpcap release
Include fix for GitHub issue #424 -- out of tree builds.

Friday Apr. 10, 2015 g...@alum.mit.edu
  Summary for 1.7.3 libpcap release
Work around a Linux bonding driver bug.


Status:

Vendor Tag: TCPDUMP
Release Tags:   libpcap-1_8_1

C src/external/bsd/libpcap/dist/grammar.y
C src/external/bsd/libpcap/dist/fad-glifc.c
U src/external/bsd/libpcap/dist/llc.h
C src/external/bsd/libpcap/dist/pcap_setnonblock.3pcap
U src/external/bsd/libpcap/dist/sunatmpos.h
C src/external/bsd/libpcap/dist/sf-pcap-ng.c
C src/external/bsd/libpcap/dist/pcap-dbus.c
C src/external/bsd/libpcap/dist/pcap_findalldevs.3pcap
U src/external/bsd/libpcap/dist/Makefile-devel-adds
N src/external/bsd/libpcap/dist/gen_version_c.sh
U src/external/bsd/libpcap/dist/aclocal.m4
U src/external/bsd/libpcap/dist/pcap_list_tstamp_types.3pcap.in
N src/external/bsd/libpcap/dist/pcap-rpcap.c
U src/external/bsd/libpcap/dist/pcap-bt-linux.h
U src/external/bsd/libpcap/dist/README.sita
C src/external/bsd/libpcap/dist/savefile.c
U src/external/bsd/libpcap/dist/CHANGES
N src/external/bsd/libpcap/dist/configure.ac
C src/external/bsd/libpcap/dist/pcap_dump_ftell.3pcap
C src/external/bsd/libpcap/dist/pcap-nit.c
C src/external/bsd/libpcap/dist/pcap_can_set_rfmon.3pcap
N src/external/bsd/libpcap/dist/pcap-rpcap.h
U src/external/bsd/libpcap/dist/README.tru64
U src/external/bsd/libpcap/dist/org.tcpdump.chmod_bpf.plist
C src/external/bsd/libpcap/dist/pcap-netfilter-linux.c
U src/external/bsd/libpcap/dist/pcap-tstamp.manmisc.in
U src/external/bsd/libpcap/dist/README.hpux
C src/external/bsd/libpcap/dist/pcap-linux.c
C src/external/bsd/libpcap/dist/pcap-bpf.c
N src/external/bsd/libpcap/dist/pcap-tc.c
N src/external/bsd/libpcap/dist/remote-ext.h
N src/external/bsd/libpcap/dist/sockutils.h
C src/external/bsd/libpcap/dist/pcap_open_offline.3pcap.in
U src/external/bsd/libpcap/dist/pcap_list_datalinks.3pcap.in
C src/external/bsd/libpcap/dist/pcap-snoop.c
C src/external/bsd/libpcap/dist/pcap_fileno.3pcap
U src/external/bsd/libpcap/dist/pcap-dbus.h
C src/external/bsd/libpcap/dist/pcap_major_version.3pcap
U src/external/bsd/libpcap/dist/pcap-filter.manmisc.in
C src/external/bsd/libp

CVS commit: src/sys/net

2017-01-24 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Tue Jan 24 22:12:42 UTC 2017

Modified Files:
src/sys/net: dlt.h

Log Message:
Sync with libpcap-1.8.1


To generate a diff of this commit:
cvs rdiff -u -r1.16 -r1.17 src/sys/net/dlt.h

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



CVS commit: src/external/bsd/byacc/dist

2017-01-24 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Tue Jan 24 22:28:42 UTC 2017

Modified Files:
src/external/bsd/byacc/dist: output.c

Log Message:
don't output extern YYSTYPE decl if pure_parser.


To generate a diff of this commit:
cvs rdiff -u -r1.15 -r1.16 src/external/bsd/byacc/dist/output.c

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



CVS commit: src/external/bsd/libpcap

2017-01-24 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Tue Jan 24 22:29:29 UTC 2017

Modified Files:
src/external/bsd/libpcap/dist: bpf_dump.c bpf_image.c dlpisubs.c
etherent.c ethertype.h fad-getad.c fad-gifc.c fad-glifc.c gencode.c
gencode.h grammar.y inet.c nametoaddr.c optimize.c pcap-bpf.c
pcap-bt-linux.c pcap-bt-monitor-linux.c pcap-common.c pcap-config.1
pcap-dag.c pcap-dag.h pcap-dbus.c pcap-dlpi.c pcap-dos.c pcap-int.h
pcap-libdlpi.c pcap-linux.c pcap-netfilter-linux.c pcap-nit.c
pcap-null.c pcap-pf.c pcap-septel.c pcap-sita.c pcap-snf.c
pcap-snit.c pcap-snoop.c pcap-stdinc.h pcap-usb-linux.c
pcap-win32.c pcap.3pcap.in pcap.c pcap_activate.3pcap
pcap_breakloop.3pcap pcap_can_set_rfmon.3pcap pcap_close.3pcap
pcap_create.3pcap pcap_datalink_name_to_val.3pcap
pcap_datalink_val_to_name.3pcap pcap_dump.3pcap
pcap_dump_close.3pcap pcap_dump_file.3pcap pcap_dump_flush.3pcap
pcap_dump_ftell.3pcap pcap_dump_open.3pcap.in pcap_file.3pcap
pcap_fileno.3pcap pcap_findalldevs.3pcap pcap_freecode.3pcap
pcap_get_selectable_fd.3pcap pcap_geterr.3pcap pcap_inject.3pcap
pcap_is_swapped.3pcap pcap_lib_version.3pcap pcap_lookupdev.3pcap
pcap_lookupnet.3pcap pcap_loop.3pcap pcap_major_version.3pcap
pcap_next_ex.3pcap pcap_offline_filter.3pcap pcap_open_live.3pcap
pcap_open_offline.3pcap.in pcap_set_buffer_size.3pcap
pcap_set_datalink.3pcap pcap_set_immediate_mode.3pcap
pcap_set_promisc.3pcap pcap_set_rfmon.3pcap pcap_set_snaplen.3pcap
pcap_set_timeout.3pcap pcap_setdirection.3pcap pcap_setfilter.3pcap
pcap_setnonblock.3pcap pcap_snapshot.3pcap pcap_stats.3pcap
pcap_statustostr.3pcap pcap_strerror.3pcap
pcap_tstamp_type_name_to_val.3pcap
pcap_tstamp_type_val_to_name.3pcap savefile.c scanner.l
sf-pcap-ng.c sf-pcap.c
src/external/bsd/libpcap/dist/bpf/net: bpf_filter.c
src/external/bsd/libpcap/dist/lbl: os-osf4.h os-osf5.h os-solaris2.h
os-sunos4.h os-ultrix4.h
src/external/bsd/libpcap/dist/pcap: bluetooth.h bpf.h namedb.h nflog.h
pcap.h sll.h usb.h
src/external/bsd/libpcap/dist/tests: capturetest.c filtertest.c
findalldevstest.c opentest.c reactivatetest.c selpolltest.c
valgrindtest.c
src/external/bsd/libpcap/include: config.h
src/external/bsd/libpcap/lib: Makefile shlib_version
Added Files:
src/external/bsd/libpcap/lib: pcap_version.c pcap_version.h
Removed Files:
src/external/bsd/libpcap/dist: configure.in fad-null.c fad-sita.c
fad-win32.c pcap-can-linux.c pcap-can-linux.h pcap-canusb-linux.c
pcap-canusb-linux.h runlex.sh scanner.c.top
src/external/bsd/libpcap/dist/Win32/Include: addrinfo.h bittypes.h
cdecl_ext.h inetprivate.h ip6_misc.h sockstorage.h
src/external/bsd/libpcap/dist/Win32/Include/arpa: nameser.h
src/external/bsd/libpcap/dist/Win32/Include/net: netdb.h paths.h
src/external/bsd/libpcap/dist/Win32/Prj: libpcap.dsp libpcap.dsw
src/external/bsd/libpcap/dist/Win32/Src: ffs.c gai_strerror.c
getaddrinfo.c getnetbynm.c getnetent.c getopt.c getservent.c
inet_aton.c inet_net.c inet_pton.c
src/external/bsd/libpcap/lib: version.c version.h

Log Message:
merge conflicts.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/external/bsd/libpcap/dist/bpf_dump.c \
src/external/bsd/libpcap/dist/bpf_image.c \
src/external/bsd/libpcap/dist/dlpisubs.c \
src/external/bsd/libpcap/dist/etherent.c \
src/external/bsd/libpcap/dist/ethertype.h \
src/external/bsd/libpcap/dist/fad-getad.c \
src/external/bsd/libpcap/dist/fad-glifc.c \
src/external/bsd/libpcap/dist/nametoaddr.c \
src/external/bsd/libpcap/dist/pcap-dag.h \
src/external/bsd/libpcap/dist/pcap-libdlpi.c \
src/external/bsd/libpcap/dist/pcap-null.c \
src/external/bsd/libpcap/dist/pcap-stdinc.h \
src/external/bsd/libpcap/dist/pcap_activate.3pcap \
src/external/bsd/libpcap/dist/pcap_can_set_rfmon.3pcap \
src/external/bsd/libpcap/dist/pcap_close.3pcap \
src/external/bsd/libpcap/dist/pcap_create.3pcap \
src/external/bsd/libpcap/dist/pcap_datalink_val_to_name.3pcap \
src/external/bsd/libpcap/dist/pcap_dump_close.3pcap \
src/external/bsd/libpcap/dist/pcap_dump_file.3pcap \
src/external/bsd/libpcap/dist/pcap_dump_flush.3pcap \
src/external/bsd/libpcap/dist/pcap_dump_ftell.3pcap \
src/external/bsd/libpcap/dist/pcap_file.3pcap \
src/external/bsd/libpcap/dist/pcap_fileno.3pcap \
src/external/bsd/libpcap/dist/pcap_findalldevs.3pcap \
src/external/bsd/libpcap/dist/pcap_freecode.3pcap \
src/external/bsd/libpcap/dist/pcap_geterr.3p

CVS commit: src/external/bsd/libpcap/lib

2017-01-24 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Tue Jan 24 22:37:31 UTC 2017

Modified Files:
src/external/bsd/libpcap/lib: Makefile

Log Message:
Add more files


To generate a diff of this commit:
cvs rdiff -u -r1.13 -r1.14 src/external/bsd/libpcap/lib/Makefile

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



CVS commit: src/distrib/sets/lists

2017-01-24 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Tue Jan 24 22:30:53 UTC 2017

Modified Files:
src/distrib/sets/lists/base: shl.mi
src/distrib/sets/lists/debug: shl.mi

Log Message:
bump libpcap.


To generate a diff of this commit:
cvs rdiff -u -r1.796 -r1.797 src/distrib/sets/lists/base/shl.mi
cvs rdiff -u -r1.155 -r1.156 src/distrib/sets/lists/debug/shl.mi

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



CVS commit: src/distrib/sets/lists/comp

2017-01-24 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Tue Jan 24 23:27:52 UTC 2017

Modified Files:
src/distrib/sets/lists/comp: mi

Log Message:
Add another pcap header.


To generate a diff of this commit:
cvs rdiff -u -r1.2103 -r1.2104 src/distrib/sets/lists/comp/mi

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



CVS commit: src/external/bsd/tcpdump

2017-01-24 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Tue Jan 24 23:29:14 UTC 2017

Modified Files:
src/external/bsd/tcpdump/bin: Makefile
src/external/bsd/tcpdump/dist: addrtoname.c addrtostr.c af.c
ascii_strcasecmp.c bpf_dump.c checksum.c configure configure.in
cpack.c cpack.h ether.h gmpls.c gmt2local.c in_cksum.c interface.h
ip.h ip6.h ipproto.c l2vpn.c machdep.c nameser.h netdissect.h
nlpid.c oui.c parsenfsfh.c print-802_11.c print-802_15_4.c
print-ah.c print-ahcp.c print-aodv.c print-aoe.c print-ap1394.c
print-arcnet.c print-arp.c print-ascii.c print-atalk.c print-atm.c
print-babel.c print-beep.c print-bfd.c print-bgp.c print-bootp.c
print-bt.c print-calm-fast.c print-carp.c print-cdp.c print-cfm.c
print-chdlc.c print-cip.c print-cnfp.c print-dccp.c print-decnet.c
print-dhcp6.c print-domain.c print-dtp.c print-dvmrp.c print-eap.c
print-egp.c print-eigrp.c print-enc.c print-esp.c print-ether.c
print-fddi.c print-forces.c print-fr.c print-frag6.c print-ftp.c
print-geneve.c print-geonet.c print-gre.c print-hncp.c print-hsrp.c
print-http.c print-icmp.c print-icmp6.c print-igmp.c print-igrp.c
print-ip.c print-ip6.c print-ip6opts.c print-ipcomp.c print-ipfc.c
print-ipnet.c print-ipx.c print-isakmp.c print-isoclns.c
print-juniper.c print-krb.c print-l2tp.c print-lane.c print-ldp.c
print-lisp.c print-llc.c print-lldp.c print-lmp.c print-loopback.c
print-lspping.c print-lwapp.c print-lwres.c print-m3ua.c
print-medsa.c print-mobile.c print-mobility.c print-mpcp.c
print-mpls.c print-mptcp.c print-msdp.c print-msnlb.c print-nflog.c
print-nfs.c print-nsh.c print-ntp.c print-null.c print-olsr.c
print-openflow-1.0.c print-openflow.c print-ospf.c print-ospf6.c
print-otv.c print-pflog.c print-pfsync.c print-pgm.c print-pim.c
print-pktap.c print-ppi.c print-ppp.c print-pppoe.c print-pptp.c
print-radius.c print-raw.c print-resp.c print-rip.c print-ripng.c
print-rpki-rtr.c print-rrcp.c print-rsvp.c print-rt6.c print-rtsp.c
print-rx.c print-sctp.c print-sflow.c print-sip.c print-sl.c
print-sll.c print-slow.c print-smb.c print-smtp.c print-snmp.c
print-stp.c print-sunatm.c print-sunrpc.c print-symantec.c
print-syslog.c print-tcp.c print-telnet.c print-tftp.c
print-timed.c print-tipc.c print-token.c print-udld.c print-udp.c
print-usb.c print-vjc.c print-vqp.c print-vrrp.c print-vtp.c
print-vxlan-gpe.c print-vxlan.c print-wb.c print-zephyr.c
print-zeromq.c print.c setsignal.c signature.c smbutil.c
strtoaddr.c tcp.h tcpdump.1.in tcpdump.c udp.h util-print.c util.c
vfprintf.c
src/external/bsd/tcpdump/include: config.h
Removed Files:
src/external/bsd/tcpdump/dist: atmuni31.h strcasecmp.c tcpdump-stdinc.h
src/external/bsd/tcpdump/dist/missing: addrinfo.h getnameinfo.c
inet_aton.c inet_ntop.c inet_pton.c
src/external/bsd/tcpdump/dist/win32/Include: w32_fzs.h

Log Message:
merge conflicts.


To generate a diff of this commit:
cvs rdiff -u -r1.16 -r1.17 src/external/bsd/tcpdump/bin/Makefile
cvs rdiff -u -r1.7 -r1.8 src/external/bsd/tcpdump/dist/addrtoname.c \
src/external/bsd/tcpdump/dist/print-isakmp.c \
src/external/bsd/tcpdump/dist/print-lmp.c \
src/external/bsd/tcpdump/dist/print-pim.c \
src/external/bsd/tcpdump/dist/print-rsvp.c
cvs rdiff -u -r1.1.1.1 -r1.2 src/external/bsd/tcpdump/dist/addrtostr.c \
src/external/bsd/tcpdump/dist/ascii_strcasecmp.c \
src/external/bsd/tcpdump/dist/print-hncp.c \
src/external/bsd/tcpdump/dist/print-lisp.c \
src/external/bsd/tcpdump/dist/print-medsa.c \
src/external/bsd/tcpdump/dist/print-nsh.c \
src/external/bsd/tcpdump/dist/print-resp.c \
src/external/bsd/tcpdump/dist/print-vxlan-gpe.c \
src/external/bsd/tcpdump/dist/print.c \
src/external/bsd/tcpdump/dist/strtoaddr.c \
src/external/bsd/tcpdump/dist/util-print.c
cvs rdiff -u -r1.4 -r1.5 src/external/bsd/tcpdump/dist/af.c \
src/external/bsd/tcpdump/dist/bpf_dump.c \
src/external/bsd/tcpdump/dist/ether.h \
src/external/bsd/tcpdump/dist/gmpls.c \
src/external/bsd/tcpdump/dist/gmt2local.c \
src/external/bsd/tcpdump/dist/ip6.h \
src/external/bsd/tcpdump/dist/ipproto.c \
src/external/bsd/tcpdump/dist/l2vpn.c \
src/external/bsd/tcpdump/dist/nameser.h \
src/external/bsd/tcpdump/dist/print-ah.c \
src/external/bsd/tcpdump/dist/print-ap1394.c \
src/external/bsd/tcpdump/dist/print-beep.c \
src/external/bsd/tcpdump/dist/print-bfd.c \
src/external/bsd/tcpdump/dist/print-bt.c \
src/external/bsd/tcpdump/dist/print-cip.c \
src/external/bsd/tcpdu

CVS commit: src/doc

2017-01-24 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Tue Jan 24 23:31:03 UTC 2017

Modified Files:
src/doc: 3RDPARTY CHANGES

Log Message:
new tcpdump/libpcap


To generate a diff of this commit:
cvs rdiff -u -r1.1400 -r1.1401 src/doc/3RDPARTY
cvs rdiff -u -r1.2237 -r1.2238 src/doc/CHANGES

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



CVS commit: src/external/bsd/libpcap/lib

2017-01-24 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Tue Jan 24 23:26:58 UTC 2017

Modified Files:
src/external/bsd/libpcap/lib: Makefile

Log Message:
add another header file


To generate a diff of this commit:
cvs rdiff -u -r1.14 -r1.15 src/external/bsd/libpcap/lib/Makefile

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



CVS commit: src/sys/net

2017-01-24 Thread Ryota Ozaki
Module Name:src
Committed By:   ozaki-r
Date:   Wed Jan 25 01:04:23 UTC 2017

Modified Files:
src/sys/net: bpf.c bpf.h bpf_stub.c

Log Message:
Use bpf_ops for bpf_mtap_softint

By doing so we don't need to care whether a kernel enables bpfilter or not.


To generate a diff of this commit:
cvs rdiff -u -r1.205 -r1.206 src/sys/net/bpf.c
cvs rdiff -u -r1.68 -r1.69 src/sys/net/bpf.h
cvs rdiff -u -r1.6 -r1.7 src/sys/net/bpf_stub.c

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



CVS commit: src/sys/net

2017-01-24 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Wed Jan 25 03:04:22 UTC 2017

Modified Files:
src/sys/net: if.c

Log Message:
fix locking against myself in module autoload; module autoload calls
if_clone_attach which takes the lock again.


To generate a diff of this commit:
cvs rdiff -u -r1.374 -r1.375 src/sys/net/if.c

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



CVS commit: src/share/misc

2017-01-24 Thread Paul Goyette
Module Name:src
Committed By:   pgoyette
Date:   Wed Jan 25 03:23:29 UTC 2017

Modified Files:
src/share/misc: acronyms-o.real

Log Message:
Add "SOS"


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/share/misc/acronyms-o.real

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

2017-01-24 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Wed Jan 25 06:33:52 UTC 2017

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

Log Message:
auich_round_blocksize: never return 0 as blocksize


To generate a diff of this commit:
cvs rdiff -u -r1.149 -r1.150 src/sys/dev/pci/auich.c

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



CVS commit: src/sys/net

2017-01-24 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Wed Jan 25 07:17:19 UTC 2017

Modified Files:
src/sys/net: if_media.c

Log Message:
ifmedia_init(): Clear ifm_media with IFM_NONE instead of 0.


To generate a diff of this commit:
cvs rdiff -u -r1.30 -r1.31 src/sys/net/if_media.c

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



CVS commit: src/sys/net

2017-01-24 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Wed Jan 25 07:19:24 UTC 2017

Modified Files:
src/sys/net: if_media.c

Log Message:
ifmedia_removeall(): Clear ifm_cur and ifm_media after removing all ifmedia
entries.


To generate a diff of this commit:
cvs rdiff -u -r1.31 -r1.32 src/sys/net/if_media.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

2017-01-24 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Wed Jan 25 07:46:53 UTC 2017

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

Log Message:
 Fix SFP+ insersion or replacement stuff.


To generate a diff of this commit:
cvs rdiff -u -r1.63 -r1.64 src/sys/dev/pci/ixgbe/ixgbe.c
cvs rdiff -u -r1.19 -r1.20 src/sys/dev/pci/ixgbe/ixgbe.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/ixgbe

2017-01-24 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Wed Jan 25 07:49:23 UTC 2017

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

Log Message:
Remove debug printf()s.


To generate a diff of this commit:
cvs rdiff -u -r1.64 -r1.65 src/sys/dev/pci/ixgbe/ixgbe.c

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