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.
24e8823e | dim | July 27, 2022, 7:13 p.m. | Adjust function definition in isa's pnp.c to avoid clang 15 warning
With clang 15, the following -Werror warning is produced: sys/isa/pnp.c:118:24: error: a function declaration without a prototype is deprecated in all versions of C [-Werror,-Wstrict-prototypes] pnp_send_initiation_key() ^ void This is because pnp_send_initiation_key() is declared with a (void) argument list, but defined with an empty argument list. Make the definition match the declaration. MFC after: 3 dayscgit |
|
02a226ac | dim | July 27, 2022, 7:13 p.m. | Suppress possible unused variable warning for icl_soft.c
With clang 15, the following -Werror warning is produced on i386: sys/dev/iscsi//icl_soft.c:1277:6: error: variable 'i' set but not used [-Werror,-Wunused-but-set-variable] int i; ^ The 'i' variable is used later in the icl_soft_conn_pdu_get_bio() function, via the PHYS_TO_DMAP() macro. However, on i386 and some other architectures, this macro is defined to panic immediately, so in those cases, 'i' is indeed not used. Suppress the warning by marking 'i' as unused. MFC after: 3 dayscgit |
|
50526f52 | manu | July 27, 2022, 4:20 p.m. | bhyve: fix spelling mistake in passthru emulation
Reviewed by: jhb Differential Revision: https://reviews.freebsd.org/D35707 Sponsored by: Beckhoff Automation GmbH & Co. KGcgit |
|
56b8f5b1 | manu | July 27, 2022, 4:20 p.m. | bhyve: Initialize more registers in vcpu_reset()
- Clear CR2, EFER, and R8-15 to zero. - Reset DR6 and DR7 to their documented reset values. - Reset interrupt shadow state. - Document the reason CR0 is reset to a value that doesn't match its documented value. Reviewed by: jhb Differential Revision: https://reviews.freebsd.org/D35622 Sponsored by: Beckhoff Automation GmbH & Co. KGcgit |
|
4eadbef9 | manu | July 27, 2022, 4:20 p.m. | vmm: emulate INVD by ignoring it
On physical systems the ram isn't initialized on boot. So, coreboot uses the cache as ram in this boot phase. When exiting cache as ram, coreboot calls INVD for making the cache consistent. In a virtual environment ram is always initialized and the cache is always consistent. So, we can safely ignore this call. Reviewed by: jhb, imp Differential Revision: https://reviews.freebsd.org/D35620 Sponsored by: Beckhoff Automation GmbH & Co. KGcgit |
|
532d4fbf | sjg | July 27, 2022, 4 p.m. | Update to bmake-20220726
Merge commit '31a96ca5f0b6e5f8f7fa8cecf3a5c4354b3b096f'cgit |
|
31a96ca5 | sjg | July 27, 2022, 3:56 p.m. | Import bmake-20220726
Relevant/interesting changes: * Auto-create objdir for bmake/unit-tests if appropriatecgit |
|
da10709d | markj | July 27, 2022, 3:13 p.m. | RELNOTES: Fix whitespace | |
4cb0d41c | markj | July 27, 2022, 3:13 p.m. | RELNOTES: Add an entry for the new QAT driver
Sponsored by: The FreeBSD Foundationcgit |
|
78ee8d1c | markj | July 27, 2022, 3:12 p.m. | qat: Import a new Intel (R) QAT driver
QAT in-tree driver ported from out-of-tree release available from 01.org. The driver exposes complete cryptography and data compression API in the kernel and integrates with Open Crypto Framework. Details of supported operations, devices and usage can be found in man and on 01.org. Patch co-authored by: Krzysztof Zdziarski <krzysztofx.zdziarski@intel.com> Patch co-authored by: Michal Jaraczewski <michalx.jaraczewski@intel.com> Patch co-authored by: Michal Gulbicki <michalx.gulbicki@intel.com> Patch co-authored by: Julian Grajkowski <julianx.grajkowski@intel.com> Patch co-authored by: Piotr Kasierski <piotrx.kasierski@intel.com> Patch co-authored by: Adam Czupryna <adamx.czupryna@intel.com> Patch co-authored by: Konrad Zelazny <konradx.zelazny@intel.com> Patch co-authored by: Katarzyna Rucinska <katarzynax.kargol@intel.com> Patch co-authored by: Lukasz Kolodzinski <lukaszx.kolodzinski@intel.com> Patch co-authored by: Zbigniew Jedlinski <zbigniewx.jedlinski@intel.com> Reviewed by: markj, jhb (OCF integration) Reviewed by: debdrup, pauamma (docs) Sponsored by: Intel Corporation Differential Revision: https://reviews.freebsd.org/D34632cgit |
|
f4f56ff4 | markj | July 27, 2022, 3:10 p.m. | qat: Rename to qat_c2xxx and remove support for modern chipsets
A replacement QAT driver will be imported, but this replacement does not support Atom C2xxx hardware. So, the existing driver will be kept around to provide opencrypto offload support for those chipsets. Reviewed by: pauamma, emaste Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D35817cgit |
|
60cb4f9a | imp | July 27, 2022, 3:04 p.m. | stand: tftp.c doesn't need bootinfo.h
tftp.c includes bootinfo.h, but doesn't need it. Remove it, and remove the -Istand/common from CFALGS since that's the only reason we had it. Sponsored by: Netflix Reviewed by: tsoome Differential Revision: https://reviews.freebsd.org/D35928cgit |
|
e98f952c | imp | July 27, 2022, 3:04 p.m. | stand: Make sure nobody has a NULL pointer for dv_cleanup
dv_cleanup is specified almost everywhere. Use nullsys instead of NULL to indicate 'do nothing'. Also, be consistent in trailing commas that were missing before. Sponsored by: Netflix Reviewed by: tsoome Differential Revision: https://reviews.freebsd.org/D35913cgit |
|
079f02e8 | imp | July 27, 2022, 3:04 p.m. | stand: Small comment correction
While in theory, once upon a time, dv_type was arch specific, that's never been the case in FreeBSD (and certaintly isn't in the surviving drivers). Remove that notation. Sponsored by: Netflix Reviewed by: tsoome Differential Revision: https://reviews.freebsd.org/D35911cgit |
|
4932a6e4 | imp | July 27, 2022, 3:04 p.m. | stand: Create DEV_NAMLEN for the length of a device name
Rather than hard coding 8 for the device name length, create a #define for it. Sponsored by: Netflix Reviewed by: tsoome Differential Revision: https://reviews.freebsd.org/D35910cgit |