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.
0df5a068 | alfredo | July 29, 2022, 8:13 a.m. | loader: fix powerpc64le ofw loader
This is similar to 5d48fb3b16c1496bf415fee620c61cc944b0326d. With LLVM14 the .data.rel.ro ELF section appears after .data, making loader behave erractly and kernel is not loaded. This patch makes ensures the correct order. Based on discussion at: https://github.com/llvm/llvm-project/issues/56306 MFC after: 1 day Sponsored by: Instituto de Pesquisas Eldorado (eldorado.org.br)cgit |
|
42736dc4 | alc | July 29, 2022, 5:11 a.m. | x86/iommu: Reduce DMAR lock contention
Replace the DMAR unit's tlb_flush TAILQ by a custom list implementation that enables dmar_qi_task() to dequeue entries without holding the DMAR lock. Reviewed by: kib MFC after: 1 week Differential Revision: https://reviews.freebsd.org/D35951cgit |
|
19225e2a | delphij | July 29, 2022, 5:03 a.m. | ObsoleteFiles: Fix paths for removed manual pages. | |
467d3e2e | bz | July 28, 2022, 11:39 p.m. | LinuxKPI 802.11/iwlwifi/rtw88: update KPI
Upgrade the argument of (*bss_info_changed) mac80211 ops function call from 32 to 64 bit. Add an extra argument to ieee80211_beacon_get_template(). Both changes are needed in order to keep other out-of-tree drivers in synch and to move forward. The driver changes were extracted from Linux wireless-testing 7b7090b4c6a906cc7c3e2a460335f705b93f4506 and 6e8912a503759bb8f1f01c5b761d0d45815fa6de. Sponsored by: The FreBSD Foundation MFC after: 1 weekcgit |
|
ea8f128c | jhb | July 28, 2022, 10:55 p.m. | pmap_mapdev: Consistently use vm_paddr_t for the first argument.
The devmap variants used vm_offset_t for some reason, and a few places explicitly cast bus addresses to vm_offset_t. (Probably those casts along with similar casts for vm_size_t should just be removed and instead permit the compiler to DTRT.) Reviewed by: markj Sponsored by: DARPA Differential Revision: https://reviews.freebsd.org/D35961cgit |
|
95795401 | imp | July 28, 2022, 9:35 p.m. | kboot: Make console raw when we start
Put the console into raw mode on startup. This allows the menus to work as expected. Boot is now interruptable. Note: Likely should restore the terminal settings on most exists. It's not clear the best way to do this, and most shells have an auto stty sane anyway, so note it for future improvement. Sponsored by: Netflixcgit |
|
96303778 | imp | July 28, 2022, 9:35 p.m. | kboot: implement stripped down termios
Implement a stripped down termios, obtained from various files in musl and HOST_ or host_ prepended to most things and a few unavoidable style tweaks. Only implements the bits of termios we need for the boot loader: put the terminal into raw mode, restore terminal settings and speed stuff. Sponsored by: Netflixcgit |
|
54e6e0de | imp | July 28, 2022, 9:35 p.m. | kboot: Implement host_ioctl
Sponsored by: Netflixcgit |
|
f56d7a73 | imp | July 28, 2022, 9:35 p.m. | kboot: Add host_exit and use it to implement exit()
Clients of libsa are expected to implement exit(). The current exit just loops forever. It is better to really exit: when running as init that will reboot the system. When not running as init, other programs can recover (not that we support running as init, but when we do in the future, this is still the rigtht thing). Sponsored by: Netflixcgit |
|
75cbdbc9 | imp | July 28, 2022, 9:35 p.m. | kboot: aarch64 support
Add support for aarch64. exec.c and ldscript are copied from the EFI version with #ifdefs for the differences. Once complete, I'll refactor them. host_syscall.S implements a generic system call. tramp.S is a first attempt to create a tramoline that we can use to jump to the aarch64 kernel. Add aarch64-specific startup and stat files as well. exec.c tweaked slightly to avoid bringing in bi_load(), which will come in later. Includes tweaks to stat due to name differences between names on different Linux architectures. Sponsored by: Netflixcgit |
|
a0c07522 | imp | July 28, 2022, 9:35 p.m. | kboot: Move conf.c up to top level
conf.c is the same now between powerpc64 and amd64, so move it up to kboot. Move powerpc file formats defines to ppc64_elf_freebsd.c Sponsored by: Netflixcgit |
|
13890d30 | kp | July 28, 2022, 8 p.m. | altq: improve pfctl config time for large numbers of queues
In the current implementation of altq_hfsc.c, whne new queues are being added (by pfctl), each queue is added to the tail of the siblings linked list under the parent queue. On a system with many queues (50,000+) this leads to very long load times at the insertion process must scan the entire list for every new queue, Since this list is unordered, this changes merely adds the new queue to the head of the list rather than the tail. Reviewed by: kp MFC after: 3 weeks Sponsored by: RG Nets Differential Revision: https://reviews.freebsd.org/D35964cgit |
|
c019a169 | hselasky | July 28, 2022, 7:28 p.m. | hidbus(4): Align refcount checks for hidbus_intr_start() and hidbus_intr_stop().
No functional change intended. Discussed with: wulf @ MFC after: 1 week Sponsored by: NVIDIA Networkingcgit |
|
828ea49d | markj | July 28, 2022, 6:33 p.m. | riscv: Avoid passing invalid addresses to pmap_fault()
After the addition of SV48 support, VIRT_IS_VALID() did not exclude addresses that are in the SV39 address space hole but not in the SV48 address space hole. This can result in mishandling of accesses to that range when in SV39 mode. Fix the problem by modifying VIRT_IS_VALID() to use the runtime address space bounds. Then, if the address is invalid, and pcb_onfault is set, give vm_fault_trap() a chance to veto the access instead of panicking. PR: 265439 Reviewed by: jhb Reported and tested by: Robert Morris <rtm@lcs.mit.edu> Fixes: 31218f3209ac ("riscv: Add support for enabling SV48 mode") MFC after: 1 week Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D35952cgit |
|
0c8ff61e | brooks | July 28, 2022, 5:55 p.m. | src.libnames.mk: NEED/WANT_COMPAT+static support
Look in _LIB_OBJTOP for all static libraries not just INTERNALLIBs. In normal operation this is a no-op, but improves the consistency of this file. Reviewed by: imp, jhb Obtained from: CheriBSD Differential Revision: https://reviews.freebsd.org/D35822cgit |