Page MenuHomeFreeBSD

sysctl(9): fix handling string tunables
ClosedPublic

Authored by kaktus on Apr 15 2020, 10:22 AM.
Tags
None
Referenced Files
Unknown Object (File)
Sat, Nov 16, 10:47 PM
Unknown Object (File)
Sat, Nov 16, 7:48 AM
Unknown Object (File)
Wed, Nov 13, 5:55 PM
Unknown Object (File)
Wed, Nov 6, 3:26 PM
Unknown Object (File)
Sun, Nov 3, 11:33 PM
Unknown Object (File)
Tue, Oct 29, 12:35 AM
Unknown Object (File)
Oct 20 2024, 6:12 AM
Unknown Object (File)
Oct 4 2024, 8:35 PM
Subscribers

Details

Summary

rS357614 changed internals of handling string sysctls, and inadvertently broke setting string tunables. Take them into account.

Reported by: jhb, np
PR: 245463

Test Plan

kenv hw.cxgbe.config_file="kern_tls"
kldload if_cxgbe

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

This revision is now accepted and ready to land.Apr 15 2020, 2:24 PM
sys/kern/kern_sysctl.c
1657 ↗(On Diff #70591)

While there, fix style.

if ((oidp->oid_kind & CTLFLAG_WR) == 0 && (oidp->oid_kind & CTLFLAG_TUN) == 0

In fact I would write this as

if ((oidp->oid_kind & (CTLFLAG_WR | CTLFLAG_TUN)) == 0
This revision was automatically updated to reflect the committed changes.