data_type large_stringclasses 3
values | source large_stringclasses 29
values | code large_stringlengths 98 49.4M | filepath large_stringlengths 5 161 ⌀ | message large_stringclasses 234
values | commit large_stringclasses 234
values | subject large_stringclasses 418
values | critique large_stringlengths 101 1.26M ⌀ | metadata dict |
|---|---|---|---|---|---|---|---|---|
source | musl | #include <unistd.h>
#include <fcntl.h>
#include "syscall.h"
ssize_t readlink(const char *restrict path, char *restrict buf, size_t bufsize)
{
char dummy[1];
if (!bufsize) {
buf = dummy;
bufsize = 1;
}
#ifdef SYS_readlink
int r = __syscall(SYS_readlink, path, buf, bufsize);
#else
int r = __syscall(SYS_readlink... | src/unistd/readlink.c | null | null | null | null | null |
source | musl | #include <unistd.h>
#include "syscall.h"
ssize_t readlinkat(int fd, const char *restrict path, char *restrict buf, size_t bufsize)
{
char dummy[1];
if (!bufsize) {
buf = dummy;
bufsize = 1;
}
int r = __syscall(SYS_readlinkat, fd, path, buf, bufsize);
if (buf == dummy && r > 0) r = 0;
return __syscall_ret(r);... | src/unistd/readlinkat.c | null | null | null | null | null |
source | musl | #include <sys/uio.h>
#include "syscall.h"
ssize_t readv(int fd, const struct iovec *iov, int count)
{
return syscall_cp(SYS_readv, fd, iov, count);
} | src/unistd/readv.c | null | null | null | null | null |
source | musl | #include <stdio.h>
#include "syscall.h"
int renameat(int oldfd, const char *old, int newfd, const char *new)
{
#ifdef SYS_renameat
return syscall(SYS_renameat, oldfd, old, newfd, new);
#else
return syscall(SYS_renameat2, oldfd, old, newfd, new, 0);
#endif
} | src/unistd/renameat.c | null | null | null | null | null |
source | musl | #include <unistd.h>
#include <fcntl.h>
#include "syscall.h"
int rmdir(const char *path)
{
#ifdef SYS_rmdir
return syscall(SYS_rmdir, path);
#else
return syscall(SYS_unlinkat, AT_FDCWD, path, AT_REMOVEDIR);
#endif
} | src/unistd/rmdir.c | null | null | null | null | null |
source | musl | #include <unistd.h>
#include "libc.h"
#include "syscall.h"
int setegid(gid_t egid)
{
return __setxid(SYS_setresgid, -1, egid, -1);
} | src/unistd/setegid.c | null | null | null | null | null |
source | musl | #include <unistd.h>
#include "syscall.h"
#include "libc.h"
int seteuid(uid_t euid)
{
return __setxid(SYS_setresuid, -1, euid, -1);
} | src/unistd/seteuid.c | null | null | null | null | null |
source | musl | #include <unistd.h>
#include "syscall.h"
#include "libc.h"
int setgid(gid_t gid)
{
return __setxid(SYS_setgid, gid, 0, 0);
} | src/unistd/setgid.c | null | null | null | null | null |
source | musl | #include <unistd.h>
#include "syscall.h"
int setpgid(pid_t pid, pid_t pgid)
{
return syscall(SYS_setpgid, pid, pgid);
} | src/unistd/setpgid.c | null | null | null | null | null |
source | musl | #include <unistd.h>
#include "syscall.h"
#include "libc.h"
int setregid(gid_t rgid, gid_t egid)
{
return __setxid(SYS_setregid, rgid, egid, 0);
} | src/unistd/setregid.c | null | null | null | null | null |
source | musl | #define _GNU_SOURCE
#include <unistd.h>
#include "syscall.h"
#include "libc.h"
int setresgid(gid_t rgid, gid_t egid, gid_t sgid)
{
return __setxid(SYS_setresgid, rgid, egid, sgid);
} | src/unistd/setresgid.c | null | null | null | null | null |
source | musl | #define _GNU_SOURCE
#include <unistd.h>
#include "syscall.h"
#include "libc.h"
int setresuid(uid_t ruid, uid_t euid, uid_t suid)
{
return __setxid(SYS_setresuid, ruid, euid, suid);
} | src/unistd/setresuid.c | null | null | null | null | null |
source | musl | #include <unistd.h>
#include "syscall.h"
#include "libc.h"
int setreuid(uid_t ruid, uid_t euid)
{
return __setxid(SYS_setreuid, ruid, euid, 0);
} | src/unistd/setreuid.c | null | null | null | null | null |
source | musl | #include <unistd.h>
#include "syscall.h"
#include "libc.h"
int setuid(uid_t uid)
{
return __setxid(SYS_setuid, uid, 0, 0);
} | src/unistd/setuid.c | null | null | null | null | null |
source | musl | #include <unistd.h>
#include <signal.h>
#include "syscall.h"
#include "libc.h"
struct ctx {
int id, eid, sid;
int nr, ret;
};
static void do_setxid(void *p)
{
struct ctx *c = p;
if (c->ret<0) return;
int ret = __syscall(c->nr, c->id, c->eid, c->sid);
if (ret && !c->ret) {
/* If one thread fails to set ids aft... | src/unistd/setxid.c | null | null | null | null | null |
source | musl | #include <unistd.h>
#include <time.h>
unsigned sleep(unsigned seconds)
{
struct timespec tv = { .tv_sec = seconds, .tv_nsec = 0 };
if (nanosleep(&tv, &tv))
return tv.tv_sec;
return 0;
} | src/unistd/sleep.c | null | null | null | null | null |
source | musl | #include <unistd.h>
#include <fcntl.h>
#include "syscall.h"
int symlink(const char *existing, const char *new)
{
#ifdef SYS_symlink
return syscall(SYS_symlink, existing, new);
#else
return syscall(SYS_symlinkat, existing, AT_FDCWD, new);
#endif
} | src/unistd/symlink.c | null | null | null | null | null |
source | musl | #include <unistd.h>
#include "syscall.h"
int symlinkat(const char *existing, int fd, const char *new)
{
return syscall(SYS_symlinkat, existing, fd, new);
} | src/unistd/symlinkat.c | null | null | null | null | null |
source | musl | #include <unistd.h>
#include <termios.h>
#include <sys/ioctl.h>
pid_t tcgetpgrp(int fd)
{
int pgrp;
if (ioctl(fd, TIOCGPGRP, &pgrp) < 0)
return -1;
return pgrp;
} | src/unistd/tcgetpgrp.c | null | null | null | null | null |
source | musl | #include <unistd.h>
#include <termios.h>
#include <sys/ioctl.h>
int tcsetpgrp(int fd, pid_t pgrp)
{
int pgrp_int = pgrp;
return ioctl(fd, TIOCSPGRP, &pgrp_int);
} | src/unistd/tcsetpgrp.c | null | null | null | null | null |
source | musl | #include <unistd.h>
#include "syscall.h"
int truncate(const char *path, off_t length)
{
return syscall(SYS_truncate, path, __SYSCALL_LL_O(length));
} | src/unistd/truncate.c | null | null | null | null | null |
source | musl | #include <unistd.h>
#include <errno.h>
#include <limits.h>
char *ttyname(int fd)
{
static char buf[TTY_NAME_MAX];
int result;
if ((result = ttyname_r(fd, buf, sizeof buf))) {
errno = result;
return NULL;
}
return buf;
} | src/unistd/ttyname.c | null | null | null | null | null |
source | musl | #include <unistd.h>
#include <errno.h>
#include <sys/stat.h>
#include "syscall.h"
int ttyname_r(int fd, char *name, size_t size)
{
struct stat st1, st2;
char procname[sizeof "/proc/self/fd/" + 3*sizeof(int) + 2];
ssize_t l;
if (!isatty(fd)) return errno;
__procfdname(procname, fd);
l = readlink(procname, name,... | src/unistd/ttyname_r.c | null | null | null | null | null |
source | musl | #define _GNU_SOURCE
#include <unistd.h>
#include <sys/time.h>
unsigned ualarm(unsigned value, unsigned interval)
{
struct itimerval it = {
.it_interval.tv_usec = interval,
.it_value.tv_usec = value
}, it_old;
setitimer(ITIMER_REAL, &it, &it_old);
return it_old.it_value.tv_sec*1000000 + it_old.it_value.tv_usec;... | src/unistd/ualarm.c | null | null | null | null | null |
source | musl | #include <unistd.h>
#include <fcntl.h>
#include "syscall.h"
int unlink(const char *path)
{
#ifdef SYS_unlink
return syscall(SYS_unlink, path);
#else
return syscall(SYS_unlinkat, AT_FDCWD, path, 0);
#endif
} | src/unistd/unlink.c | null | null | null | null | null |
source | musl | #include <unistd.h>
#include "syscall.h"
int unlinkat(int fd, const char *path, int flag)
{
return syscall(SYS_unlinkat, fd, path, flag);
} | src/unistd/unlinkat.c | null | null | null | null | null |
source | musl | #define _GNU_SOURCE
#include <unistd.h>
#include <time.h>
int usleep(unsigned useconds)
{
struct timespec tv = {
.tv_sec = useconds/1000000,
.tv_nsec = (useconds%1000000)*1000
};
return nanosleep(&tv, &tv);
} | src/unistd/usleep.c | null | null | null | null | null |
source | musl | #include <unistd.h>
#include "syscall.h"
ssize_t write(int fd, const void *buf, size_t count)
{
return syscall_cp(SYS_write, fd, buf, count);
} | src/unistd/write.c | null | null | null | null | null |
source | musl | #include <sys/uio.h>
#include "syscall.h"
ssize_t writev(int fd, const struct iovec *iov, int count)
{
return syscall_cp(SYS_writev, fd, iov, count);
} | src/unistd/writev.c | null | null | null | null | null |
source | musl | .set noreorder
.global pipe
.type pipe,@function
pipe:
lui $gp, %hi(_gp_disp)
addiu $gp, %lo(_gp_disp)
addu $gp, $gp, $25
li $2, 4042
syscall
beq $7, $0, 1f
nop
lw $25, %call16(__syscall_ret)($gp)
jr $25
subu $4, $0, $2
1: sw $2, 0($4)
sw $3, 4($4)
move $2, $0
jr $ra
nop | src/unistd/mips/pipe.s | null | null | null | null | null |
source | musl | .set noreorder
.global pipe
.type pipe,@function
pipe:
lui $3, %hi(%neg(%gp_rel(pipe)))
daddiu $3, $3, %lo(%neg(%gp_rel(pipe)))
daddu $3, $3, $25
li $2, 5021
syscall
beq $7, $0, 1f
nop
ld $25, %got_disp(__syscall_ret)($3)
jr $25
dsubu $4, $0, $2
1: sw $2, 0($4)
sw $3, 4($4)
move $2, $0
jr $ra
nop | src/unistd/mips64/pipe.s | null | null | null | null | null |
source | musl | #include <unistd.h>
#include "syscall.h"
off_t __lseek(int fd, off_t offset, int whence)
{
register long long r4 __asm__("$4") = fd;
register long long r5 __asm__("$5") = offset;
register long long r6 __asm__("$6") = whence;
register long long r7 __asm__("$7");
register long long r2 __asm__("$2") = SYS_lseek;
__... | src/unistd/mipsn32/lseek.c | null | null | null | null | null |
source | musl | .set noreorder
.global pipe
.type pipe,@function
pipe:
lui $3, %hi(%neg(%gp_rel(pipe)))
addiu $3, $3, %lo(%neg(%gp_rel(pipe)))
addu $3, $3, $25
li $2, 6021
syscall
beq $7, $0, 1f
nop
lw $25, %got_disp(__syscall_ret)($3)
jr $25
subu $4, $0, $2
1: sw $2, 0($4)
sw $3, 4($4)
move $2, $0
jr $ra
nop | src/unistd/mipsn32/pipe.s | null | null | null | null | null |
source | musl | .global pipe
.type pipe, @function
pipe:
mov #42, r3
trapa #31
! work around hardware bug
or r0, r0
or r0, r0
or r0, r0
or r0, r0
or r0, r0
cmp/pz r0
bt 1f
mov.l L1, r1
braf r1
mov r0, r4
1: mov.l r0, @(0,r4)
mov.l r1, @(4,r4)
rts
mov #0, r0
.align 2
L1: .lo... | src/unistd/sh/pipe.s | null | null | null | null | null |
source | musl | #include <unistd.h>
#include "syscall.h"
off_t __lseek(int fd, off_t offset, int whence)
{
off_t ret;
__asm__ __volatile__ ("syscall"
: "=a"(ret)
: "a"(SYS_lseek), "D"(fd), "S"(offset), "d"(whence)
: "rcx", "r11", "memory");
return ret < 0 ? __syscall_ret(ret) : ret;
}
weak_alias(__lseek, lseek); | src/unistd/x32/lseek.c | null | null | null | null | null |
git_logdiff | linux | commit 8a5752c6dcc085a3bfc78589925182e4e98468c5
Author: Junrui Luo <moonafterrain@outlook.com>
Date: Tue Feb 24 19:05:56 2026 +0800
dpaa2-switch: validate num_ifs to prevent out-of-bounds write
The driver obtains sw_attr.num_ifs from firmware via dpsw_get_attributes()
but never validates it against ... | null | dpaa2-switch: validate num_ifs to prevent out-of-bounds write
The driver obtains sw_attr.num_ifs from firmware via dpsw_get_attributes()
but never validates it against DPSW_MAX_IF (64). This value controls
iteration in dpaa2_switch_fdb_get_flood_cfg(), which writes port indices
into the fixed-size cfg->if_id[DPSW_MAX_... | 8a5752c6dcc085a3bfc78589925182e4e98468c5 | null | null | null |
git_logdiff | linux | commit 7aa767d0d3d04e50ae94e770db7db8197f666970
Author: Jakub Kicinski <kuba@kernel.org>
Date: Mon Feb 23 15:51:00 2026 -0800
net: consume xmit errors of GSO frames
udpgro_frglist.sh and udpgro_bench.sh are the flakiest tests
currently in NIPA. They fail in the same exact way, TCP GRO
test stall... | null | net: consume xmit errors of GSO frames
udpgro_frglist.sh and udpgro_bench.sh are the flakiest tests
currently in NIPA. They fail in the same exact way, TCP GRO
test stalls occasionally and the test gets killed after 10min.
These tests use veth to simulate GRO. They attach a trivial
("return XDP_PASS;") XDP program to... | 7aa767d0d3d04e50ae94e770db7db8197f666970 | null | null | null |
git_logdiff | linux | commit 102eab95f025b4d3f3a6c0a858400aca2af2fe52
Author: Bobby Eshleman <bobbyeshleman@meta.com>
Date: Mon Feb 23 14:38:33 2026 -0800
vsock: lock down child_ns_mode as write-once
Two administrator processes may race when setting child_ns_mode as one
process sets child_ns_mode to "local" and then crea... | null | vsock: lock down child_ns_mode as write-once
Two administrator processes may race when setting child_ns_mode as one
process sets child_ns_mode to "local" and then creates a namespace, but
another process changes child_ns_mode to "global" between the write and
the namespace creation. The first process ends up with a na... | 102eab95f025b4d3f3a6c0a858400aca2af2fe52 | null | null | null |
git_logdiff | linux | commit a382a34276cb94d1cdc620b622dd85c55589a166
Author: Bobby Eshleman <bobbyeshleman@meta.com>
Date: Mon Feb 23 14:38:32 2026 -0800
selftests/vsock: change tests to respect write-once child ns mode
The child_ns_mode sysctl parameter becomes write-once in a future patch
in this series, which breaks ... | null | selftests/vsock: change tests to respect write-once child ns mode
The child_ns_mode sysctl parameter becomes write-once in a future patch
in this series, which breaks existing tests. This patch updates the
tests to respect this new policy. No additional tests are added.
Add "global-parent" and "local-parent" namespac... | a382a34276cb94d1cdc620b622dd85c55589a166 | null | null | null |
git_logdiff | linux | commit bd7b9f83fb9f85228c3ac9748d9cba9fab7fb5a2
Author: Shay Drory <shayd@nvidia.com>
Date: Tue Feb 24 13:46:49 2026 +0200
net/mlx5: LAG, disable MPESW in lag_disable_change()
mlx5_lag_disable_change() unconditionally called mlx5_disable_lag() when
LAG was active, which is incorrect for MLX5_LAG_MOD... | null | net/mlx5: LAG, disable MPESW in lag_disable_change()
mlx5_lag_disable_change() unconditionally called mlx5_disable_lag() when
LAG was active, which is incorrect for MLX5_LAG_MODE_MPESW.
Hnece, call mlx5_disable_mpesw() when running in MPESW mode.
Fixes: a32327a3a02c ("net/mlx5: Lag, Control MultiPort E-Switch single ... | bd7b9f83fb9f85228c3ac9748d9cba9fab7fb5a2 | null | null | null |
git_logdiff | linux | commit 2700b7e603af39ca55fe9fc876ca123efd44680f
Author: Shay Drory <shayd@nvidia.com>
Date: Tue Feb 24 13:46:48 2026 +0200
net/mlx5: DR, Fix circular locking dependency in dump
Fix a circular locking dependency between dbg_mutex and the domain
rx/tx mutexes that could lead to a deadlock.
Th... | null | net/mlx5: DR, Fix circular locking dependency in dump
Fix a circular locking dependency between dbg_mutex and the domain
rx/tx mutexes that could lead to a deadlock.
The dump path in dr_dump_domain_all() was acquiring locks in the order:
dbg_mutex -> rx.mutex -> tx.mutex
While the table/matcher creation paths acqu... | 2700b7e603af39ca55fe9fc876ca123efd44680f | null | null | null |
git_logdiff | linux | commit 58f8ef625e23a607f4a89758d6b328a2701f7354
Author: Ido Schimmel <idosch@nvidia.com>
Date: Tue Feb 24 14:57:09 2026 +0200
selftests: team: Add a reference count leak test
Add a test for the issue that was fixed in "team: avoid NETDEV_CHANGEMTU
event when unregistering slave".
The test h... | null | selftests: team: Add a reference count leak test
Add a test for the issue that was fixed in "team: avoid NETDEV_CHANGEMTU
event when unregistering slave".
The test hangs due to a reference count leak without the fix:
# make -C tools/testing/selftests TARGETS="drivers/net/team" TEST_PROGS=refleak.sh TEST_GEN_PROGS="... | 58f8ef625e23a607f4a89758d6b328a2701f7354 | null | null | null |
git_logdiff | linux | commit bb4c698633c0e19717586a6524a33196cff01a32
Author: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
Date: Tue Feb 24 14:57:08 2026 +0200
team: avoid NETDEV_CHANGEMTU event when unregistering slave
syzbot is reporting
unregister_netdevice: waiting for netdevsim0 to become free. Usage cou... | null | team: avoid NETDEV_CHANGEMTU event when unregistering slave
syzbot is reporting
unregister_netdevice: waiting for netdevsim0 to become free. Usage count = 3
ref_tracker: netdev@ffff88807dcf8618 has 1/2 users at
__netdev_tracker_alloc include/linux/netdevice.h:4400 [inline]
netdev_hold include/linux/... | bb4c698633c0e19717586a6524a33196cff01a32 | null | null | null |
git_logdiff | linux | commit f975a0955276579e2176a134366ed586071c7c6a
Author: Dipayaan Roy <dipayanroy@linux.microsoft.com>
Date: Tue Feb 24 04:38:36 2026 -0800
net: mana: Fix double destroy_workqueue on service rescan PCI path
While testing corner cases in the driver, a use-after-free crash
was found on the service resc... | null | net: mana: Fix double destroy_workqueue on service rescan PCI path
While testing corner cases in the driver, a use-after-free crash
was found on the service rescan PCI path.
When mana_serv_reset() calls mana_gd_suspend(), mana_gd_cleanup()
destroys gc->service_wq. If the subsequent mana_gd_resume() fails
with -ETIMED... | f975a0955276579e2176a134366ed586071c7c6a | null | null | null |
git_logdiff | linux | commit 676c7af91fcd740d34e7cb788cbc58e3bcafde39
Author: Felix Gu <ustc.gu@gmail.com>
Date: Tue Feb 24 19:04:04 2026 +0800
dpll: zl3073x: Remove redundant cleanup in devm_dpll_init()
The devm_add_action_or_reset() function already executes the cleanup
action on failure before returning an error, so t... | null | dpll: zl3073x: Remove redundant cleanup in devm_dpll_init()
The devm_add_action_or_reset() function already executes the cleanup
action on failure before returning an error, so the explicit goto error
and subsequent zl3073x_dev_dpll_fini() call causes double cleanup.
Fixes: ebb1031c5137 ("dpll: zl3073x: Refactor DPLL... | 676c7af91fcd740d34e7cb788cbc58e3bcafde39 | null | null | null |
git_logdiff | freebsd | commit 6bd97e9e01ff159eef49b2521fdbe67d5db10d95
Author: Michael Tuexen <tuexen@FreeBSD.org>
Date: Fri Feb 27 08:51:29 2026 +0100
sctp: fix NOINET build
Reported by: ngie
Fixes: 454212b9718b ("sctp: fix so_proto when peeling off a socket")
MFC after: 3 day... | null | sctp: fix NOINET build
Reported by: ngie
Fixes: 454212b9718b ("sctp: fix so_proto when peeling off a socket")
MFC after: 3 days | 6bd97e9e01ff159eef49b2521fdbe67d5db10d95 | null | null | null |
git_logdiff | freebsd | commit db16856110cbdbdfdc3c8d44edae1b3a7463198e
Author: Roger Pau Monné <royger@FreeBSD.org>
Date: Tue Feb 24 21:23:08 2026 +0100
xen/acpi: implement hook to notify Xen about entering sleep state
This is required so that ACPI power-off (entering S5) works as expected, as
the ACPI PM1a and PM1b block... | null | xen/acpi: implement hook to notify Xen about entering sleep state
This is required so that ACPI power-off (entering S5) works as expected, as
the ACPI PM1a and PM1b blocks might not be accessible by dom0 directly.
Additionally, Xen also needs to do cleanup before entering a sleep state,
so it needs to be notified abou... | db16856110cbdbdfdc3c8d44edae1b3a7463198e | null | null | null |
git_logdiff | freebsd | commit bd758ebac3272f720c051570e043e4bc653dcd48
Author: Enji Cooper <ngie@FreeBSD.org>
Date: Thu Feb 26 15:06:36 2026 -0800
divert: unbreak the LINT-NOIP build
Only expose `dcb` when either `INET` or `INET6` is defined.
Reported by: clang (`-Wunused`)
MFC after: 1 week
Fixes 554... | null | divert: unbreak the LINT-NOIP build
Only expose `dcb` when either `INET` or `INET6` is defined.
Reported by: clang (`-Wunused`)
MFC after: 1 week
Fixes 5547a7bb39 ("divert: Use a better source identifier...")
Differential Revision: https://reviews.freebsd.org/D55548 | bd758ebac3272f720c051570e043e4bc653dcd48 | null | null | null |
git_logdiff | freebsd | commit 784150fd25351f4a38f4d983882f4a26cc5d3272
Author: Warner Losh <imp@FreeBSD.org>
Date: Thu Feb 26 17:57:39 2026 -0700
stand/efi: Allow RELAXED or STRICT boot policies
The RELAXED boot policy will automatically search for any root
filesystem (currently zfs only) on any device. STRICT policy only... | null | stand/efi: Allow RELAXED or STRICT boot policies
The RELAXED boot policy will automatically search for any root
filesystem (currently zfs only) on any device. STRICT policy only
searches on the boot device. RELEAXED will still prefer the device we
booted from, which is the smallest behavior change we should do. STRICT... | 784150fd25351f4a38f4d983882f4a26cc5d3272 | null | null | null |
git_logdiff | freebsd | commit d69fc3a9dc71768e125e83d35274f0820063e42d
Author: Gleb Smirnoff <glebius@FreeBSD.org>
Date: Thu Feb 26 17:57:26 2026 -0700
loader.efi: try all ZFS pools found by efi_zfs_probe()
Remove global uint64_t pool_guid and instead iterate over all pools that
efizfs_get_zfsinfo_list() provides.
... | null | loader.efi: try all ZFS pools found by efi_zfs_probe()
Remove global uint64_t pool_guid and instead iterate over all pools that
efizfs_get_zfsinfo_list() provides.
The global pool_guid used to mark that we have constructed a ZFS pool and
the pool label that was used for that was stored on a partition that is
the EFI ... | d69fc3a9dc71768e125e83d35274f0820063e42d | null | null | null |
git_logdiff | freebsd | commit 5547a7bb39accd8f151b53e90b41d13b55f84c95
Author: Mark Johnston <markj@FreeBSD.org>
Date: Thu Feb 26 20:25:35 2026 +0000
divert: Use a better source identifier for netisr_queue_src() calls
These opaque IDs are used by netisr to distribute work among threads.
The mapping function is simply Sour... | null | divert: Use a better source identifier for netisr_queue_src() calls
These opaque IDs are used by netisr to distribute work among threads.
The mapping function is simply SourceID % numthreads, so using socket
addresses as source IDs isn't going to distribute packets well due to
alignment.
Use the divert socket's gener... | 5547a7bb39accd8f151b53e90b41d13b55f84c95 | null | null | null |
git_logdiff | freebsd | commit d971bc5220f7adb8a2bdfadc8e3ca7ffcf9ca843
Author: Ed Maste <emaste@FreeBSD.org>
Date: Mon Feb 23 16:23:49 2026 -0500
elf_common.h: Add AArch64 Memtag ABI constants
Obtained from the Memtag ABI Extension to ELF for the Arm® 64-bit
Architecture (AArch64) [1]
[1] https://github.com/ARM-s... | null | elf_common.h: Add AArch64 Memtag ABI constants
Obtained from the Memtag ABI Extension to ELF for the Arm® 64-bit
Architecture (AArch64) [1]
[1] https://github.com/ARM-software/abi-aa/blob/main/memtagabielf64/memtagabielf64.rst#dynamic-section
Reviewed by: andrew
Sponsored by: The FreeBSD Foundation
Differential Revi... | d971bc5220f7adb8a2bdfadc8e3ca7ffcf9ca843 | null | null | null |
git_logdiff | freebsd | commit 8230cf1aa18d9215ee17fec743fc7c7c8fa2da13
Author: Pouria Mousavizadeh Tehrani <pouria@FreeBSD.org>
Date: Sun Feb 22 22:11:31 2026 +0330
route(8): Fix -expire argument when using netlink
Also fixes nexthop expire value on route get using netlink.
Reviewed by: glebius
MFC after: 3 weeks... | null | route(8): Fix -expire argument when using netlink
Also fixes nexthop expire value on route get using netlink.
Reviewed by: glebius
MFC after: 3 weeks
Differential Revision: https://reviews.freebsd.org/D55444 | 8230cf1aa18d9215ee17fec743fc7c7c8fa2da13 | null | null | null |
git_logdiff | freebsd | commit 2f7cfeebcc4356d3bb85e953900ba5d3f75831ff
Author: Pouria Mousavizadeh Tehrani <pouria@FreeBSD.org>
Date: Sun Feb 22 20:05:23 2026 +0330
netstat(1): Fix expire column in -r flag using netlink
Reviewed by: glebius
MFC after: 3 weeks
Differential Revision: https://reviews.freebsd.org/D55440
... | null | netstat(1): Fix expire column in -r flag using netlink
Reviewed by: glebius
MFC after: 3 weeks
Differential Revision: https://reviews.freebsd.org/D55440 | 2f7cfeebcc4356d3bb85e953900ba5d3f75831ff | null | null | null |
git_logdiff | freebsd | commit ff6d1faa65a1a77d04746b43023feb457cfa27b8
Author: Pouria Mousavizadeh Tehrani <pouria@FreeBSD.org>
Date: Sun Feb 22 21:16:12 2026 +0330
rtnetlink: Add support for nexthop expiration in new/get route
Before this change, netlink only shows nexthop
expire value if route is not multipath.
Now ... | null | rtnetlink: Add support for nexthop expiration in new/get route
Before this change, netlink only shows nexthop
expire value if route is not multipath.
Now it can set expire time during route creation.
Also, show expire time of multipath nexthops.
Reviewed by: glebius
MFC after: 3 weeks
Differential Revision: https://r... | ff6d1faa65a1a77d04746b43023feb457cfa27b8 | null | null | null |
git_logdiff | freebsd | commit db5344a7445f1a796bc3cacd32a46e88e3e589a7
Author: Enji Cooper <ngie@FreeBSD.org>
Date: Wed Feb 25 18:29:49 2026 -0800
lib/libnetbsd: bring in `__type_m{ax,in}*` macro family
These macros are used by some of the NetBSD tests which calculate the
size of types, e.g., `__type_max(time_t)`.
... | null | lib/libnetbsd: bring in `__type_m{ax,in}*` macro family
These macros are used by some of the NetBSD tests which calculate the
size of types, e.g., `__type_max(time_t)`.
This wraps up the set of macros needed in order to update to the a
netbsd-tests snapshot from this past month.
Obtained from: https://github.com/net... | db5344a7445f1a796bc3cacd32a46e88e3e589a7 | null | null | null |
git_logdiff | openbsd | commit a71fb9b1fafb3ab1651a374735d471a1e3698897
Author: ratchov <ratchov@openbsd.org>
Date: Fri Feb 27 08:33:43 2026 +0000
sndiod: Fix ctl_match() when arg0 == NULL
No behavior change as sndiod doesn't call ctl_match() with
arg0 == NULL (yet).
diff --git a/usr.bin/sndiod/dev.c b/usr.bin/sndiod/dev.... | null | sndiod: Fix ctl_match() when arg0 == NULL
No behavior change as sndiod doesn't call ctl_match() with
arg0 == NULL (yet). | a71fb9b1fafb3ab1651a374735d471a1e3698897 | null | null | null |
git_logdiff | openbsd | commit b7ac352e7af84911ab7e69b2304e8b78a8067540
Author: ratchov <ratchov@openbsd.org>
Date: Fri Feb 27 08:31:01 2026 +0000
sndiod: Log unknown network messages to ease debugging the protocol
diff --git a/usr.bin/sndiod/sock.c b/usr.bin/sndiod/sock.c
index 7428b484a..c72cc5632 100644
--- a/usr.bin/sndiod/sock.c
... | null | sndiod: Log unknown network messages to ease debugging the protocol | b7ac352e7af84911ab7e69b2304e8b78a8067540 | null | null | null |
git_logdiff | openbsd | commit ee00521c1f6f7b1d406b612f913506f576099af7
Author: ratchov <ratchov@openbsd.org>
Date: Fri Feb 27 08:26:16 2026 +0000
Minor spacing tweak
diff --git a/lib/libsndio/aucat.c b/lib/libsndio/aucat.c
index 1e48786e7..39f47ba83 100644
--- a/lib/libsndio/aucat.c
+++ b/lib/libsndio/aucat.c
@@ -1,4 +1,4 @@
-/* $Ope... | null | Minor spacing tweak | ee00521c1f6f7b1d406b612f913506f576099af7 | null | null | null |
git_logdiff | openbsd | commit 2d3fb82734a4d3699387dc3813f270e6ae80a35d
Author: nicm <nicm@openbsd.org>
Date: Fri Feb 27 08:25:12 2026 +0000
Validate -O flags, from Dane Jensen in GitHub issue 4889.
diff --git a/usr.bin/tmux/cmd-choose-tree.c b/usr.bin/tmux/cmd-choose-tree.c
index dfd5c8add..f46ce823d 100644
--- a/usr.bin/tmux/cmd-cho... | null | Validate -O flags, from Dane Jensen in GitHub issue 4889. | 2d3fb82734a4d3699387dc3813f270e6ae80a35d | null | null | null |
git_logdiff | openbsd | commit 20326eefdaf7bacb1f604ad0f6fb3447685352c5
Author: bluhm <bluhm@openbsd.org>
Date: Thu Feb 26 23:38:10 2026 +0000
ix(4) and ixv(4) can handle 64 bit DMA transfers.
prodded by Brad Smith; tested by Hrvoje Popovski; OK kettenis@
diff --git a/sys/dev/pci/if_ix.c b/sys/dev/pci/if_ix.c
index c02f259cc.... | null | ix(4) and ixv(4) can handle 64 bit DMA transfers.
prodded by Brad Smith; tested by Hrvoje Popovski; OK kettenis@ | 20326eefdaf7bacb1f604ad0f6fb3447685352c5 | null | null | null |
git_logdiff | openbsd | commit 07723711acf069cb3029b0d95cc9d338d1dd5039
Author: kettenis <kettenis@openbsd.org>
Date: Thu Feb 26 20:36:27 2026 +0000
Reserve the first MB of the DVA address space because qwx(4) doesn't
succeed in doing DMA when the DVA is 0x1000 and PCI-PCI bridges may not
forward address in part of that first M... | null | Reserve the first MB of the DVA address space because qwx(4) doesn't
succeed in doing DMA when the DVA is 0x1000 and PCI-PCI bridges may not
forward address in part of that first MB as well.
ok chris@ | 07723711acf069cb3029b0d95cc9d338d1dd5039 | null | null | null |
git_logdiff | openbsd | commit 9ee2644e0e6156f38dfc289fe17d922ae5497b32
Author: claudio <claudio@openbsd.org>
Date: Thu Feb 26 19:49:41 2026 +0000
Error out on presence of Content-Length and Transfer-Encoding headers
for GET, HEAD and other methods that should have no body.
Ignoring the Content-Length header makes httpd v... | null | Error out on presence of Content-Length and Transfer-Encoding headers
for GET, HEAD and other methods that should have no body.
Ignoring the Content-Length header makes httpd vulnerable to
HTTP request smuggling. A crafted GET request may embed an extra
HTTP request which could bypass a proxy or WAF but then is handl... | 9ee2644e0e6156f38dfc289fe17d922ae5497b32 | null | null | null |
git_logdiff | openbsd | commit 866082782abc873beb1bbb02a07e306d5c0e16e2
Author: brynet <brynet@openbsd.org>
Date: Thu Feb 26 18:57:35 2026 +0000
Fix checking of of RL_FLAG_PCIE and accidental clobbering of sc->rl_flags
confirmed by sthen and kettenis@ "please apply that fix"
diff --git a/sys/dev/ic/re.c b/sys/dev/ic/re.c
inde... | null | Fix checking of of RL_FLAG_PCIE and accidental clobbering of sc->rl_flags
confirmed by sthen and kettenis@ "please apply that fix" | 866082782abc873beb1bbb02a07e306d5c0e16e2 | null | null | null |
git_logdiff | openbsd | commit da8c54306e151c62b373d382a8b41033082802cf
Author: cludwig <cludwig@openbsd.org>
Date: Thu Feb 26 14:05:25 2026 +0000
regress/mmap: Test hints in VM-area edge cases
Test mmap(2) with hint above VM_MAXUSER_ADDRESS without MAP_FIXED.
This tests uvm_map.c,v 1.355.
Also test the lower boun... | null | regress/mmap: Test hints in VM-area edge cases
Test mmap(2) with hint above VM_MAXUSER_ADDRESS without MAP_FIXED.
This tests uvm_map.c,v 1.355.
Also test the lower boundary below PAGE_SIZE.
ok kettenis@ | da8c54306e151c62b373d382a8b41033082802cf | null | null | null |
git_logdiff | openbsd | commit a7ce9c19f1680a974f2edbb30c1b8534fa0fa595
Author: mvs <mvs@openbsd.org>
Date: Thu Feb 26 09:45:39 2026 +0000
Enable 64-bit DMA transfers on the PCIe variants of re(4) cards.
ok kettenis
diff --git a/sys/dev/ic/re.c b/sys/dev/ic/re.c
index 0168cc908..48008a23d 100644
--- a/sys/dev/ic/re.c
+++ b/sy... | null | Enable 64-bit DMA transfers on the PCIe variants of re(4) cards.
ok kettenis | a7ce9c19f1680a974f2edbb30c1b8534fa0fa595 | null | null | null |
git_logdiff | openbsd | commit c883e836f48a8ca9ee3be9de6ebf4b36751f2196
Author: deraadt <deraadt@openbsd.org>
Date: Thu Feb 26 07:42:25 2026 +0000
pledge "tmppath" goes away because it sucks. The history is kind of
sad: unveil(2) was invented by Bob Beck and myself because a couple
of us struggled and couldn't expand the "tmp... | null | pledge "tmppath" goes away because it sucks. The history is kind of
sad: unveil(2) was invented by Bob Beck and myself because a couple
of us struggled and couldn't expand the "tmppath" mechanism to general use.
unveil(2) ended up being kind of "upside down" different, and so we never
deleted "tmppath" because the re... | c883e836f48a8ca9ee3be9de6ebf4b36751f2196 | null | null | null |
git_logdiff | openbsd | commit 7936914265c0962f326f1abe01cfae90024ce5e5
Author: florian <florian@openbsd.org>
Date: Thu Feb 26 07:17:50 2026 +0000
Update various lifetimes.
This raises the router, dns and nat64 lifetimes from 30 minutes to 60
minutes and lowers the prefix valid lifetime from 90 minutes to 60
minutes.
... | null | Update various lifetimes.
This raises the router, dns and nat64 lifetimes from 30 minutes to 60
minutes and lowers the prefix valid lifetime from 90 minutes to 60
minutes.
This brings us in line with the values of draft-ietf-6man-slaac-renum
which is going to be published soon.
Aligning all these lifetimes to a sing... | 7936914265c0962f326f1abe01cfae90024ce5e5 | null | null | null |
git_logdiff | openbsd | commit be383d541662e1514d730474e2bcef64e9e98032
Author: bluhm <bluhm@openbsd.org>
Date: Thu Feb 26 00:53:18 2026 +0000
Call igmp_sendpkt() and mld6_sendpkt() with pktinfo argument.
Gather all information needed to send an IGMP or MLD6 packet in a
struct pktinfo. This allows splitting access to mult... | null | Call igmp_sendpkt() and mld6_sendpkt() with pktinfo argument.
Gather all information needed to send an IGMP or MLD6 packet in a
struct pktinfo. This allows splitting access to multicast data
structures from sending packets. Then adding locks to multicast
will be easier.
OK mvs@ | be383d541662e1514d730474e2bcef64e9e98032 | null | null | null |
git_logdiff | openbsd | commit ee91ea516f9b7fdcde0bdcd097d2ea9e0dbd5eda
Author: bluhm <bluhm@openbsd.org>
Date: Wed Feb 25 23:40:49 2026 +0000
ixl(4) can handle 64 bit DMA transfers.
OK kettenis@ jmatthew@
diff --git a/sys/dev/pci/if_ixl.c b/sys/dev/pci/if_ixl.c
index dd920a61d..4efe0b70f 100644
--- a/sys/dev/pci/if_ixl.c
+++... | null | ixl(4) can handle 64 bit DMA transfers.
OK kettenis@ jmatthew@ | ee91ea516f9b7fdcde0bdcd097d2ea9e0dbd5eda | null | null | null |
git_logdiff | openbsd | commit d2b25f5d22f25f55c67336d11899675cb1deeadf
Author: jcs <jcs@openbsd.org>
Date: Wed Feb 25 21:57:43 2026 +0000
add -e to process escape sequences and support for multiple groups
of dash args like ksh's echo does
ok deraadt millert
diff --git a/bin/echo/echo.c b/bin/echo/echo.c
index 52da05c05..... | null | add -e to process escape sequences and support for multiple groups
of dash args like ksh's echo does
ok deraadt millert | d2b25f5d22f25f55c67336d11899675cb1deeadf | null | null | null |
git_logdiff | netbsd | commit 55b4b4452778bac2fa447e2a64418e59a82aee30
Author: jmcneill <jmcneill@NetBSD.org>
Date: Wed Feb 25 11:57:46 2026 +0000
mpc85xx: provide mem_regions() for the dump code
diff --git a/sys/arch/evbppc/mpc85xx/machdep.c b/sys/arch/evbppc/mpc85xx/machdep.c
index a15570aeb..24ccb7fed 100644
--- a/sys/arch/evbppc/... | null | mpc85xx: provide mem_regions() for the dump code | 55b4b4452778bac2fa447e2a64418e59a82aee30 | null | null | null |
git_logdiff | netbsd | commit 73f230e4d641df887aeff35f81705bbd35045a49
Author: skrll <skrll@NetBSD.org>
Date: Wed Feb 25 05:34:42 2026 +0000
PR/59419: KGDB build fails for evbarm
Fix compilation of db_interface.c when KGDB is defined, but DDB is not.
diff --git a/sys/arch/arm/arm32/db_interface.c b/sys/arch/arm/arm32/db_inte... | null | PR/59419: KGDB build fails for evbarm
Fix compilation of db_interface.c when KGDB is defined, but DDB is not. | 73f230e4d641df887aeff35f81705bbd35045a49 | null | null | null |
git_logdiff | netbsd | commit e6fbaee94acf07b6c21e567d777c6be371bca1cc
Author: skrll <skrll@NetBSD.org>
Date: Wed Feb 25 05:28:35 2026 +0000
KNF
diff --git a/sys/arch/arm/arm32/arm32_machdep.c b/sys/arch/arm/arm32/arm32_machdep.c
index daa127458..0718d1e02 100644
--- a/sys/arch/arm/arm32/arm32_machdep.c
+++ b/sys/arch/arm/arm32/arm32... | null | KNF | e6fbaee94acf07b6c21e567d777c6be371bca1cc | null | null | null |
git_logdiff | netbsd | commit d585d140463a19095d7b25f93f5879b66c236ada
Author: gutteridge <gutteridge@NetBSD.org>
Date: Wed Feb 25 01:34:13 2026 +0000
if_ure.c: make hardware capabilities test work as intended
As originally coded, the test intended to not set certain checksum
offload capabilities for the oldest RTL8152 ch... | null | if_ure.c: make hardware capabilities test work as intended
As originally coded, the test intended to not set certain checksum
offload capabilities for the oldest RTL8152 chip revision couldn't
actually take effect. (The Realtek 4C00 device is an 8152 chipset,
thus URE_FLAG_8152 is also set, and the bitwise complement ... | d585d140463a19095d7b25f93f5879b66c236ada | null | null | null |
git_logdiff | netbsd | commit 3306336854ba463261459ed4e429830eb6a0db60
Author: jmcneill <jmcneill@NetBSD.org>
Date: Tue Feb 24 21:54:38 2026 +0000
macppc: Have dumpsys() call oea_dumpsys()
oea_dumpsys() recently grew support for writing crash dumps, so let's
call this directly. Hopefully fixes PR 11854.
diff --git a/sys/... | null | macppc: Have dumpsys() call oea_dumpsys()
oea_dumpsys() recently grew support for writing crash dumps, so let's
call this directly. Hopefully fixes PR 11854. | 3306336854ba463261459ed4e429830eb6a0db60 | null | null | null |
git_logdiff | netbsd | commit 51650bf280dd2c79089bf1afbdea30bc8edb51cc
Author: jmcneill <jmcneill@NetBSD.org>
Date: Tue Feb 24 21:44:00 2026 +0000
powerpc: Add OEA crash dump support.
Currently restricted to what I can test, so no OEA64 / OEA64_BRIDGE.
diff --git a/sys/arch/powerpc/include/cpu.h b/sys/arch/powerpc/include/cp... | null | powerpc: Add OEA crash dump support.
Currently restricted to what I can test, so no OEA64 / OEA64_BRIDGE. | 51650bf280dd2c79089bf1afbdea30bc8edb51cc | null | null | null |
git_logdiff | netbsd | commit 08cc4dc25e7cb7347d7230b9df69c881d34fb579
Author: jmcneill <jmcneill@NetBSD.org>
Date: Tue Feb 24 21:41:59 2026 +0000
nintendo: Make cpu_reboot look more like the x86 one
diff --git a/sys/arch/evbppc/nintendo/machdep.c b/sys/arch/evbppc/nintendo/machdep.c
index 48a8ca701..162ff2d42 100644
--- a/sys/arch/e... | null | nintendo: Make cpu_reboot look more like the x86 one | 08cc4dc25e7cb7347d7230b9df69c881d34fb579 | null | null | null |
git_logdiff | netbsd | commit ff5d01c05d53c181e3a4b00e25844f49dac60440
Author: jmcneill <jmcneill@NetBSD.org>
Date: Tue Feb 24 21:41:02 2026 +0000
wiiu: Don't try to service AHCI port interrupts when panic'd
diff --git a/sys/arch/evbppc/nintendo/dev/ahcisata_ahb.c b/sys/arch/evbppc/nintendo/dev/ahcisata_ahb.c
index 81db67ae9..7c78ac6... | null | wiiu: Don't try to service AHCI port interrupts when panic'd | ff5d01c05d53c181e3a4b00e25844f49dac60440 | null | null | null |
git_logdiff | netbsd | commit 2986a0faeb3452c64b18da7cf7c6d6ee6ca41da4
Author: jmcneill <jmcneill@NetBSD.org>
Date: Tue Feb 24 21:38:00 2026 +0000
libkvm: Add IBM Espresso support
diff --git a/lib/libkvm/kvm_powerpc.c b/lib/libkvm/kvm_powerpc.c
index b72374ac8..0c2e44f29 100644
--- a/lib/libkvm/kvm_powerpc.c
+++ b/lib/libkvm/kvm_powe... | null | libkvm: Add IBM Espresso support | 2986a0faeb3452c64b18da7cf7c6d6ee6ca41da4 | null | null | null |
git_logdiff | netbsd | commit 67e29cd46cdce663eb69f89b3b438201e9412f79
Author: roy <roy@NetBSD.org>
Date: Tue Feb 24 16:02:05 2026 +0000
PPP: drop SPPP lock before calling rt_ifmsg
rt_ifmsg will lock SPPP itself, so ensure it's unlocked before calling.
Add a comment to explain why this should be safe.
Thanks to @... | null | PPP: drop SPPP lock before calling rt_ifmsg
rt_ifmsg will lock SPPP itself, so ensure it's unlocked before calling.
Add a comment to explain why this should be safe.
Thanks to @riastradh for review and commentary.
Fixes PR kern/59963. | 67e29cd46cdce663eb69f89b3b438201e9412f79 | null | null | null |
git_logdiff | netbsd | commit e418ea6b4fef9fecf3e9e0c7dd11c940d39108fe
Author: mrg <mrg@NetBSD.org>
Date: Tue Feb 24 00:28:19 2026 +0000
properly mask the "number of arguments" word to avoid invalid output.
i had a system soft-hang with cc1plus waiting for memory, but there
is enough memory free now, but when i tried to "... | null | properly mask the "number of arguments" word to avoid invalid output.
i had a system soft-hang with cc1plus waiting for memory, but there
is enough memory free now, but when i tried to "bt/a <cc1plus addr>"
i was getting an extremely large output (several megabytes before i
killed simh).
we fetch the argument count f... | e418ea6b4fef9fecf3e9e0c7dd11c940d39108fe | null | null | null |
git_logdiff | netbsd | commit 93cf256a2cbc70889b791c168edac8d91ac9a5c6
Author: andvar <andvar@NetBSD.org>
Date: Mon Feb 23 20:19:28 2026 +0000
fix various typos in comments.
diff --git a/sys/dev/marvell/ehci_mv.c b/sys/dev/marvell/ehci_mv.c
index a1ce3b65c..79db02576 100644
--- a/sys/dev/marvell/ehci_mv.c
+++ b/sys/dev/marvell/ehci_m... | null | fix various typos in comments. | 93cf256a2cbc70889b791c168edac8d91ac9a5c6 | null | null | null |
git_logdiff | netbsd | commit c82bb153e08f9a3195851556358d43649cd0268f
Author: macallan <macallan@NetBSD.org>
Date: Mon Feb 23 08:58:07 2026 +0000
fix gffb_putchar_mono():
- don't use the glyph cache - it doesn't buy us anything when drawing mono
characters and it can't deal with WSATTR_HILIT
- gffb_sync() before drawing... | null | fix gffb_putchar_mono():
- don't use the glyph cache - it doesn't buy us anything when drawing mono
characters and it can't deal with WSATTR_HILIT
- gffb_sync() before drawing characters - turns out we can overrun the command
buffer with this, which leads to occasional lockups. No measurable loss of
speed. | c82bb153e08f9a3195851556358d43649cd0268f | null | null | null |
git_logdiff | netbsd | commit 969a7481ab8dba6467e2287292b7943240012218
Author: christos <christos@NetBSD.org>
Date: Sun Feb 22 17:11:23 2026 +0000
Appease clang not liking ","+len:
error: adding 'size_t' (aka 'unsigned long') to a string does not append
to the string [-Werror,-Wstring-plus-int]
note: use array ind... | null | Appease clang not liking ","+len:
error: adding 'size_t' (aka 'unsigned long') to a string does not append
to the string [-Werror,-Wstring-plus-int]
note: use array indexing to silence this warning | 969a7481ab8dba6467e2287292b7943240012218 | null | null | null |
git_logdiff | netbsd | commit 36db848402ade3dd8e01b46577ffcf97a299b553
Author: riastradh <riastradh@NetBSD.org>
Date: Sun Feb 22 12:14:56 2026 +0000
amd64: Fix locking around uvm_map_checkprot in mm_md_kernacc.
This call was originally introduced in sys/arch/amd64/amd64/mem.c
rev. 1.11 back in 2003 by fvdl@ with the commi... | null | amd64: Fix locking around uvm_map_checkprot in mm_md_kernacc.
This call was originally introduced in sys/arch/amd64/amd64/mem.c
rev. 1.11 back in 2003 by fvdl@ with the commit message:
> Proper checks for kmem reads beyond _end
https://mail-index.netbsd.org/source-changes/2003/10/14/msg135803.html
At some point, SO... | 36db848402ade3dd8e01b46577ffcf97a299b553 | null | null | null |
git_logdiff | netbsd | commit d9ed9bffb2dc3eea8fcb053dcf8c07f7cb304dea
Author: mrg <mrg@NetBSD.org>
Date: Sun Feb 22 08:36:02 2026 +0000
define HAVE_NOATEXIT here, syncing with how pkgsrc MesaLib builds.
second and final part to fix PR#60025.
XXX: pullup-*
diff --git a/external/mit/xorg/lib/libmesa.mk b/external/mit... | null | define HAVE_NOATEXIT here, syncing with how pkgsrc MesaLib builds.
second and final part to fix PR#60025.
XXX: pullup-* | d9ed9bffb2dc3eea8fcb053dcf8c07f7cb304dea | null | null | null |
git_logdiff | illumos | commit fadc31cc9cb9ddb316d19e82317e0b5743216b0d
Author: Andy Fiddaman <illumos@fiddaman.net>
Date: Thu Feb 19 20:18:43 2026 +0000
17882 lpsched confuses RO and RW memory, and core dumps
Reviewed by: Sathya Pramod Batni <pramod.batni@gmail.com>
Reviewed by: Bill Sommerfeld <sommerfeld@hamachi.org>
Rev... | null | 17882 lpsched confuses RO and RW memory, and core dumps
Reviewed by: Sathya Pramod Batni <pramod.batni@gmail.com>
Reviewed by: Bill Sommerfeld <sommerfeld@hamachi.org>
Reviewed by: Toomas Soome <tsoome@me.com>
Approved by: Gordon Ross <gordon.w.ross@gmail.com> | fadc31cc9cb9ddb316d19e82317e0b5743216b0d | null | null | null |
git_logdiff | illumos | commit e2413780732d3fa32a77738df4e8aa7a70e92b66
Author: Toomas Soome <tsoome@me.com>
Date: Sun Feb 8 12:54:41 2026 +0200
17885 loader.efi: free_tables() appears to free tss_pa twice.
Reviewed by: Robert Mustacchi <rm+illumos@fingolfin.org>
Approved by: Gordon Ross <gordon.w.ross@gmail.com>
diff --git a/... | null | 17885 loader.efi: free_tables() appears to free tss_pa twice.
Reviewed by: Robert Mustacchi <rm+illumos@fingolfin.org>
Approved by: Gordon Ross <gordon.w.ross@gmail.com> | e2413780732d3fa32a77738df4e8aa7a70e92b66 | null | null | null |
git_logdiff | illumos | commit 94a9925adab42d24f5aa57db6c9e6978289f1691
Author: Toomas Soome <tsoome@me.com>
Date: Sat Feb 21 10:56:48 2026 +0200
17884 loader.efi: tss_pa setup seems to be flawed in trap.c
Reviewed by: Robert Mustacchi <rm+illumos@fingolfin.org>
Approved by: Gordon Ross <gordon.w.ross@gmail.com>
diff --git a/u... | null | 17884 loader.efi: tss_pa setup seems to be flawed in trap.c
Reviewed by: Robert Mustacchi <rm+illumos@fingolfin.org>
Approved by: Gordon Ross <gordon.w.ross@gmail.com> | 94a9925adab42d24f5aa57db6c9e6978289f1691 | null | null | null |
git_logdiff | illumos | commit e099574a545b6697b03185ea408fa11dd7b45d9f
Author: Bill Sommerfeld <sommerfeld@hamachi.org>
Date: Fri Feb 13 13:23:05 2026 -0800
17876 newlocale should understand how libstdc++ names composite locales
Reviewed by: Robert Mustacchi <rm@fingolfin.org>
Approved by: Dan McDonald <danmcd@Edgecast.io>
di... | null | 17876 newlocale should understand how libstdc++ names composite locales
Reviewed by: Robert Mustacchi <rm@fingolfin.org>
Approved by: Dan McDonald <danmcd@Edgecast.io> | e099574a545b6697b03185ea408fa11dd7b45d9f | null | null | null |
git_logdiff | illumos | commit 30d0e5ef02a71f5df4bd7498dc89555ec3922e6a
Author: Toomas Soome <tsoome@me.com>
Date: Wed May 24 14:46:36 2023 +0300
17881 loader: file_load() should not allocate loadaddr
Reviewed by: Andrew Stormont <andyjstormont@gmail.com>
Reviewed by: Jason King <jason.brian.king+illumos@gmail.com>
Approved... | null | 17881 loader: file_load() should not allocate loadaddr
Reviewed by: Andrew Stormont <andyjstormont@gmail.com>
Reviewed by: Jason King <jason.brian.king+illumos@gmail.com>
Approved by: Dan McDonald <danmcd@edgecast.io> | 30d0e5ef02a71f5df4bd7498dc89555ec3922e6a | null | null | null |
git_logdiff | illumos | commit c9301135f8b1b14b806b0a859494a1def8f1aedb
Author: Toomas Soome <tsoome@me.com>
Date: Tue Sep 30 11:24:15 2025 +0300
17873 loader: add acpi_find_table()
Reviewed by: Robert Mustacchi <rm+illumos@fingolfin.org>
Approved by: Dan McDonald <danmcd@edgecast.io>
diff --git a/usr/src/boot/efi/include/efil... | null | 17873 loader: add acpi_find_table()
Reviewed by: Robert Mustacchi <rm+illumos@fingolfin.org>
Approved by: Dan McDonald <danmcd@edgecast.io> | c9301135f8b1b14b806b0a859494a1def8f1aedb | null | null | null |
git_logdiff | illumos | commit 4e774db12f8cbb6fbac674a432a7946f9db6c012
Author: Matt Barden <mbarden@racktopsystems.com>
Date: Mon Oct 30 22:17:52 2023 -0400
17713 SMB 3.1.1 should support GMAC signing
Reviewed by: Gordon Ross <gordon.w.ross@gmail.com>
Reviewed by: Robert Mustacchi <rm+illumos@fingolfin.org>
Approved by: Pa... | null | 17713 SMB 3.1.1 should support GMAC signing
Reviewed by: Gordon Ross <gordon.w.ross@gmail.com>
Reviewed by: Robert Mustacchi <rm+illumos@fingolfin.org>
Approved by: Patrick Mooney <pmooney@pfmooney.com> | 4e774db12f8cbb6fbac674a432a7946f9db6c012 | null | null | null |
git_logdiff | illumos | commit e2e5b80acab8f406ee1e276a95174e24f73b8d72
Author: Matt Barden <mbarden@racktopsystems.com>
Date: Fri Oct 27 19:30:11 2023 -0400
17712 smb: support signing capabilities negotiation context
Reviewed by: Gordon Ross <gordon.w.ross@gmail.com>
Reviewed by: Robert Mustacchi <rm+illumos@fingolfin.org>
... | null | 17712 smb: support signing capabilities negotiation context
Reviewed by: Gordon Ross <gordon.w.ross@gmail.com>
Reviewed by: Robert Mustacchi <rm+illumos@fingolfin.org>
Approved by: Patrick Mooney <pmooney@pfmooney.com> | e2e5b80acab8f406ee1e276a95174e24f73b8d72 | null | null | null |
git_logdiff | illumos | commit 524a3feb216128d6eeeaf17815639f323be5fcec
Author: Matt Barden <mbarden@racktopsystems.com>
Date: Mon Oct 30 12:53:13 2023 -0400
17711 SMB: use single-shot scatter/gather interfaces for signing
Reviewed by: Gordon Ross <gordon.w.ross@gmail.com>
Reviewed by: Robert Mustacchi <rm+illumos@fingolfin.org... | null | 17711 SMB: use single-shot scatter/gather interfaces for signing
Reviewed by: Gordon Ross <gordon.w.ross@gmail.com>
Reviewed by: Robert Mustacchi <rm+illumos@fingolfin.org>
Approved by: Patrick Mooney <pmooney@pfmooney.com> | 524a3feb216128d6eeeaf17815639f323be5fcec | null | null | null |
git_logdiff | illumos | commit e5485f02732aa05b3181221faa104f411491cb9b
Author: Matt Barden <mbarden@racktopsystems.com>
Date: Fri Oct 27 13:48:08 2023 -0400
17710 SMB: want unified mac functions
Reviewed by: Gordon Ross <gordon.w.ross@gmail.com>
Reviewed by: Robert Mustacchi <rm+illumos@fingolfin.org>
Approved by: Patrick ... | null | 17710 SMB: want unified mac functions
Reviewed by: Gordon Ross <gordon.w.ross@gmail.com>
Reviewed by: Robert Mustacchi <rm+illumos@fingolfin.org>
Approved by: Patrick Mooney <pmooney@pfmooney.com> | e5485f02732aa05b3181221faa104f411491cb9b | null | null | null |
git_logdiff | illumos | commit dadc95e385cbd455daca5488b58f41d38eb3ba11
Author: Toomas Soome <tsoome@me.com>
Date: Mon Nov 3 13:24:34 2025 +0200
17728 hasmntopt should take const pointers
Reviewed by: Dan McDonald <danmcd@edgecast.io>
Reviewed by: Andy Fiddaman <illumos@fiddaman.net>
Approved by: Gordon Ross <gordon.w.ross@... | null | 17728 hasmntopt should take const pointers
Reviewed by: Dan McDonald <danmcd@edgecast.io>
Reviewed by: Andy Fiddaman <illumos@fiddaman.net>
Approved by: Gordon Ross <gordon.w.ross@gmail.com> | dadc95e385cbd455daca5488b58f41d38eb3ba11 | null | null | null |
git_logdiff | illumos | commit b3cd65e66b4d22c513629005636c0e232d1e1d26
Author: Toomas Soome <tsoome@me.com>
Date: Wed Nov 12 21:09:23 2025 +0200
17743 cw: want time the compiler runs
Reviewed by: Bill Sommerfeld <sommerfeld@hamachi.org>
Approved by: Dan McDonald <danmcd@edgecast.io>
diff --git a/usr/src/tools/cw/cw.c b/usr/sr... | null | 17743 cw: want time the compiler runs
Reviewed by: Bill Sommerfeld <sommerfeld@hamachi.org>
Approved by: Dan McDonald <danmcd@edgecast.io> | b3cd65e66b4d22c513629005636c0e232d1e1d26 | null | null | null |
git_logdiff | illumos | commit 3608e4e975d4bc82adf84881bd020a425d18abbb
Author: Toomas Soome <tsoome@me.com>
Date: Tue Feb 3 12:30:30 2026 +0200
17874 loader gzipfs: directory names are not compressed
Reviewed by: Andy Fiddaman <illumos@fiddaman.net>
Reviewed by: Bill Sommerfeld <sommerfeld@hamachi.org>
Approved by: Dan McD... | null | 17874 loader gzipfs: directory names are not compressed
Reviewed by: Andy Fiddaman <illumos@fiddaman.net>
Reviewed by: Bill Sommerfeld <sommerfeld@hamachi.org>
Approved by: Dan McDonald <danmcd@edgecast.io> | 3608e4e975d4bc82adf84881bd020a425d18abbb | null | null | null |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.