Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: golang/sys
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.38.0
Choose a base ref
...
head repository: golang/sys
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.39.0
Choose a head ref
  • 4 commits
  • 26 files changed
  • 4 contributors

Commits on Nov 10, 2025

  1. unix: fix definition of Statvfs_t for netbsd-arm.

    This will fix the test failure on the netbsd-arm builder, but it is not
    quite a real fix.
    
    struct statvfs changed between NetBSD 9 and NetBSD 10, with notably the
    "spare" member switching from [4]uint32 to [4]uint64. In addition, there
    is a new member at the end with label information, if available. The
    netbsd-arm builder runs on NetBSD 10, so it runs into an issue
    casting the binary data into a Statvfs_t with the wrong padding.
    
    I don't know why the issue does not happen on arm64.
    
    It does not happen on 386 and amd64 because these builders are running
    NetBSD 9 still.
    
    The real fix would be to use the statvfs90 compat syscall on NetBSD 10
    and up, but not on 9 and below.
    
    Fixes golang/go#76097.
    
    Change-Id: I57ce6651d0ba05027a9fb29ee84c72a5225bcd67
    Reviewed-on: https://go-review.googlesource.com/c/sys/+/717100
    Run-TryBot: Benny Siegert <[email protected]>
    TryBot-Result: Gopher Robot <[email protected]>
    Reviewed-by: Michael Knyszek <[email protected]>
    Reviewed-by: Tobias Klauser <[email protected]>
    LUCI-TryBot-Result: Go LUCI <[email protected]>
    bsiegert committed Nov 10, 2025
    Configuration menu
    Copy the full SHA
    a4199c0 View commit details
    Browse the repository at this point in the history

Commits on Nov 12, 2025

  1. unix: add IOCTL_MEI_* constants

    Change-Id: I4efea3d97ae21ea81758e492cabc980b48e5d4c2
    Reviewed-on: https://go-review.googlesource.com/c/sys/+/718440
    Reviewed-by: Junyang Shao <[email protected]>
    Auto-Submit: Tobias Klauser <[email protected]>
    LUCI-TryBot-Result: Go LUCI <[email protected]>
    Reviewed-by: Michael Pratt <[email protected]>
    tklauser authored and gopherbot committed Nov 12, 2025
    Configuration menu
    Copy the full SHA
    ca63116 View commit details
    Browse the repository at this point in the history

Commits on Nov 24, 2025

  1. Revert "cpu: add HPDS, LOR, PAN detection for arm64"

    This reverts CL 704075.
    
    Reason for revert: Based on golang/go#76386, it doesn't seem to work correctly.
    
    Fixes golang/go#76386.
    
    Change-Id: I51ccbc8715c25c0d061d56dfbf0e8158f1207018
    Reviewed-on: https://go-review.googlesource.com/c/sys/+/724160
    LUCI-TryBot-Result: Go LUCI <[email protected]>
    Reviewed-by: Michael Knyszek <[email protected]>
    Auto-Submit: Cherry Mui <[email protected]>
    cherrymui authored and gopherbot committed Nov 24, 2025
    Configuration menu
    Copy the full SHA
    4f4f1c6 View commit details
    Browse the repository at this point in the history

Commits on Nov 25, 2025

  1. unix: fix out of bounds memory access in tests

    sockaddrIUCVToAny used the wrong size to for copying to RawSockaddrAny.
    We found this by running the test with ASAN.
    
    Change-Id: I2a2ec28f9bd55aeba4ddcb4243ad61ec010087df
    Reviewed-on: https://go-review.googlesource.com/c/sys/+/724280
    Reviewed-by: Michael Stapelberg <[email protected]>
    LUCI-TryBot-Result: Go LUCI <[email protected]>
    znkr authored and stapelberg committed Nov 25, 2025
    Configuration menu
    Copy the full SHA
    08e5482 View commit details
    Browse the repository at this point in the history
Loading