SYSCTL_XXX still wants dev_t, not cdev_t

Frank W. Josellis frank at dynamical-systems.org
Thu Sep 21 06:24:31 PDT 2006


With the recent renaming of the kernel's dev_t to cdev_t the dev_t type 
sysctl variables, namely, "kern.dumpdev" and "machdep.consdev", have 
disappeared (at least these two are affected). Please consider the below 
modifications to bring them back again.

Regards,
Frank Josellis


--- patch begins here ---
--- src/sys/kern/kern_shutdown.c.orig	2006-09-10 03:26:39.000000000 +0200
+++ src/sys/kern/kern_shutdown.c	2006-09-21 13:39:31.000000000 +0200
@@ -521,7 +521,7 @@
 }
 
 SYSCTL_PROC(_kern, KERN_DUMPDEV, dumpdev, CTLTYPE_OPAQUE|CTLFLAG_RW,
-	0, sizeof dumpdev, sysctl_kern_dumpdev, "T,cdev_t", "");
+	0, sizeof dumpdev, sysctl_kern_dumpdev, "T,dev_t", "");
 
 /*
  * Doadump comes here after turning off memory management and
---pach ends here ---


--- patch begins here ---
--- src/sys/kern/tty_cons.c.orig	2006-09-10 03:26:39.000000000 +0200
+++ src/sys/kern/tty_cons.c	2006-09-21 13:39:31.000000000 +0200
@@ -91,7 +91,7 @@
 static cdev_t	cn_dev;
 static udev_t	cn_udev;
 SYSCTL_OPAQUE(_machdep, CPU_CONSDEV, consdev, CTLFLAG_RD,
-	&cn_udev, sizeof cn_udev, "T,cdev_t", "");
+	&cn_udev, sizeof cn_udev, "T,dev_t", "");
 
 static int cn_mute;
 
--- patch ends here ---






More information about the Bugs mailing list