security/p5-Auth-GoogleAuth: Add new port
Auth::GoogleAuth is a Perl module providing an abstraction for the TOTP
(Time-based One-Time Password) algorithm as used by Google Authenticator
and compatible applications (RFC 6238).
It supports generating and verifying TOTP codes, producing otpauth:// URIs,
and generating QR code URLs suitable for enrollment in authenticator apps.
PR: 295883
NAS-141013 / 26.0.0-RC.1 / Add a dedicated acme.log for certificate issuance (by sonicaj) (#19093)
This commit adds changes to register an 'acme' log file in the syslog-ng
logging setup so ACME certificate issuance diagnostics (order URIs,
identifiers, and phase transitions) land in their own /var/log/acme.log
instead of being mixed into the main middleware log.
Original PR: https://github.com/truenas/middleware/pull/19087
Co-authored-by: Waqar Ahmed <waqarahmedjoyia at live.com>
(textproc/R-xml2) Updated 1.3.6 to 1.5.2
# xml2 1.5.2
* Enable the myExternalEntityLoader also on libxml 2.14.4 for MacOS
# xml2 1.5.1
* Avoid shared libxml2 on MacOS because this reveals bugs in R.app (#471)
# xml2 1.5.0
* Experimental custom myExternalEntityLoader on libxml2 2.15 and up.
# xml2 1.4.1
* Remove a test that broke with libxml2 2.15
# xml2 1.4.0
[22 lines not shown]
[mlir][linalg] Add sin, cos, tan to elementwise operations (#200950)
Add sin, cos, and tan as UnaryFn entries in the linalg dialect, enabling
their use via linalg.elementwise, named ops (linalg.sin, linalg.cos,
linalg.tan), and specialization from linalg.generic.
---------
Co-authored-by: Vinit Deodhar <vinitdeodhar at users.noreply.github.com>
Co-authored-by: Claude Opus 4.6 <noreply at anthropic.com>
Co-authored-by: Vinit Deodhar <vdeodhar at ah-vdeodhar-l.dhcp.mathworks.com>
if_axge: remove AXGE_RX_MII_ERR from packet dropping criteria
Packets received with the following configuration are associated with
AXGE_RX_MII_ERR, which looks legit since there's no AXGE_RX_CRC_ERR
or AXGE_RX_DROP_PKT attached:
axge0: <ASIX Elec. Corp. AX88179, rev 2.10/1.00, addr 3> on usbus0
miibus0: <MII bus> on axge0
rgephy0: <RTL8169S/8110S/8211 1000BASE-T media interface> PHY 3 on miibus0
rgephy0: OUI 0x00e04c, model 0x0011, rev. 5
rgephy0: none, 10baseT, 10baseT-FDX, 10baseT-FDX-flow, 100baseTX, 100baseTX-FDX, 100baseTX-FDX-flow, 1000baseT-FDX, 1000baseT-FDX-master, 1000baseT-FDX-flow, 1000baseT-FDX-flow-master, auto, auto-flow
Without this, 'dhclient ue0' never gets valid lease as all the DHCP
replies are dropped by the driver.
This behaviour is align with the reference driver provided by the
vendor(ASIX_USB_NIC_Linux_Driver_Source_v3.5.0.tar.bz2).
MFC after: 2 weeks
Two fixes for RI codepoints. Firstly, do not combine more than two of
them - previously we were ending up with four codepoints in one cell
which tmux believed to be width 2, but terminals considered width 4.
Secondly, invalidate cursor position before redrawing the cell when the
second codepoint is received, terminals vary in how they manage
backspace and cursor movement across these characters, so it is better
to use absolute rather than relative positioning. GitHub issue 4853.
[AMDGPU] SIFoldOperands: update BUNDLE header implicit use when folding
When folding an operand inside a BUNDLE, also rewrite the matching
implicit use on the bundle header. LiveVariables iterates a
MachineBasicBlock with the bundle-aware iterator and only inspects the
header, so without this update its kill flags go stale and a later
MachineVerifier run reports "Using a killed virtual register".
Co-Authored-By: Claude Opus 4 <noreply at anthropic.com>
[AMDGPU][GISel] Add register bank legalization rules for amdgcn_raw_buffer_load_async_lds (#201406)
Also amdgcn_struct_buffer_load_async_lds,
amdgcn_raw_ptr_buffer_load_async_lds, and
amdgcn_struct_ptr_buffer_load_async_lds.
[clang][bytecode] Fix an assertion failure in visitDtorCall() (#202507)
In `emitDestructionPop()`, we assert that the Descriptor has a
non-trivial dtor. Check this first here so we don't do all this work for
nothing.
add 'lonesome' to DPB_PROPERTIES on i386 for llvm 22 in the hope
that it reduces or avoids out-of-memory running llvm-tblgen for
llvm/lib/Target/AMDGPU/AMDGPUGISel.td
[SLP] Update test against const-folding (#202532)
223ef1f3 ([IRBuilder] ConstFold unary intrinsics, #200496) made a lot of
test updates to SLPVectorizer. The tests were written a long time ago,
and it is unclear what their intent was, but at least update the one
test to replace constants with arguments, where the intent is clear.
[AMDGPU] Clamp load_monitor scope to minimum SCOPE_SE (#198245)
The load_monitor instructions monitor L2 cache lines and therefore
require at least SCOPE_SE to ensure the L2 cache is hit. The current
memory model requires the user to ensure that the specified scope is
such that it results in at least SCOPE_SE, otherwise the behaviour is
undefined. Instead, we now clamp the emitted scope at a minimum of
SCOPE_SE, so that the undefined behaviour is converted into a
performance loss instead.
Assisted-By: Claude Opus 4.6