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

2020-11-16 Thread Kengo NAKAHARA
Module Name:src Committed By: knakahara Date: Tue Nov 17 04:50:29 UTC 2020 Modified Files: src/sys/dev/pci/ixgbe: ixgbe.c ixgbe.h Log Message: Add new spin mutex to avoid race between ixgbe_msix_admin() and ixgbe_handle_admin(). At first, it seems "IXGBE_WRITE_REG(hw, IX

CVS commit: src/sys

2020-11-16 Thread Chuck Silvers
Module Name:src Committed By: chs Date: Tue Nov 17 03:22:33 UTC 2020 Modified Files: src/sys/kern: sys_socket.c src/sys/sys: socketvar.h Log Message: When SS_RESTARTSYS was added, it was accidentally given the same value as the existing SS_ASYNC. SS_ASYNC was alre

CVS commit: src/external/cddl/osnet/dist/uts/common/dtrace

2020-11-16 Thread Chuck Silvers
Module Name:src Committed By: chs Date: Tue Nov 17 03:20:33 UTC 2020 Modified Files: src/external/cddl/osnet/dist/uts/common/dtrace: dtrace.c Log Message: Remove a pointless printf. To generate a diff of this commit: cvs rdiff -u -r1.40 -r1.41 \ src/external/cddl/osn

CVS commit: src/usr.bin/make

2020-11-16 Thread Roland Illig
Module Name:src Committed By: rillig Date: Mon Nov 16 23:27:41 UTC 2020 Modified Files: src/usr.bin/make: suff.c Log Message: make(1): rename local functions in suffix handling Name these functions after their main object, which is the suffix list. To generate a diff of

CVS commit: src/usr.bin/make

2020-11-16 Thread Roland Illig
Module Name:src Committed By: rillig Date: Mon Nov 16 23:23:57 UTC 2020 Modified Files: src/usr.bin/make: suff.c Log Message: make(1): merge duplicate calls to SuffInsert To generate a diff of this commit: cvs rdiff -u -r1.245 -r1.246 src/usr.bin/make/suff.c Please note

CVS commit: src/usr.bin/make

2020-11-16 Thread Roland Illig
Module Name:src Committed By: rillig Date: Mon Nov 16 22:31:42 UTC 2020 Modified Files: src/usr.bin/make: make.c suff.c Log Message: make(1): clean up code style in make.c and suff.c To generate a diff of this commit: cvs rdiff -u -r1.208 -r1.209 src/usr.bin/make/make.c

CVS commit: src/usr.bin/make

2020-11-16 Thread Roland Illig
Module Name:src Committed By: rillig Date: Mon Nov 16 22:28:44 UTC 2020 Modified Files: src/usr.bin/make: targ.c Log Message: make(1): clean up code style in targ.c To generate a diff of this commit: cvs rdiff -u -r1.134 -r1.135 src/usr.bin/make/targ.c Please note that

CVS commit: src/usr.bin/make

2020-11-16 Thread Roland Illig
Module Name:src Committed By: rillig Date: Mon Nov 16 22:27:04 UTC 2020 Modified Files: src/usr.bin/make: targ.c Log Message: make(1): initialize and free GNode fields in declaration order Initialization and destruction of the fields is independent from the other fields.

CVS commit: src/usr.bin/make

2020-11-16 Thread Roland Illig
Module Name:src Committed By: rillig Date: Mon Nov 16 22:08:20 UTC 2020 Modified Files: src/usr.bin/make: main.c Log Message: make(1): fix initialization order of modules (broken since today) In CLEANUP mode, Var_Init depends on Targ_Init since the variable scopes are imp

CVS commit: src/usr.bin/make

2020-11-16 Thread Roland Illig
Module Name:src Committed By: rillig Date: Mon Nov 16 21:59:08 UTC 2020 Modified Files: src/usr.bin/make: targ.c Log Message: make(1): rename variables in targ.c The previous names didn't make it obvious that 'allTargets' and 'targets' belong together. Naming both 'allTa

CVS commit: src/usr.bin/make

2020-11-16 Thread Roland Illig
Module Name:src Committed By: rillig Date: Mon Nov 16 21:53:10 UTC 2020 Modified Files: src/usr.bin/make: make.h targ.c Log Message: make(1): clean up and extend comments in targ.c To generate a diff of this commit: cvs rdiff -u -r1.209 -r1.210 src/usr.bin/make/make.h cv

CVS commit: src/usr.bin/make

