HomeFreeBSD

Recent Activity
ActivePublic

Recent Activity

Today

jrtc27 added inline comments to D55996: sys/x86/x86: Handle when MPERF/APERF MSRs aren't writable.
Sat, Mar 21, 1:22 AM
kib added a comment to D55912: net: Add page/bank fields to ifi2cre; update mce(4) to use them.
In D55912#1279758, @kib wrote:

Why not simply not allocate the new number for the new ioctl. Rename current ioctl to something like SIOCGI2C_NOBANK. Then, at the ioctl level, do two things:

  • for new SIOCGI2C check that reserved bytes in the structure are zero
  • for SIOCGI2C_NOBANK, zero bank/page/padding and call into SIOCGI2C

I think I'd rather go the other direction, so as to avoid touching legacy ioctl users from ports. It turns out there are many from the ports sweep.

Eg, we add SIOCGI2CPB (where PB means page/bank) for new code. Drivers like mlx5 which can support page and/or bank access add a fallthru to SIOCGI2CPB to their SIOCGI2C case and zero page & bank for SIOCGI2C. Eg:

	case SIOCGI2C:
	case SIOCGI2CPB:
		ifr = (struct ifreq *)data;

		/*
		 * Copy from the user-space address ifr_data to the
		 * kernel-space address i2c
		 */
		error = copyin(ifr_data_get_ptr(ifr), &i2c, sizeof(i2c));
		if (error)
			break;

		/* Esnure page & bank are zero for legacy SIOCGI2C ioctl */
		if (command == SIOCGI2C) {
			i2c.page = i2c.bank = 0;
		}
Sat, Mar 21, 1:15 AM
kib accepted D55996: sys/x86/x86: Handle when MPERF/APERF MSRs aren't writable.
Sat, Mar 21, 1:08 AM
kib added inline comments to D55893: libc: Fix cxa_thread_atexit test..
Sat, Mar 21, 1:06 AM
pouria added a comment to D55904: hash(9): introduce hashalloc()/hashfree() KPI.

LGTM
Phabricator won't let me accept behalf of myself.

Sat, Mar 21, 1:04 AM
yuri committed R11:a93fbecef2ed: science/ocean: Remove expiration lines (authored by yuri).
science/ocean: Remove expiration lines
Sat, Mar 21, 12:37 AM
yuri committed R11:3be0f9f98ff1: science/abinit: Remove expiration lines (authored by yuri).
science/abinit: Remove expiration lines
Sat, Mar 21, 12:24 AM
yuri committed R11:8f29ec93b454: science/atompaw: update 4.2.0.3 → 4.2.0.5 (authored by thierry).
science/atompaw: update 4.2.0.3 → 4.2.0.5
Sat, Mar 21, 12:14 AM
cperciva added a comment to D55857: io_apic: Don't route to APIC ID > 255.

@jhb I think I've fixed this now, with a new io_valid field in D56006 being used to mark intpins as being invalid (and forcibly masked) due to having unsupported destinations.

Sat, Mar 21, 12:06 AM
cperciva updated the diff for D55889: io_apic: Support APIC Extended Destination IDs.

Use io_valid

Sat, Mar 21, 12:03 AM
cperciva updated the diff for D55857: io_apic: Don't route to APIC ID > 255.

Use io_valid

Sat, Mar 21, 12:03 AM
cperciva requested review of D56006: x86: Add struct ioapic_intsrc.io_valid.
Sat, Mar 21, 12:02 AM

Yesterday

mckusick accepted D56002: tunefs: Don't combine GEOM journaling with SU.

Good to get the consistency.

Fri, Mar 20, 11:48 PM
mckusick accepted D55999: newfs: Don't combine GEOM journaling with SU.

Good to update the manual page.

Fri, Mar 20, 11:47 PM
kib updated the diff for D55829: amd64: FRED support.

XENHVM upcall IPI handler

Fri, Mar 20, 11:31 PM
kib requested review of D56005: x86 xen: provide the prototype for xen_arch_intr_handle_upcall() in xen/arch-intr.h.
Fri, Mar 20, 11:28 PM
kib updated the diff for D55829: amd64: FRED support.

This should be functionally complete with the one minor missed XEN ipi handler code.

