Skip to content

Commit 38ebf41

Browse files
committed
cpu: fix wrong cache line size of riscv64
This CL follows CL526659 as cache line should be 64 Bytes Change-Id: Id3a49dbfbfad6aeb439eb5e585fd2d6228a3d3ed Reviewed-on: https://go-review.googlesource.com/c/sys/+/526935 Reviewed-by: Heschi Kreinick <[email protected]> Reviewed-by: Tobias Klauser <[email protected]> LUCI-TryBot-Result: Go LUCI <[email protected]> Reviewed-by: Ian Lance Taylor <[email protected]>
1 parent fdc7ef4 commit 38ebf41

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: cpu/cpu_riscv64.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@
77

88
package cpu
99

10-
const cacheLineSize = 32
10+
const cacheLineSize = 64
1111

1212
func initOptions() {}

0 commit comments

Comments
 (0)