diff --git a/src/runtime/race.go b/src/runtime/race.go
index 6b7bbe52458b80f2693e879c6ad7088f10f91e40..fa781a3ccc04ca6e9f781a69184ae56cc3661b19 100644
--- a/src/runtime/race.go
+++ b/src/runtime/race.go
@@ -455,7 +455,6 @@ func raceinit() (gctx, pctx uintptr) {
 
 	racecall(&__tsan_init, uintptr(unsafe.Pointer(&gctx)), uintptr(unsafe.Pointer(&pctx)), abi.FuncPCABI0(racecallbackthunk), 0)
 
-	// Round data segment to page boundaries, because it's used in mmap().
 	start := ^uintptr(0)
 	end := uintptr(0)
 	if start > firstmoduledata.noptrdata {
@@ -482,10 +481,13 @@ func raceinit() (gctx, pctx uintptr) {
 	if end < firstmoduledata.ebss {
 		end = firstmoduledata.ebss
 	}
-	size := alignUp(end-start, _PageSize)
-	racecall(&__tsan_map_shadow, start, size, 0, 0)
+	// Use exact bounds for boundary check in racecalladdr. See issue 73483.
 	racedatastart = start
-	racedataend = start + size
+	racedataend = end
+	// Round data segment to page boundaries for race detector (TODO: still needed?)
+	start = alignDown(start, _PageSize)
+	end = alignUp(end, _PageSize)
+	racecall(&__tsan_map_shadow, start, end-start, 0, 0)
 
 	return
 }
diff --git a/src/runtime/race_arm64.s b/src/runtime/race_arm64.s
index c42a6c1377528ea621ed709b160ab26432552b9f..83dfdef2e50c0ca3af52f5e215e6a48aff85e375 100644
--- a/src/runtime/race_arm64.s
+++ b/src/runtime/race_arm64.s
@@ -163,7 +163,7 @@ data:
 	BLT	ret
 	MOVD	runtime·racedataend(SB), R10
 	CMP	R10, R1
-	BGT	ret
+	BGE	ret
 call:
 	JMP	racecall<>(SB)
 ret:
diff --git a/src/runtime/race_ppc64le.s b/src/runtime/race_ppc64le.s
index 43829479bde86841f889b673bfa1086a5e45ee22..d3cac03ff48d687db556b1666da4b71d60111819 100644
--- a/src/runtime/race_ppc64le.s
+++ b/src/runtime/race_ppc64le.s
@@ -153,7 +153,7 @@ data:
 	BLT	ret
 	MOVD	runtime·racedataend(SB), R9
 	CMP	R4, R9
-	BGT	ret
+	BGE	ret
 call:
 	// Careful!! racecall will save LR on its
 	// stack, which is OK as long as racecalladdr
diff --git a/test/fixedbugs/issue73483.go b/test/fixedbugs/issue73483.go
new file mode 100644
index 0000000000000000000000000000000000000000..8cd0c3433a9b3ab354a05e21bf5c85c4c3476e06
--- /dev/null
+++ b/test/fixedbugs/issue73483.go
@@ -0,0 +1,20 @@
+// run -race
+
+//go:build race && cgo
+
+// Copyright 2025 The Go Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style
+// license that can be found in the LICENSE file.
+
+package main
+
+/*
+   int v[8192];
+*/
+import "C"
+
+var x [8192]C.int
+
+func main() {
+	copy(C.v[:], x[:])
+}