Skip to content

Commit 37ea518

Browse files
committed
docs/comments: keep prose hardware- and vendor-neutral
Drop incidental cloud-vendor and instance-type names from committed docs and a code comment; the technical content is unchanged (a generic-timer frequency ceiling raised to 2GHz to cover current server ARM cores; debugging/perf notes that describe the host generically).
1 parent b91f6a8 commit 37ea518

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

arch/aarch64/arm-clock.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ class arm_clock : public clock {
4343
arm_clock::arm_clock() {
4444
asm volatile ("mrs %0, cntfrq_el0; isb; " : "=r"(freq_hz) :: "memory");
4545
/* spec documents a typical range of 1-50 MHZ, but real cores run higher:
46-
* the ampere-1a runs at 1GHz and AWS Graviton3 (Neoverse-V1) passes a
47-
* 1.05GHz generic-timer frequency through to the guest, so the previous
46+
* some server ARM cores run at 1GHz and up (one Neoverse-V1 part passes a
47+
* 1.05GHz generic-timer frequency through to the guest), so the previous
4848
* 1GHz ceiling aborted the boot. Allow up to 2GHz to cover current server
4949
* ARM cores with headroom while still catching a garbage read. */
5050
if (freq_hz < 1 * MHZ || freq_hz > 2000 * MHZ) {

modules/open_zfs/FINDINGS-osv-openzfs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!-- Copyright (C) 2026 Greg Burd -->
22
# OpenZFS-on-OSv: debugging findings
33

4-
Hands-on debugging on EC2 m5d.metal, fedora:39 build container, KVM guests.
4+
Debugging notes from bringing OpenZFS up on OSv under KVM.
55

66
## Bug 1 - zpool export/import lfmutex owner assertion (FIXED)
77

modules/open_zfs/PERF-osv-openzfs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Both built from `pr/openzfs-draft` (1a298e1b), same commit, separate clones.
1515

1616
## Test bed
1717

18-
- Host: AWS `m5d.metal` (96 vCPU, 377 GiB RAM, local NVMe instance store).
18+
- Host: a 2-socket x86-64 bare-metal host (96 vCPU, ~377 GiB RAM) with local NVMe.
1919
- Guest: OSv `zfs_builder.elf` booted directly (`--nomount --noinit
2020
--preload-zfs-library /zfs-bench.so <wl>`), **8 GiB RAM, 4 vCPU, KVM**.
2121
- Backing:

0 commit comments

Comments
 (0)