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)
Thu, Apr 11, 12:52 AM
Unknown Object (File)
Jan 18 2024, 1:49 PM
Unknown Object (File)
Dec 20 2023, 6:34 AM
Unknown Object (File)
Sep 23 2023, 4:06 AM
Unknown Object (File)
Sep 16 2023, 6:19 PM
Unknown Object (File)
Sep 16 2023, 4:38 PM
Unknown Object (File)
Sep 14 2023, 2:14 PM
Unknown Object (File)
Jul 25 2023, 3:06 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 Skipped
Unit
Tests Skipped
Build Status
Buildable 30513

Event Timeline

This revision is now accepted and ready to land.Apr 15 2020, 2:24 PM
sys/kern/kern_sysctl.c
1657

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.