git: 998989431213 - stable/15 - vm: Remove a reference to an undefined memattr
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 06 Aug 2026 16:23:28 UTC
The branch stable/15 has been updated by markj:
URL: https://cgit.FreeBSD.org/src/commit/?id=998989431213c4d98cc3df87a3e0efe5378641e6
commit 998989431213c4d98cc3df87a3e0efe5378641e6
Author: Mark Johnston <markj@FreeBSD.org>
AuthorDate: 2026-08-06 16:22:11 +0000
Commit: Mark Johnston <markj@FreeBSD.org>
CommitDate: 2026-08-06 16:23:08 +0000
vm: Remove a reference to an undefined memattr
This is a direct commit to stable/15.
Reported by: jenkins
Fixes: c4ea6b08e24e ("vm_phys: Add a sysctl to dump registered fictitious memory ranges")
---
sys/arm64/include/vm.h | 2 --
1 file changed, 2 deletions(-)
diff --git a/sys/arm64/include/vm.h b/sys/arm64/include/vm.h
index c9cef5ba1f2e..fa5b0cb70f22 100644
--- a/sys/arm64/include/vm.h
+++ b/sys/arm64/include/vm.h
@@ -61,8 +61,6 @@ vm_memattr_name(vm_memattr_t memattr)
return ("write-through");
case VM_MEMATTR_DEVICE_nGnRE:
return ("device-nGnRE");
- case VM_MEMATTR_TAGGED:
- return ("tagged");
default:
return (NULL);
}