committer filter by committer.
@path/to/ filter by path in repository.
committer@path/to/ filter by committer AND path in repository.
abdef0123 filter by commit's SHA hash.
rNNN filter by SVN revision.
rNNN-rMMM filter by SVN revisions range (inclusive).
Multiple filters can be specified separated by spaces or comas in which case they'll be combined using OR operator.
1ffd352b | gbe | Aug. 6, 2022, 9:32 a.m. | bce(4): Fix two typos in kernel messages
- s/bufferred/buffered/ MFC after: 3 dayscgit |
|
e34667e4 | cy | Aug. 6, 2022, 8:59 a.m. | unbound: Update version to 1.16.2
Chase 790c6b245151 to update the version to 1.16.2. Reported by: "Herbert J. Skuhra" <herbert@gojira.at> MFC after: 3 days X-MFC with: 790c6b245151cgit |
|
4f158a44 | cy | Aug. 6, 2022, 1:53 a.m. | net80211: Remove tautological state display
When printing the current state name and the old state numeric value, both are always the same. Remove the redundant ostate. It is always the same as iv_state. Reviewed by: bz MFC after: 1 week Differential Revision: https://reviews.freebsd.org/D35849cgit |
|
790c6b24 | cy | Aug. 6, 2022, 1:44 a.m. | unbound: Vendor import 1.16.2
Security update to unbound. PR: 265645 Security: CVE-2022-30698, CVE-2022-30699 Security: bc43a578-14ec-11ed-856e-d4c9ef517024 MFC after: 3 days Merge commit '9b76d32f2310b735dbeb896cbf2776cad61f23e8' into maincgit |
|
220818ac | markj | Aug. 5, 2022, 8:26 p.m. | bpf: Fix BIOCPROMISC locking
BPF might put an interface in promiscuous mode when handling the BIOCSDLT ioctl. When this happens, a flag is set in the BPF descriptor so that the old interface can be restored when the BPF descriptor is destroyed. The BIOCPROMISC ioctl can also be used to put a BPF descriptor's interface into promiscuous mode, but there was nothing synchronizing the flag. Fix this by modifying the ioctl handler to acquire the global BPF mutex, which is used to synchronize ifpromisc() calls elsewhere in BPF. Reviewed by: kp, melifaro MFC after: 2 weeks Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D36045cgit |
|
e9552d8b | markj | Aug. 5, 2022, 8:21 p.m. | arm: Clear TTBCR before enabling the MMU
Upon reset, this register is supposed to have a value of zero. But when booting certain v7 CPUs in QEMU, we enter the kernel with several bits set, including the EAE bit, which enables ARM's PAE extension. I'm not sure if QEMU is setting it or if it's the uboot loader. Because FreeBSD doesn't implement that extension and uses regular 32-bit page tables, the kernel hangs immediately after enabling the MMU. Just clear everything in TTBCR before enabling the MMU, to match the reset value. FreeBSD doesn't toggle anything in that register. PR: 251187 Reviewed by: imp MFC after: 2 weeks Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D36041cgit |
|
52a54b96 | mav | Aug. 5, 2022, 5:48 p.m. | acpi_apei: Add sysctl to mute corrected errors.
Setting hw.acpi.apei.log_corrected to 0 will mute corrected errors logging. MFC after: 1 weekcgit |
|
ac64943c | mav | Aug. 5, 2022, 5:48 p.m. | mca: Add sysctl to mute corrected errors.
Setting hw.mca.log_corrected to 0 will mute corrected errors logging except ones marked as reaching Yellow threshold by hardware. MFC after: 1 weekcgit |
|
c39eecd8 | markj | Aug. 5, 2022, 5:43 p.m. | RELNOTES: Document ZFS support in makefs
Sponsored by: The FreeBSD Foundationcgit |
|
240afd8c | markj | Aug. 5, 2022, 5:42 p.m. | makefs: Add ZFS support
This allows one to take a staged directory tree and create a file consisting of a ZFS pool with one or more datasets that contain the contents of the directory tree. This is useful for creating virtual machine images without using the kernel to create a pool; "zpool create" requires root privileges and currently is not permitted in jails. makefs -t zfs also provides reproducible images by using a fixed seed for pseudo-random number generation, used for generating GUIDs and hash salts. makefs -t zfs requires relatively little by way of machine resources. The "zpool_reguid" rc.conf setting can be used to ask a FreeBSD guest to generate a unique pool GUID upon first boot. A small number of pool and dataset properties are supported. The pool is backed by a single disk vdev. Data is always checksummed using Fletcher-4, no redundant copies are made, and no compression is used. The manual page documents supported pool and filesystem properties. The implementation uses a few pieces of ZFS support from with the boot loader, especially definitions for various on-disk structures, but is otherwise standalone and in particular doesn't depend on OpenZFS. This feature should be treated as experimental for now, i.e., important data shouldn't be trusted to a makefs-created pool, and the command-line interface is subject to change. Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D35248cgit |
|
3e1101f2 | brd | Aug. 5, 2022, 3:10 p.m. | bsdinstall: allow setting the root password via env variables
Reviewed by: 0mp, allanjude, asiciliano, dteske, pauamma, rpokala, sef Sponsored by: Rubicon Communications, LLC ("Netgate") Differential Revision: https://reviews.freebsd.org/D35588cgit |
|
a69c0964 | mav | Aug. 5, 2022, 2:58 p.m. | nvme: Print CRD, M and DNR status bits on errors.
It may help with some issues debugging. MFC after: 1 weekcgit |
|
101480e9 | andrew | Aug. 5, 2022, 2:11 p.m. | Remove "All rights reserved" where I can in libc
These all have my copyright so can be removed. Some also have FreeBSD Foundation copyright so drop from there as has been done for previous files. Sponsored by: The FreeBSD Foundationcgit |
|
f0687f3e | emaste | Aug. 5, 2022, 2:01 p.m. | Clarify code comments on ASLR default settings
Sponsored by: The FreeBSD Foundationcgit |
|
dc3509f1 | emaste | Aug. 5, 2022, 2:30 a.m. | zlib: Fix a bug when getting a gzip header extra field with inflate().
If the extra field was larger than the space the user provided with inflateGetHeader(), and if multiple calls of inflate() delivered the extra header data, then there could be a buffer overflow of the provided space. This commit assures that provided space is not exceeded. (cherry picked from zlib commit eff308af425b67093bab25f80f1ae950166bece1)cgit |