Fri, Mar 20, 11:12 PM
kib requested review of D56004: x86: provide external access to local_apic.c:lapic_read32().
Fri, Mar 20, 11:02 PM
kib requested review of D56003: x86: move the NUM_ISA_IRQS symbol from atpic.c into x86/isa/icu.h.
Fri, Mar 20, 11:01 PM
kib committed rG8cc1c0f35ec8: amd64 trap.c: provide tag for the struct sfhandlers definition (authored by kib).
amd64 trap.c: provide tag for the struct sfhandlers definition
Fri, Mar 20, 10:50 PM
kib committed rG23dc4850fbc9: amd64: add prototype for ia32_syscall() (authored by kib).
amd64: add prototype for ia32_syscall()
Fri, Mar 20, 10:50 PM
kib committed rGacce5fa3dbe8: amd64: remove assertion about sizeof(struct pcb) (authored by kib).
amd64: remove assertion about sizeof(struct pcb)
Fri, Mar 20, 10:50 PM
kib committed rG6275cd73aca7: sys/param.h: bump __FreeBSD_version for amd64 struct trapframe size change (authored by kib).
sys/param.h: bump __FreeBSD_version for amd64 struct trapframe size change
Fri, Mar 20, 10:50 PM
kib committed rGe90950627327: x86 FRED: add hardware definitions for the trap frames fields (authored by kib).
x86 FRED: add hardware definitions for the trap frames fields
Fri, Mar 20, 10:50 PM
kib committed rG8892176c86db: amd64: check that %cs and %ss values from ucontext fit into registers (authored by kib).
amd64: check that %cs and %ss values from ucontext fit into registers
Fri, Mar 20, 10:50 PM
kib committed rGe18449fbe273: amd64: move code to check for traps with interrupts disabled into helpers (authored by kib).
amd64: move code to check for traps with interrupts disabled into helpers
Fri, Mar 20, 10:50 PM
kib closed D55931: amd64: remove assertion about sizeof(struct pcb).
Fri, Mar 20, 10:50 PM
kib closed D55831: x86 FRED: add hardware definitions for the trap frames fields.
Fri, Mar 20, 10:50 PM
kib closed D55861: amd64: check that %cs and %ss values from ucontext fit into registers.
Fri, Mar 20, 10:50 PM
kib closed D55809: amd64: move code to check for traps with interrupts disabled into helpers.
Fri, Mar 20, 10:50 PM
alven committed R11:f8cf3a20aac4: textproc/hs-pandoc: Update 3.8.3 => 3.9.0.2 (authored by alven).
textproc/hs-pandoc: Update 3.8.3 => 3.9.0.2
Fri, Mar 20, 10:46 PM
des added a comment to D55999: newfs: Don't combine GEOM journaling with SU.

Not clear that soft updates and GEOM will not work at cross purposes with each other..

Fri, Mar 20, 10:36 PM
des updated the diff for D56002: tunefs: Don't combine GEOM journaling with SU.

grammar

Fri, Mar 20, 10:31 PM
des updated the diff for D55999: newfs: Don't combine GEOM journaling with SU.

correct date

Fri, Mar 20, 10:27 PM
des requested review of D56002: tunefs: Don't combine GEOM journaling with SU.
Fri, Mar 20, 10:26 PM
des updated the diff for D55999: newfs: Don't combine GEOM journaling with SU.

update manual page

Fri, Mar 20, 10:26 PM
mckusick accepted D55999: newfs: Don't combine GEOM journaling with SU.

Looks good. Not clear that soft updates and GEOM will not work at cross purposes with each other..

