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: 7d69d98
Choose a base ref
...
head repository: golang/sys
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 673e0f9
Choose a head ref
  • 5 commits
  • 12 files changed
  • 4 contributors

Commits on May 6, 2024

  1. unix: add types for SOCK_DIAG

    Change-Id: Ifcc90735b6e42b6c9971d4ba15c31b8169e005fe
    Reviewed-on: https://go-review.googlesource.com/c/sys/+/579996
    Reviewed-by: Cherry Mui <cherryyz@google.com>
    Reviewed-by: Ian Lance Taylor <iant@google.com>
    Auto-Submit: Ian Lance Taylor <iant@google.com>
    Reviewed-by: Tobias Klauser <tobias.klauser@gmail.com>
    LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
    florianl authored and gopherbot committed May 6, 2024
    Configuration menu
    Copy the full SHA
    6dfb94e View commit details
    Browse the repository at this point in the history

Commits on May 9, 2024

  1. windows: add net user enum

    In the go windows package, you can get user information by using
    `NetUserGetInfo` along with a specified level. However, there is
    no way to get a list of the users.
    The only options are to
    1. know the users,
    2. brute force users, or
    3. use an external tool or command (`net users`).
    
    I suggest adding a function that implements the windows api for
    `NetUserEnum`. This will allow a built in way to enumerate
    users and follow the standard.
    
    A side note is that I used `buf **byte` because
    it is how the others are done, but using `buf *byte`
    works just as well.
    
    Change-Id: Ifcc916659eb1d796175cd18acd2e81f2661bfcd2
    GitHub-Last-Rev: 3d01bca
    GitHub-Pull-Request: #190
    Reviewed-on: https://go-review.googlesource.com/c/sys/+/578475
    Reviewed-by: Alex Brainman <alex.brainman@gmail.com>
    Auto-Submit: Cherry Mui <cherryyz@google.com>
    LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
    Reviewed-by: David Chase <drchase@google.com>
    Reviewed-by: Cherry Mui <cherryyz@google.com>
    JoeyShapiro authored and gopherbot committed May 9, 2024
    Configuration menu
    Copy the full SHA
    f34bb9f View commit details
    Browse the repository at this point in the history

Commits on May 13, 2024

  1. unix: update to Linux kernel 6.9

    Change-Id: Ib7bd9dabfcb8234c522ec357d32bfa3e87af53db
    GitHub-Last-Rev: 4bea205
    GitHub-Pull-Request: #194
    Reviewed-on: https://go-review.googlesource.com/c/sys/+/585135
    Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
    Auto-Submit: Ian Lance Taylor <iant@google.com>
    Reviewed-by: Tobias Klauser <tobias.klauser@gmail.com>
    Reviewed-by: Ian Lance Taylor <iant@google.com>
    Run-TryBot: Mauri de Souza Meneguzzo <mauri870@gmail.com>
    LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
    TryBot-Result: Gopher Robot <gobot@golang.org>
    mauri870 authored and gopherbot committed May 13, 2024
    Configuration menu
    Copy the full SHA
    92f3ad6 View commit details
    Browse the repository at this point in the history
  2. unix/linux: update glibc to 2.39

    Change-Id: I5c2b996180073ca10f1b7c86201a19eaf0557e43
    GitHub-Last-Rev: a092f56
    GitHub-Pull-Request: #195
    Reviewed-on: https://go-review.googlesource.com/c/sys/+/585136
    Reviewed-by: Ian Lance Taylor <iant@google.com>
    Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
    Auto-Submit: Dmitri Shuralyov <dmitshur@golang.org>
    LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
    mauri870 authored and gopherbot committed May 13, 2024
    Configuration menu
    Copy the full SHA
    6943ab6 View commit details
    Browse the repository at this point in the history

Commits on May 17, 2024

  1. unix: skip ethtool driver test for busy interface

    This CL skips IoctlGetEthtoolDrvinfo on busy interface tests since
    ethtool getting the same result too.
    
    Fixes golang/go#67350
    
    Change-Id: Ia65678e3caab8a9dd42b9cdb8e4cb7f7f0b476da
    Reviewed-on: https://go-review.googlesource.com/c/sys/+/586435
    Reviewed-by: Tobias Klauser <tobias.klauser@gmail.com>
    Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
    Reviewed-by: Cherry Mui <cherryyz@google.com>
    LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
    mengzhuo authored and tklauser committed May 17, 2024
    Configuration menu
    Copy the full SHA
    673e0f9 View commit details
    Browse the repository at this point in the history
Loading