2020-11-16 Thread Roland Illig
Module Name:src Committed By: rillig Date: Mon Nov 16 21:48:19 UTC 2020 Modified Files: src/usr.bin/make: nonints.h targ.c Log Message: make(1): make some GNode functions const To generate a diff of this commit: cvs rdiff -u -r1.161 -r1.162 src/usr.bin/make/nonints.h cvs

CVS commit: src/usr.bin/make

2020-11-16 Thread Roland Illig
Module Name:src Committed By: rillig Date: Mon Nov 16 21:44:29 UTC 2020 Modified Files: src/usr.bin/make: targ.c Log Message: make(1): in CLEANUP mode, preallocate list of all GNodes This makes the code simpler and more uniform. To generate a diff of this commit: cvs rd

CVS commit: src/usr.bin/make

2020-11-16 Thread Roland Illig
Module Name:src Committed By: rillig Date: Mon Nov 16 21:41:02 UTC 2020 Modified Files: src/usr.bin/make: targ.c Log Message: make(1): rename TargFreeGN to GNode_Free This is the usual counterpart to a New function, like for Lst, HashTable, Buffer. To generate a diff of

CVS commit: src/usr.bin/make

2020-11-16 Thread Roland Illig
Module Name:src Committed By: rillig Date: Mon Nov 16 21:39:22 UTC 2020 Modified Files: src/usr.bin/make: make.c nonints.h parse.c suff.c targ.c var.c Log Message: make(1): rename Targ_NewGN to GNode_New This function is a classical constructor function, and if it weren't

CVS commit: src/usr.bin/make

2020-11-16 Thread Roland Illig
Module Name:src Committed By: rillig Date: Mon Nov 16 18:49:54 UTC 2020 Modified Files: src/usr.bin/make: suff.c Log Message: make(1): inline SUFF_DEBUG3 and SUFF_DEBUG4 Each of them was only used a single time, which was not worth an additional macro. To generate a dif

CVS commit: src/usr.bin/make

2020-11-16 Thread Roland Illig
Module Name:src Committed By: rillig Date: Mon Nov 16 18:47:03 UTC 2020 Modified Files: src/usr.bin/make: suff.c Log Message: make(1): clean up coding style in suff.c To generate a diff of this commit: cvs rdiff -u -r1.241 -r1.242 src/usr.bin/make/suff.c Please note tha

CVS commit: src/usr.bin/make

2020-11-16 Thread Roland Illig
Module Name:src Committed By: rillig Date: Mon Nov 16 18:45:44 UTC 2020 Modified Files: src/usr.bin/make: suff.c Log Message: make(1): improve local variable names in suff.c The name 's' was used for both 'suff' and 'src', which was unnecessarily confusing. To generate

CVS commit: src/usr.bin/make

2020-11-16 Thread Roland Illig
Module Name:src Committed By: rillig Date: Mon Nov 16 18:41:41 UTC 2020 Modified Files: src/usr.bin/make: suff.c Log Message: make(1): remove redundant braces and parentheses from suff.c To generate a diff of this commit: cvs rdiff -u -r1.239 -r1.240 src/usr.bin/make/suf

CVS commit: src/usr.bin/make

2020-11-16 Thread Roland Illig
Module Name:src Committed By: rillig Date: Mon Nov 16 18:38:50 UTC 2020 Modified Files: src/usr.bin/make: suff.c Log Message: make(1): use boolean expressions in conditions To generate a diff of this commit: cvs rdiff -u -r1.238 -r1.239 src/usr.bin/make/suff.c Please no

CVS commit: src/usr.bin/make

2020-11-16 Thread Roland Illig
Module Name:src Committed By: rillig Date: Mon Nov 16 18:34:29 UTC 2020 Modified Files: src/usr.bin/make: suff.c Log Message: make(1): clean up comments in suff.c To generate a diff of this commit: cvs rdiff -u -r1.237 -r1.238 src/usr.bin/make/suff.c Please note that di

CVS commit: src/usr.bin/make

2020-11-16 Thread Roland Illig
Module Name:src Committed By: rillig Date: Mon Nov 16 18:29:49 UTC 2020 Modified Files: src/usr.bin/make: util.c Log Message: make(1): use postfix increment where possible To generate a diff of this commit: cvs rdiff -u -r1.67 -r1.68 src/usr.bin/make/util.c Please note

CVS commit: [netbsd-9] src/doc

