CVS commit: src/usr.bin/resize
Module Name:src Committed By: mrg Date: Sun Feb 28 09:04:28 UTC 2021 Modified Files: src/usr.bin/resize: Makefile Log Message: disable the rule to copy resize.c since it fails on r/o src trees: cp: /home/source/ab/HEAD/src/usr.bin/resize/resize.c: Permission denied To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 src/usr.bin/resize/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src
Module Name:src Committed By: rillig Date: Sun Feb 28 12:40:00 UTC 2021 Modified Files: src/tests/usr.bin/xlint/lint1: msg_003.c msg_108.c msg_124.c msg_126.c msg_156.c msg_210.c msg_247.c msg_275.c msg_308.c src/usr.bin/xlint/lint1: check-msgs.lua Log Message: tests/lint: keep messages in test files in sync with actual messages Each of the tests named msg_*.c repeats the template of the message, to make the test somewhat self-contained when viewed in isolation. This creates a redundancy, and keeping track of this manually is next to impossible. I tried it and failed in 9 cases, even though it has just been 2 months since I myself created the initial files and I knew all the time that this redundancy exists. Be fool-proof for the future by checking this automatically. To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 src/tests/usr.bin/xlint/lint1/msg_003.c \ src/tests/usr.bin/xlint/lint1/msg_126.c \ src/tests/usr.bin/xlint/lint1/msg_275.c cvs rdiff -u -r1.4 -r1.5 src/tests/usr.bin/xlint/lint1/msg_108.c \ src/tests/usr.bin/xlint/lint1/msg_156.c \ src/tests/usr.bin/xlint/lint1/msg_210.c \ src/tests/usr.bin/xlint/lint1/msg_308.c cvs rdiff -u -r1.7 -r1.8 src/tests/usr.bin/xlint/lint1/msg_124.c cvs rdiff -u -r1.2 -r1.3 src/tests/usr.bin/xlint/lint1/msg_247.c cvs rdiff -u -r1.7 -r1.8 src/usr.bin/xlint/lint1/check-msgs.lua Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/usr.bin/xlint/lint1
Module Name:src Committed By: rillig Date: Sun Feb 28 12:45:47 UTC 2021 Modified Files: src/usr.bin/xlint/lint1: check-msgs.lua Log Message: tests/lint: shorten code for checking redundancy in files No functional change. To generate a diff of this commit: cvs rdiff -u -r1.8 -r1.9 src/usr.bin/xlint/lint1/check-msgs.lua Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/libexec/httpd
Module Name:src Committed By: rillig Date: Sun Feb 28 16:10:00 UTC 2021 Modified Files: src/libexec/httpd: printenv.lua Log Message: libexec/httpd: fix cross-site scripting in Lua example curl \ --header 'NAME: ' \ 'http://127.0.0.1:8080/test/printenv?=' To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 src/libexec/httpd/printenv.lua Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/usr.bin/xlint/lint2
Module Name:src Committed By: rillig Date: Sun Feb 28 17:16:51 UTC 2021 Modified Files: src/usr.bin/xlint/lint2: chk.c read.c Log Message: lint2: align comments in the code with actual messages To generate a diff of this commit: cvs rdiff -u -r1.39 -r1.40 src/usr.bin/xlint/lint2/chk.c \ src/usr.bin/xlint/lint2/read.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/xlint/lint2
Module Name:src Committed By: rillig Date: Sun Feb 28 18:17:08 UTC 2021 Added Files: src/usr.bin/xlint/lint2: check-msgs.lua Log Message: lint2: add redundancy checker for comments in source code Based on the redundancy checker for lint1. No functional change. To generate a diff of this commit: cvs rdiff -u -r0 -r1.1 src/usr.bin/xlint/lint2/check-msgs.lua Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/usr.bin/xlint
Module Name:src Committed By: rillig Date: Sun Feb 28 18:51:51 UTC 2021 Modified Files: src/usr.bin/xlint/common: inittyp.c lint.h src/usr.bin/xlint/lint1: decl.c lex.c tree.c Log Message: lint: rename members and access macros of the basic types Having the measurement unit in the variable name prevents accidental confusion between bits and bytes, especially since usually the word 'size' means the size in bytes, while 'width' means the size in bits, at least for integer types. No functional change. To generate a diff of this commit: cvs rdiff -u -r1.19 -r1.20 src/usr.bin/xlint/common/inittyp.c cvs rdiff -u -r1.25 -r1.26 src/usr.bin/xlint/common/lint.h cvs rdiff -u -r1.142 -r1.143 src/usr.bin/xlint/lint1/decl.c cvs rdiff -u -r1.9 -r1.10 src/usr.bin/xlint/lint1/lex.c cvs rdiff -u -r1.227 -r1.228 src/usr.bin/xlint/lint1/tree.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/powerpc/oea
Module Name:src Committed By: thorpej Date: Sun Feb 28 19:01:11 UTC 2021 Modified Files: src/sys/arch/powerpc/oea: ofw_subr.S Log Message: Minor re-ordering of a few things, and issue an isync barrier at all critical MMU on/off transitions. To generate a diff of this commit: cvs rdiff -u -r1.19 -r1.20 src/sys/arch/powerpc/oea/ofw_subr.S Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/usr.bin/xlint/lint1
Module Name:src Committed By: rillig Date: Sun Feb 28 19:16:05 UTC 2021 Modified Files: src/usr.bin/xlint/lint1: func.c lint1.h tree.c Log Message: lint: rename is_nonzero to constant_is_nonzero The new function name emphasizes that the given node must have the operator CON. No functional change. To generate a diff of this commit: cvs rdiff -u -r1.73 -r1.74 src/usr.bin/xlint/lint1/func.c cvs rdiff -u -r1.67 -r1.68 src/usr.bin/xlint/lint1/lint1.h cvs rdiff -u -r1.228 -r1.229 src/usr.bin/xlint/lint1/tree.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/xlint/lint1
Module Name:src Committed By: rillig Date: Sun Feb 28 19:24:15 UTC 2021 Modified Files: src/usr.bin/xlint/lint1: lint1.h tree.c Log Message: lint: replace wrong comment with assertion The broad type of a value is indeed stored in the value itself, in the member v_tspec. For nodes that refer to this value, it is redundantly stored, it always equals tn->tn_type->t_tspec. After initialization, neither tn->tn_type nor val->v_tspec are modified. This is not ensured by the compiler but has to be analyzed manually. No functional change. To generate a diff of this commit: cvs rdiff -u -r1.68 -r1.69 src/usr.bin/xlint/lint1/lint1.h cvs rdiff -u -r1.229 -r1.230 src/usr.bin/xlint/lint1/tree.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/xlint/lint1
Module Name:src Committed By: rillig Date: Sun Feb 28 20:04:52 UTC 2021 Modified Files: src/usr.bin/xlint/lint1: tree.c Log Message: lint: document where in C99 the behavior of cconv is specified To generate a diff of this commit: cvs rdiff -u -r1.230 -r1.231 src/usr.bin/xlint/lint1/tree.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src
Module Name:src Committed By: rillig Date: Sun Feb 28 20:17:14 UTC 2021 Modified Files: src/distrib/sets/lists/tests: mi src/tests/usr.bin/xlint/lint1: Makefile t_integration.sh Added Files: src/tests/usr.bin/xlint/lint1: d_c99_union_init5.c Log Message: lint: add test to demonstrate that PR bin/20264 has been fixed To generate a diff of this commit: cvs rdiff -u -r1.1022 -r1.1023 src/distrib/sets/lists/tests/mi cvs rdiff -u -r1.32 -r1.33 src/tests/usr.bin/xlint/lint1/Makefile cvs rdiff -u -r0 -r1.1 src/tests/usr.bin/xlint/lint1/d_c99_union_init5.c cvs rdiff -u -r1.30 -r1.31 src/tests/usr.bin/xlint/lint1/t_integration.sh Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/arch/macppc
Module Name:src Committed By: thorpej Date: Sun Feb 28 20:27:40 UTC 2021 Modified Files: src/sys/arch/macppc/include: loadfile_machdep.h src/sys/arch/macppc/stand/ofwboot: Locore.c Makefile boot.c ofdev.c openfirm.h version Added Files: src/sys/arch/macppc/stand/ofwboot: loadfile_machdep.c Log Message: - When starting the boot program, cache a bunch of OFW frequently used ihandles / phandles, rather than fetching them all the time. - Change the signature of OF_call_method() to take an array of cells for the inputs and outputs, rather than using variadic arguments. This makes it much easier to use OF_call_method() when the format of the arguments passed to a given method are determined at run-time (due to e.g. #address-cells). - Properly inform OpenFirmware where the kernel is loaded by using "claim" on /chosen/memory and, if running in virtual-mode, using "claim" on /chosen/mmu to reserve the VA, and "map" on /chosen/mmu to enter the translation. (The kernel is still always mapped VA==PA.) To generate a diff of this commit: cvs rdiff -u -r1.6 -r1.7 src/sys/arch/macppc/include/loadfile_machdep.h cvs rdiff -u -r1.34 -r1.35 src/sys/arch/macppc/stand/ofwboot/Locore.c cvs rdiff -u -r1.59 -r1.60 src/sys/arch/macppc/stand/ofwboot/Makefile cvs rdiff -u -r1.30 -r1.31 src/sys/arch/macppc/stand/ofwboot/boot.c cvs rdiff -u -r0 -r1.1 src/sys/arch/macppc/stand/ofwboot/loadfile_machdep.c cvs rdiff -u -r1.27 -r1.28 src/sys/arch/macppc/stand/ofwboot/ofdev.c cvs rdiff -u -r1.8 -r1.9 src/sys/arch/macppc/stand/ofwboot/openfirm.h cvs rdiff -u -r1.14 -r1.15 src/sys/arch/macppc/stand/ofwboot/version Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/arch/powerpc/include
Module Name:src Committed By: thorpej Date: Sun Feb 28 20:31:33 UTC 2021 Modified Files: src/sys/arch/powerpc/include: ofw_machdep.h Log Message: Bump OFW_MAX_TRANSLATIONS from 32 -> 48. 32 was already tight (at least on my Macs), and having having translations for the kernel itself present in the firmware's translation table bumped it over the 32-entry limit. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 src/sys/arch/powerpc/include/ofw_machdep.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/alpha/alpha
Module Name:src Committed By: tnn Date: Sun Feb 28 21:34:34 UTC 2021 Modified Files: src/sys/arch/alpha/alpha: sys_machdep.c Log Message: support building alpha kernel without PCI bus To generate a diff of this commit: cvs rdiff -u -r1.21 -r1.22 src/sys/arch/alpha/alpha/sys_machdep.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/tests/usr.bin/xlint/lint1
Module Name:src Committed By: rillig Date: Sun Feb 28 21:39:17 UTC 2021 Modified Files: src/tests/usr.bin/xlint/lint1: msg_132.c msg_132.exp Log Message: tests/lint: add test for narrowing conversions Lint can warn about narrowing conversions, it just doesn't do so by default. The option -a (which is included in the default LINTFLAGS in sys.mk) only reports narrowing conversions from 'long' or larger. To get warnings about all possible narrowing conversions, the option -a has to be given more than once. PR bin/14531 To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 src/tests/usr.bin/xlint/lint1/msg_132.c cvs rdiff -u -r1.1 -r1.2 src/tests/usr.bin/xlint/lint1/msg_132.exp Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src
Module Name:src Committed By: rillig Date: Sun Feb 28 22:12:17 UTC 2021 Modified Files: src/distrib/sets/lists/tests: mi src/tests/usr.bin/xlint/lint1: Makefile t_integration.sh src/usr.bin/xlint/lint1: tree.c Added Files: src/tests/usr.bin/xlint/lint1: d_pr_22119.c d_pr_22119.exp Log Message: lint: fix null pointer dereference on parse error Fixes PR bin/22119. To generate a diff of this commit: cvs rdiff -u -r1.1023 -r1.1024 src/distrib/sets/lists/tests/mi cvs rdiff -u -r1.33 -r1.34 src/tests/usr.bin/xlint/lint1/Makefile cvs rdiff -u -r0 -r1.1 src/tests/usr.bin/xlint/lint1/d_pr_22119.c \ src/tests/usr.bin/xlint/lint1/d_pr_22119.exp cvs rdiff -u -r1.31 -r1.32 src/tests/usr.bin/xlint/lint1/t_integration.sh cvs rdiff -u -r1.231 -r1.232 src/usr.bin/xlint/lint1/tree.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/libunwind
Module Name:src Committed By: joerg Date: Sun Feb 28 23:12:37 UTC 2021 Modified Files: src/sys/lib/libunwind: AddressSpace.hpp Log Message: Defer acquiring the FDE lock until after the allocation. This can avoid nesting issues between malloc and backtrace when using LSan. To generate a diff of this commit: cvs rdiff -u -r1.9 -r1.10 src/sys/lib/libunwind/AddressSpace.hpp Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/usr.bin/xlint/lint1
Module Name:src Committed By: rillig Date: Mon Mar 1 00:51:01 UTC 2021 Modified Files: src/usr.bin/xlint/lint1: lex.c Log Message: lint: only warn once about integer constant overflow on 32-bit Previously, the test msg_056.c warned twice about the integer literal, but only on 32-bit platforms. On 64-bit platforms, there was only a single warning since the integer constant was converted to type __uint128_t, and this prevented the second warning. On 32-bit targets, there is no __uint128_t though. Fixes part of PR bin/55976. To generate a diff of this commit: cvs rdiff -u -r1.10 -r1.11 src/usr.bin/xlint/lint1/lex.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/wpa/dist
Module Name:src Committed By: christos Date: Mon Mar 1 01:38:10 UTC 2021 Update of /cvsroot/src/external/bsd/wpa/dist In directory ivanova.netbsd.org:/tmp/cvs-serv22775 Log Message: ChangeLog for wpa_supplicant 2019-08-07 - v2.9 * SAE changes - disable use of groups using Brainpool curves - improved protection against side channel attacks [https://w1.fi/security/2019-6/] * EAP-pwd changes - disable use of groups using Brainpool curves - improved protection against side channel attacks [https://w1.fi/security/2019-6/] * fixed FT-EAP initial mobility domain association using PMKSA caching * added configuration of airtime policy * fixed FILS to and RSNE into (Re)Association Response frames * fixed DPP bootstrapping URI parser of channel list * added support for regulatory WMM limitation (for ETSI) * added support for MACsec Key Agreement using IEEE 802.1X/PSK * added experimental support for EAP-TEAP server (RFC 7170) * added experimental support for EAP-TLS server with TLS v1.3 * added support for two server certificates/keys (RSA/ECC) * added AKMSuiteSelector into "STA " control interface data to determine with AKM was used for an association * added eap_sim_id parameter to allow EAP-SIM/AKA server pseudonym and fast reauthentication use to be disabled * fixed an ECDH operation corner case with OpenSSL 2019-04-21 - v2.8 * SAE changes - added support for SAE Password Identifier - changed default configuration to enable only group 19 (i.e., disable groups 20, 21, 25, 26 from default configuration) and disable all unsuitable groups completely based on REVmd changes - improved anti-clogging token mechanism and SAE authentication frame processing during heavy CPU load; this mitigates some issues with potential DoS attacks trying to flood an AP with large number of SAE messages - added Finite Cyclic Group field in status code 77 responses - reject use of unsuitable groups based on new implementation guidance in REVmd (allow only FFC groups with prime >= 3072 bits and ECC groups with prime >= 256) - minimize timing and memory use differences in PWE derivation [https://w1.fi/security/2019-1/] (CVE-2019-9494) - fixed confirm message validation in error cases [https://w1.fi/security/2019-3/] (CVE-2019-9496) * EAP-pwd changes - minimize timing and memory use differences in PWE derivation [https://w1.fi/security/2019-2/] (CVE-2019-9495) - verify peer scalar/element [https://w1.fi/security/2019-4/] (CVE-2019-9497 and CVE-2019-9498) - fix message reassembly issue with unexpected fragment [https://w1.fi/security/2019-5/] - enforce rand,mask generation rules more strictly - fix a memory leak in PWE derivation - disallow ECC groups with a prime under 256 bits (groups 25, 26, and 27) * Hotspot 2.0 changes - added support for release number 3 - reject release 2 or newer association without PMF * added support for RSN operating channel validation (CONFIG_OCV=y and configuration parameter ocv=1) * added Multi-AP protocol support * added FTM responder configuration * fixed build with LibreSSL * added FT/RRB workaround for short Ethernet frame padding * fixed KEK2 derivation for FILS+FT * added RSSI-based association rejection from OCE * extended beacon reporting functionality * VLAN changes - allow local VLAN management with remote RADIUS authentication - add WPA/WPA2 passphrase/PSK -based VLAN assignment * OpenSSL: allow systemwide policies to be overridden * extended PEAP to derive EMSK to enable use with ERP/FILS * extended WPS to allow SAE configuration to be added automatically for PSK (wps_cred_add_sae=1) * fixed FT and SA Query Action frame with AP-MLME-in-driver cases * OWE: allow Diffie-Hellman Parameter element to be included with DPP in preparation for DPP protocol extension * RADIUS server: started to accept ERP keyName-NAI as user identity automatically without matching EAP database entry * fixed PTK rekeying with FILS and FT ChangeLog for hostapd 2019-08-07 - v2.9 * SAE changes - disable use of groups using Brainpool curves - improved protection against side channel attacks [https://w1.fi/security/2019-6/] * EAP-pwd changes - disable use of groups using Brainpool curves - allow the set of groups to be configured (eap_pwd_groups)
CVS commit: src/external/bsd/wpa/dist
Module Name:src Committed By: christos Date: Mon Mar 1 01:40:16 UTC 2021 Modified Files: src/external/bsd/wpa/dist/hostapd: hostapd_cli.c main.c src/external/bsd/wpa/dist/src/ap: ap_drv_ops.c drv_callbacks.c hostapd.c hostapd.h ieee802_11.c wmm.c wpa_auth.c wpa_auth.h wpa_auth_ft.c wpa_auth_i.h src/external/bsd/wpa/dist/src/common: sae.c wpa_common.h src/external/bsd/wpa/dist/src/crypto: crypto_openssl.c src/external/bsd/wpa/dist/src/drivers: driver.h driver_bsd.c src/external/bsd/wpa/dist/src/eap_common: eap_pwd_common.c eap_pwd_common.h src/external/bsd/wpa/dist/src/eap_peer: eap_pwd.c src/external/bsd/wpa/dist/src/eap_server: eap_server.c eap_server_pwd.c eap_server_tls_common.c src/external/bsd/wpa/dist/src/p2p: p2p.c src/external/bsd/wpa/dist/src/radius: radius_client.c src/external/bsd/wpa/dist/src/rsn_supp: tdls.c wpa.c wpa_ft.c wpa_i.h src/external/bsd/wpa/dist/src/utils: common.c common.h eloop.c os_unix.c src/external/bsd/wpa/dist/wpa_supplicant: Makefile README config.c ctrl_iface.c defconfig driver_i.h events.c main.c op_classes.c wnm_sta.c wpa_cli.c wpa_supplicant.c wpa_supplicant_i.h Removed Files: src/external/bsd/wpa/dist/src/crypto: .gitignore src/external/bsd/wpa/dist/src/drivers: .gitignore src/external/bsd/wpa/dist/src/radius: .gitignore src/external/bsd/wpa/dist/src/tls: .gitignore src/external/bsd/wpa/dist/src/utils: .gitignore src/external/bsd/wpa/dist/wpa_supplicant: .gitignore src/external/bsd/wpa/dist/wpa_supplicant/dbus: .gitignore dbus_old.c dbus_old.h dbus_old_handlers.c dbus_old_handlers.h dbus_old_handlers_wps.c fi.epitest.hostap.WPASupplicant.service.in src/external/bsd/wpa/dist/wpa_supplicant/doc/docbook: .gitignore src/external/bsd/wpa/dist/wpa_supplicant/examples: wpas-test.py src/external/bsd/wpa/dist/wpa_supplicant/wpa_gui-qt4: .gitignore src/external/bsd/wpa/dist/wpa_supplicant/wpa_gui-qt4/lang: .gitignore Log Message: Merge local changes from v2.7 -> v2.9 for wpa_supplicant and hostapd To generate a diff of this commit: cvs rdiff -u -r1.10 -r1.11 src/external/bsd/wpa/dist/hostapd/hostapd_cli.c cvs rdiff -u -r1.5 -r1.6 src/external/bsd/wpa/dist/hostapd/main.c cvs rdiff -u -r1.5 -r1.6 src/external/bsd/wpa/dist/src/ap/ap_drv_ops.c \ src/external/bsd/wpa/dist/src/ap/drv_callbacks.c cvs rdiff -u -r1.4 -r1.5 src/external/bsd/wpa/dist/src/ap/hostapd.c \ src/external/bsd/wpa/dist/src/ap/hostapd.h \ src/external/bsd/wpa/dist/src/ap/ieee802_11.c cvs rdiff -u -r1.3 -r1.4 src/external/bsd/wpa/dist/src/ap/wmm.c \ src/external/bsd/wpa/dist/src/ap/wpa_auth.h \ src/external/bsd/wpa/dist/src/ap/wpa_auth_ft.c \ src/external/bsd/wpa/dist/src/ap/wpa_auth_i.h cvs rdiff -u -r1.11 -r1.12 src/external/bsd/wpa/dist/src/ap/wpa_auth.c cvs rdiff -u -r1.9 -r1.10 src/external/bsd/wpa/dist/src/common/sae.c cvs rdiff -u -r1.4 -r1.5 src/external/bsd/wpa/dist/src/common/wpa_common.h cvs rdiff -u -r1.1.1.1 -r0 src/external/bsd/wpa/dist/src/crypto/.gitignore cvs rdiff -u -r1.4 -r1.5 \ src/external/bsd/wpa/dist/src/crypto/crypto_openssl.c cvs rdiff -u -r1.1.1.1 -r0 src/external/bsd/wpa/dist/src/drivers/.gitignore cvs rdiff -u -r1.4 -r1.5 src/external/bsd/wpa/dist/src/drivers/driver.h cvs rdiff -u -r1.38 -r1.39 src/external/bsd/wpa/dist/src/drivers/driver_bsd.c cvs rdiff -u -r1.5 -r1.6 \ src/external/bsd/wpa/dist/src/eap_common/eap_pwd_common.c cvs rdiff -u -r1.2 -r1.3 \ src/external/bsd/wpa/dist/src/eap_common/eap_pwd_common.h cvs rdiff -u -r1.8 -r1.9 src/external/bsd/wpa/dist/src/eap_peer/eap_pwd.c cvs rdiff -u -r1.4 -r1.5 \ src/external/bsd/wpa/dist/src/eap_server/eap_server.c cvs rdiff -u -r1.8 -r1.9 \ src/external/bsd/wpa/dist/src/eap_server/eap_server_pwd.c \ src/external/bsd/wpa/dist/src/eap_server/eap_server_tls_common.c cvs rdiff -u -r1.4 -r1.5 src/external/bsd/wpa/dist/src/p2p/p2p.c cvs rdiff -u -r1.1.1.1 -r0 src/external/bsd/wpa/dist/src/radius/.gitignore cvs rdiff -u -r1.2 -r1.3 src/external/bsd/wpa/dist/src/radius/radius_client.c cvs rdiff -u -r1.3 -r1.4 src/external/bsd/wpa/dist/src/rsn_supp/tdls.c \ src/external/bsd/wpa/dist/src/rsn_supp/wpa_ft.c \ src/external/bsd/wpa/dist/src/rsn_supp/wpa_i.h cvs rdiff -u -r1.4 -r1.5 src/external/bsd/wpa/dist/src/rsn_supp/wpa.c cvs rdiff -u -r1.1.1.1 -r0 src/external/bsd/wpa/dist/src/tls/.gitignore cvs rdiff -u -r1.1.1.1 -r0 src/external/bsd/wpa/dist/src/utils/.gitignore cvs rdiff -u -r1.5 -r1.6 src/external/bsd/wpa/dist/src/utils/common.c \ src/external/bsd/wpa/dist/src/utils/os_unix.c cvs rdiff -u -r1.6 -r1.7 src/external/bsd/wpa/dist/src/utils/common.h cvs rdiff -u -r1.13 -r1.14 src/external/bsd/wpa/dist/src/utils/eloop.c cvs rdiff -u -r1.1.1.2 -r0 \ src/external/bsd/wpa/dis
CVS commit: src/doc
Module Name:src Committed By: christos Date: Mon Mar 1 01:43:16 UTC 2021 Modified Files: src/doc: 3RDPARTY CHANGES Log Message: new wpa. To generate a diff of this commit: cvs rdiff -u -r1.1780 -r1.1781 src/doc/3RDPARTY cvs rdiff -u -r1.2782 -r1.2783 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/sys/arch/powerpc
Module Name:src Committed By: thorpej Date: Mon Mar 1 01:53:46 UTC 2021 Modified Files: src/sys/arch/powerpc/include/oea: pmap.h src/sys/arch/powerpc/oea: pmap.c Log Message: Split pmap_bootstrap() into 2 functions: - pmap_bootstrap1(), which sets up the low-level pmap data structures. - pmap_bootstrap2(), which actually programs the MMU hardware based on pmap_bootstrap1()'s work. pmap_bootstrap() is still provided as a wrapper around the two, but this provides flexibility to platforms that might need to do additional work between these two phases. To generate a diff of this commit: cvs rdiff -u -r1.32 -r1.33 src/sys/arch/powerpc/include/oea/pmap.h cvs rdiff -u -r1.98 -r1.99 src/sys/arch/powerpc/oea/pmap.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/wpa/bin/hostapd
Module Name:src Committed By: christos Date: Mon Mar 1 03:42:57 UTC 2021 Modified Files: src/external/bsd/wpa/bin/hostapd: Makefile Log Message: Enable more options. To generate a diff of this commit: cvs rdiff -u -r1.14 -r1.15 src/external/bsd/wpa/bin/hostapd/Makefile 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
Module Name:src Committed By: rin Date: Mon Mar 1 04:39:45 UTC 2021 Modified Files: src/sys/dev/i2c: dstemp.c Log Message: Use dstemp(4) as entropy source. To generate a diff of this commit: cvs rdiff -u -r1.11 -r1.12 src/sys/dev/i2c/dstemp.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
Module Name:src Committed By: rin Date: Mon Mar 1 04:40:39 UTC 2021 Modified Files: src/sys/dev/i2c: lm75.c Log Message: Use lmtemp(4) as entropy source. To generate a diff of this commit: cvs rdiff -u -r1.41 -r1.42 src/sys/dev/i2c/lm75.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/lib/libc/time
Module Name:src Committed By: christos Date: Mon Mar 1 04:42:14 UTC 2021 Modified Files: src/lib/libc/time: Makefile NEWS theory.html tz-art.html tz-link.html version zic.8 zic.c Log Message: Merge tzcode-2021a - No comments in the changelog about the code changes. To generate a diff of this commit: cvs rdiff -u -r1.47 -r1.48 src/lib/libc/time/Makefile cvs rdiff -u -r1.32 -r1.33 src/lib/libc/time/NEWS cvs rdiff -u -r1.10 -r1.11 src/lib/libc/time/theory.html cvs rdiff -u -r1.7 -r1.8 src/lib/libc/time/tz-art.html cvs rdiff -u -r1.8 -r1.9 src/lib/libc/time/tz-link.html cvs rdiff -u -r1.15 -r1.16 src/lib/libc/time/version cvs rdiff -u -r1.35 -r1.36 src/lib/libc/time/zic.8 cvs rdiff -u -r1.77 -r1.78 src/lib/libc/time/zic.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/doc
Module Name:src Committed By: christos Date: Mon Mar 1 04:43:55 UTC 2021 Modified Files: src/doc: 3RDPARTY CHANGES Log Message: new tzcode To generate a diff of this commit: cvs rdiff -u -r1.1781 -r1.1782 src/doc/3RDPARTY cvs rdiff -u -r1.2783 -r1.2784 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/sys/dev/pci
Module Name:src Committed By: knakahara Date: Mon Mar 1 04:49:11 UTC 2021 Modified Files: src/sys/dev/pci: if_wm.c Log Message: Remove extra unlock/lock processing around if_percpuq_enqueue(). This temporary unlock/lock processing was required for direct calling ifp->if_input. After r1.391, wm(4) uses if_percpuq_enqueue() and it does not hold any mutexes. To generate a diff of this commit: cvs rdiff -u -r1.699 -r1.700 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
Module Name:src Committed By: knakahara Date: Mon Mar 1 04:50:18 UTC 2021 Modified Files: src/sys/dev/pci: if_wm.c Log Message: Refactor rxq->rxq_ptr updating. To generate a diff of this commit: cvs rdiff -u -r1.700 -r1.701 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.