Fri, Mar 20, 9:55 PM
tz committed R11:498cc5a1de8b: security/syft: New port (authored by tz).
security/syft: New port
Fri, Mar 20, 9:51 PM
jbeich committed R11:2f1a959ec53a: x11-toolkits/wlroots019: update to 0.19.3 (authored by jbeich).
x11-toolkits/wlroots019: update to 0.19.3
Fri, Mar 20, 9:33 PM
jbeich committed R11:ede0d846ebed: multimedia/aom: update to 3.13.2 (authored by jbeich).
multimedia/aom: update to 3.13.2
Fri, Mar 20, 9:33 PM
jbeich committed R11:c4307d36b3d3: multimedia/aom: update to 3.13.2 (authored by jbeich).
multimedia/aom: update to 3.13.2
Fri, Mar 20, 9:32 PM
jbeich committed R11:3284b3110cc7: x11-toolkits/wlroots020: update to 0.20.0.r5 (authored by jbeich).
x11-toolkits/wlroots020: update to 0.20.0.r5
Fri, Mar 20, 9:32 PM
jbeich committed R11:b2548dab88c2: x11-toolkits/wlroots019: update to 0.19.3 (authored by jbeich).
x11-toolkits/wlroots019: update to 0.19.3
Fri, Mar 20, 9:32 PM
alven abandoned D55752: cad/yosys: Update 0.62 => 0.63.
Fri, Mar 20, 9:29 PM
imp accepted D55940: kernel: Be clearer about what ZSTDIO is for.
Fri, Mar 20, 9:26 PM
samm committed R11:54fc75647988: comms/meshcore-cli: upgrade to 1.5.0 (authored by samm).
comms/meshcore-cli: upgrade to 1.5.0
Fri, Mar 20, 9:16 PM
samm committed R11:b3be6bd5062d: comms/py-meshcore: upgrade to 2.3.1 (authored by samm).
comms/py-meshcore: upgrade to 2.3.1
Fri, Mar 20, 9:16 PM
samm committed R11:294aa38b2be4: net-mgmt/victoria-logs: upgrade to 1.48.0 (authored by samm).
net-mgmt/victoria-logs: upgrade to 1.48.0
Fri, Mar 20, 9:10 PM
glebius added inline comments to D55973: udp: in_pcbbind_setup() doesn't require hash write lock.
Fri, Mar 20, 9:02 PM
jrm added a comment to D56001: Emacs infrastructure: Overhaul.

This is still in the design stage, so I haven't:

  • made the changes needed for editors/emacs
  • made the changes needed to most USES=emacs ports
Fri, Mar 20, 8:56 PM
jrm requested review of D56001: Emacs infrastructure: Overhaul.
Fri, Mar 20, 8:45 PM
glebius updated the diff for D55661: inpcb: apply smr_advance(9)/smr_wait(9) trick only to reusable sockets.

Use == 0 to check flags.

Fri, Mar 20, 8:27 PM
thierry committed R11:cafe51391e0d: math/brial: upgrade to 1.2.15 (authored by thierry).
math/brial: upgrade to 1.2.15
Fri, Mar 20, 8:26 PM
thierry committed R11:3616b1b63282: math/m4rie: upgrade to 20250128 (authored by thierry).
math/m4rie: upgrade to 20250128
Fri, Mar 20, 8:26 PM
thierry committed R11:af55a303485e: math/m4ri: upgrade to 20260122 (authored by thierry).
math/m4ri: upgrade to 20260122
Fri, Mar 20, 8:25 PM
ngie created P706 Command-Line Input.
Fri, Mar 20, 8:22 PM
ngie created P705 Command-Line Input.
Fri, Mar 20, 8:17 PM
ngie added a reverting change for rG14b9955e57cc: libcrypto: compile all PIC objects with -DOPENSSL_PIC: rG67b918e03475: Revert "libcrypto: compile all PIC objects with -DOPENSSL_PIC".
Fri, Mar 20, 8:13 PM
ngie committed rG67b918e03475: Revert "libcrypto: compile all PIC objects with -DOPENSSL_PIC" (authored by ngie).
Revert "libcrypto: compile all PIC objects with -DOPENSSL_PIC"
Fri, Mar 20, 8:13 PM
ngie added a reverting change for D44896: libcrypto: compile all PIC objects with -DOPENSSL_PIC: rG67b918e03475: Revert "libcrypto: compile all PIC objects with -DOPENSSL_PIC".
Fri, Mar 20, 8:13 PM
vishwin committed R11:7c5b2039a45a: wasi: consistently use the wasm32-wasip1 triple (authored by vishwin).
wasi: consistently use the wasm32-wasip1 triple
Fri, Mar 20, 8:02 PM
thj added a comment to D56000: Update VPP to 26.02.