2020-11-16 Thread Martin Husemann
Module Name:src Committed By: martin Date: Mon Nov 16 18:29:48 UTC 2020 Modified Files: src/doc [netbsd-9]: CHANGES-9.2 Log Message: Ticket #1133 To generate a diff of this commit: cvs rdiff -u -r1.1.2.13 -r1.1.2.14 src/doc/CHANGES-9.2 Please note that diffs are not pub

CVS commit: src/usr.bin/make

2020-11-16 Thread Roland Illig
Module Name:src Committed By: rillig Date: Mon Nov 16 18:28:27 UTC 2020 Modified Files: src/usr.bin/make: job.c main.c str.c Log Message: make(1): use postfix increment where possible To generate a diff of this commit: cvs rdiff -u -r1.325 -r1.326 src/usr.bin/make/job.c

CVS commit: [netbsd-9] src/sys/dev/pci

2020-11-16 Thread Martin Husemann
Module Name:src Committed By: martin Date: Mon Nov 16 18:21:45 UTC 2020 Modified Files: src/sys/dev/pci [netbsd-9]: if_wm.c Log Message: Pull up following revision(s) (requested by rin in ticket #1133): sys/dev/pci/if_wm.c: revision 1.696 Fix little-endian depend

CVS commit: [netbsd-8] src/doc

2020-11-16 Thread Martin Husemann
Module Name:src Committed By: martin Date: Mon Nov 16 18:20:31 UTC 2020 Modified Files: src/doc [netbsd-8]: CHANGES-8.3 Log Message: Ticket #1623 To generate a diff of this commit: cvs rdiff -u -r1.1.2.49 -r1.1.2.50 src/doc/CHANGES-8.3 Please note that diffs are not pub

CVS commit: [netbsd-8] src/sys/dev/pci

2020-11-16 Thread Martin Husemann
Module Name:src Committed By: martin Date: Mon Nov 16 18:18:15 UTC 2020 Modified Files: src/sys/dev/pci [netbsd-8]: if_wm.c Log Message: Pull up following revision(s) (requested by rin in ticket #1623): sys/dev/pci/if_wm.c: revision 1.696 Fix little-endian depend

CVS commit: xsrc/external/mit/xorg-server/dist/hw/netbsd/x68k

2020-11-16 Thread Izumi Tsutsui
Module Name:xsrc Committed By: tsutsui Date: Mon Nov 16 16:46:28 UTC 2020 Modified Files: xsrc/external/mit/xorg-server/dist/hw/netbsd/x68k: x68kConfig.c Log Message: Report which settings are chosen per a config file in the log file. Also reorganize a logging strategy in

CVS commit: src/usr.bin/make

2020-11-16 Thread Roland Illig
Module Name:src Committed By: rillig Date: Mon Nov 16 16:15:37 UTC 2020 Modified Files: src/usr.bin/make: suff.c Log Message: make(1): mark Suff.ref as probably unused To generate a diff of this commit: cvs rdiff -u -r1.236 -r1.237 src/usr.bin/make/suff.c Please note th

CVS commit: src

2020-11-16 Thread Roland Illig
Module Name:src Committed By: rillig Date: Mon Nov 16 15:12:16 UTC 2020 Modified Files: src/distrib/sets/lists/tests: mi src/usr.bin/make/unit-tests: Makefile Added Files: src/usr.bin/make/unit-tests: suff-self.exp suff-self.mk Log Message: make(1): add tes

CVS commit: src/external/mit/ctwm/etc

2020-11-16 Thread Nia Alarie
Module Name:src Committed By: nia Date: Mon Nov 16 14:12:46 UTC 2020 Modified Files: src/external/mit/ctwm/etc: system.ctwmrc Log Message: system.ctwmrc: Set Cursors to avoid strange default fallbacks To generate a diff of this commit: cvs rdiff -u -r1.9 -r1.10 src/exter

CVS commit: src/sys/dev/pci

2020-11-16 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Mon Nov 16 11:54:10 UTC 2020 Modified Files: src/sys/dev/pci: if_wm.c Log Message: Fix little-endian dependence in wm_rxeof(), by which packets cannot be received by 82574 and successors on big-endian machines. Tested by aarch64eb w

CVS commit: src/distrib/evbarm

2020-11-16 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Mon Nov 16 11:38:30 UTC 2020 Modified Files: src/distrib/evbarm: Makefile src/distrib/evbarm/installimage: Makefile src/distrib/evbarm/instkernel/ramdisk: Makefile Log Message: Correctly support aarch64eb and earmv7hf