amdsmu: Cezanne support
Add support for Cezanne chips. The only real difference vs
Rembrandt/Phoenix is the idlemask register.
Also simplify getting IP block count by having this straight in struct
amdsmu_product and remove Strix Point from the list for now, as that
doesn't support S0ix and our driver can't handle that.
Reviewed by: mckusick
Approved by: mckusick
Sponsored by: The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D55594
archivers/appscript: New port: Very lightweight script to create self-extractable archives
appscript is a very lightweight script that compresses a directory
using tar(1), encodes the result with base64(1), and then creates
a sh(1) script that decompresses that result into a temporary
location (optionally using tmpfs(4)), and finally executes a script
named APPSCRIPT from the current working directory.
WWW: https://github.com/DtxdF/appscript
textproc/R-cran-rex: Update to 1.2.2
Remove build dependency because this port doesn't need compilation.
Update run and test dependencies.
Pet portlint.
Change WWW to canonical form.
Improve pkg-descr.
Changelog: https://cran.r-project.org/web/packages/rex/news/news.html
vmgenc.4: Add VM Generation ID Counter manual
Document the vmgenc(4) ACPI driver which detects virtual machine
cloning and snapshot restoration via the VM Generation ID
specification. The driver reseeds the kernel entropy pool when
a generation change is detected.
MFC after: 3 days
Reviewed by: cem (previous), ziaee
Signed-off-by: Christos Longros <chris.longros at gmail.com>
Differential Revision: https://reviews.freebsd.org/D56011
nfs_nfsdserv.c: Fix handling of archive flag for mkdir
An NFSv4.1/4.2 client can set/clear the archive, hidden
and system flags when creating non-regular files, such
as directories.
Without this patch, the setting of va_flags causes an
EPERM failure, since they are specified for VOP_MKDIR(),
VOP_MKNOD() and VOP_SYMLINK().
This patch sets va_flags == VNOVAL for the above VOP_xxx()
calls and then sets/clears the flags after creation,
which fixes the problem.
This bug only affects the Windows NFSv4.1/4.2 client.
PR: 293691
(cherry picked from commit 6580d040861dfbf6c630a93cbf41f2a2c7e7b327)