@jrm last time you generated the plist for me, but I don't remember how you got everything picked up correctly. Can you help?

Fri, Mar 20, 7:56 PM
thj requested review of D56000: Update VPP to 26.02.
Fri, Mar 20, 7:56 PM
zi committed R11:f4758fd11061: databases/proxysql: Bump PORTREVISION (authored by zi).
databases/proxysql: Bump PORTREVISION
Fri, Mar 20, 7:55 PM
zi committed R11:ca5e45084008: databases/proxysql: Update to 3.0.6 (authored by zi).
databases/proxysql: Update to 3.0.6
Fri, Mar 20, 7:49 PM
des updated the summary of D55999: newfs: Don't combine GEOM journaling with SU.
Fri, Mar 20, 7:49 PM
ngie added a comment to D55980: devel/py-pipx: upgrade to 1.10.0.

@sunpoet : I'm proposing this update because the issue I ran into in https://github.com/pypa/pipx/issues/1718 is resolved in a newer version of the tool. I don't mind if you take care of the update in ports.
It doesn't look like this port is consumed in-tree, except by sysutils/duplicity .

Fri, Mar 20, 7:48 PM
des requested review of D55999: newfs: Don't combine GEOM journaling with SU.
Fri, Mar 20, 7:48 PM
emaste committed rGa347e6e20e75: compat/linux: Avoid waitid() kernel stack disclosure (authored by emaste).
compat/linux: Avoid waitid() kernel stack disclosure
Fri, Mar 20, 7:36 PM
emaste committed rG6a808cd75348: compat32: Zero struct to avoid stack disclosure (authored by emaste).
compat32: Zero struct to avoid stack disclosure
Fri, Mar 20, 7:36 PM
emaste committed rGe61804ae6380: shm: Zero struct kinfo_file in sysctl handler (authored by emaste).
shm: Zero struct kinfo_file in sysctl handler
Fri, Mar 20, 7:36 PM
cmt committed R11:04b7169b76dd: cad/kicad: update KiCad and libraries to 10.0.0 (authored by cmt).
cad/kicad: update KiCad and libraries to 10.0.0
Fri, Mar 20, 7:25 PM
emaste committed rGe296211fd59b: Makefile.inc1: Don't force LLVM_BINUTILS off for cross-tools (authored by emaste).
Makefile.inc1: Don't force LLVM_BINUTILS off for cross-tools
Fri, Mar 20, 7:07 PM
emaste closed D55650: Makefile.inc1: Don't force LLVM_BINUTILS off for cross-tools.
Fri, Mar 20, 7:07 PM
emaste accepted D55866: handbook/disks: remove obsolete sysinstall note from gbde section.
Fri, Mar 20, 7:05 PM
chs added reviewers for D55998: bsnmpd: fix some memory leaks in mibII: imp, harti.
Fri, Mar 20, 7:02 PM
chs requested review of D55998: bsnmpd: fix some memory leaks in mibII.
Fri, Mar 20, 7:02 PM
zlei abandoned D55898: ifnet: if_vmove_reclaim(): Be more robust to check the src / dst vnet.
Fri, Mar 20, 6:56 PM
zlei requested review of D55997: ifnet: Fix races in if_vmove_reclaim().
Fri, Mar 20, 6:54 PM
cperciva added a comment to D55978: EC2: Add clibs-lib32 pkg to small/builder images.
In D55978#1280739, @ivy wrote:

the described behaviour seems like clearly a bug in pkg. from the pkgbase side, i don't mind this change as a workaround, but i wonder what the correct fix is here; do we want a separate package for 32-bit clang, like clang-lib32? clibs-lib32 is 3MB, which is relatively tiny compared to clang itself, but i think i'd prefer not to have any mandatory dependencies from native packages to compat packages - you should be able to completely ignore compat if you don't want it.

Fri, Mar 20, 6:53 PM
chs committed rG1fd43ee968c4: tpm: fix multi-threaded access with per-open state (authored by chs).
tpm: fix multi-threaded access with per-open state
Fri, Mar 20, 6:50 PM
chs closed D52328: tpm: fix multi-threaded access with per-open state.
Fri, Mar 20, 6:49 PM
ivy added a comment to D55978: EC2: Add clibs-lib32 pkg to small/builder images.

