svn commit: r328774 - head/sys/kern
Hans Petter Selasky
hselasky at FreeBSD.org
Fri Feb 2 12:42:47 UTC 2018
Author: hselasky
Date: Fri Feb 2 12:42:46 2018
New Revision: 328774
URL: https://svnweb.freebsd.org/changeset/base/328774
Log:
Slightly bump the maximum OID path for loading tunable SYSCTLs.
Coming updates to the mlx5en(4) driver will require this.
MFC after: 1 week
Sponsored by: Mellanox Technologies
Modified:
head/sys/kern/kern_sysctl.c
Modified: head/sys/kern/kern_sysctl.c
==============================================================================
--- head/sys/kern/kern_sysctl.c Fri Feb 2 11:56:30 2018 (r328773)
+++ head/sys/kern/kern_sysctl.c Fri Feb 2 12:42:46 2018 (r328774)
@@ -190,7 +190,7 @@ sysctl_load_tunable_by_oid_locked(struct sysctl_oid *o
struct sysctl_req req;
struct sysctl_oid *curr;
char *penv = NULL;
- char path[64];
+ char path[96];
ssize_t rem = sizeof(path);
ssize_t len;
uint8_t val_8;
More information about the svn-src-all
mailing list