the described behaviour seems like clearly a bug in pkg. from the pkgbase side, i don't mind this change as a workaround, but i wonder what the correct fix is here; do we want a separate package for 32-bit clang, like clang-lib32? clibs-lib32 is 3MB, which is relatively tiny compared to clang itself, but i think i'd prefer not to have any mandatory dependencies from native packages to compat packages - you should be able to completely ignore compat if you don't want it.

Fri, Mar 20, 6:40 PM
ziaee requested review of D55996: sys/x86/x86: Handle when MPERF/APERF MSRs aren't writable.
Fri, Mar 20, 6:35 PM
dvl committed R11:f68b4f25f746: net-mgmt/librenms: Remove ImageMagick - it is not used (authored by dvl).
net-mgmt/librenms: Remove ImageMagick - it is not used
Fri, Mar 20, 6:33 PM
Kevin Bowling <kbowling@FreeBSD.org> committed R11:0762347de650: filesystems/ltfs: Update to 2.4.8.2 (authored by Kevin Bowling <kbowling@FreeBSD.org>).
filesystems/ltfs: Update to 2.4.8.2
Fri, Mar 20, 6:31 PM
cperciva added a comment to D55978: EC2: Add clibs-lib32 pkg to small/builder images.

After more investigation: The culprit here is libclang_rt.asan-i386.so which is landing in FreeBSD-clang and creating the dependency on 32-bit libraries.

Fri, Mar 20, 6:27 PM
osa committed R11:999792819210: lang/quickjs: update: 2025.09.13-20251018 -> 2025.09.13-20251222 (authored by osa).
lang/quickjs: update: 2025.09.13-20251018 -> 2025.09.13-20251222
Fri, Mar 20, 6:12 PM
yuri committed R11:86a7e1e9b4ed: misc/comfyui: Add pkg-message, add comment (authored by yuri).
misc/comfyui: Add pkg-message, add comment
Fri, Mar 20, 6:05 PM
yuri committed R11:537cf310af09: textproc/py-en-core-web-sm: Fix fetch (authored by yuri).
textproc/py-en-core-web-sm: Fix fetch
Fri, Mar 20, 6:05 PM
chris.longros_gmail.com added a reviewer for D55866: handbook/disks: remove obsolete sysinstall note from gbde section: emaste.
Fri, Mar 20, 5:56 PM
chris.longros_gmail.com added a reviewer for D55995: rge.4: fix incorrect speed range in HARDWARE section: adrian.
Fri, Mar 20, 5:50 PM
chris.longros_gmail.com requested review of D55995: rge.4: fix incorrect speed range in HARDWARE section.
Fri, Mar 20, 5:48 PM
chs committed rG632ddb864ee8: krb5: append to LDFLAGS instead of replacing (authored by chs).
krb5: append to LDFLAGS instead of replacing
Fri, Mar 20, 5:44 PM
chs closed D55335: krb5: append to LDFLAGS instead of replacing.
Fri, Mar 20, 5:44 PM
glebius added inline comments to D55904: hash(9): introduce hashalloc()/hashfree() KPI.
Fri, Mar 20, 5:29 PM
rene updated the diff for D55624: all: drop support for FreeBSD 13 and MIPS/riscv64sf.

rebase

Fri, Mar 20, 5:07 PM
dch committed R11:1dca2bdad8a5: audio/maolan: Rust digital audio workstation (authored by meka_tilda.center).
audio/maolan: Rust digital audio workstation
Fri, Mar 20, 5:06 PM
dch committed R11:336661aad5c6: sysutils/erldash: new port - top for erlang/BEAM apps (authored by dch).
sysutils/erldash: new port - top for erlang/BEAM apps
Fri, Mar 20, 5:06 PM
rene committed R11:b2411fa46ad6: science/ocean: expire on 2026-04-20 for science/atompaw (authored by rene).
science/ocean: expire on 2026-04-20 for science/atompaw
Fri, Mar 20, 4:58 PM

Panel Used By

Event Timeline

acidburn0_live.be renamed this panel from to Recent Activity.Mar 31 2019, 3:20 PM
acidburn0_live.be edited an edge.