Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 5 Jan 2003 14:37:20 -0800 (PST)
From:      Marcel Moolenaar <marcel@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 23222 for review
Message-ID:  <200301052237.h05MbKFx022268@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=23222

Change 23222 by marcel@marcel_nfs on 2003/01/05 14:36:52

	Relocate the *.apic sysctl from hw to machdep.

Affected files ...

.. //depot/projects/ia64/sys/ia64/ia64/sapic.c#18 edit

Differences ...

==== //depot/projects/ia64/sys/ia64/ia64/sapic.c#18 (text+ko) ====

@@ -41,10 +41,10 @@
 
 static MALLOC_DEFINE(M_SAPIC, "sapic", "I/O SAPIC devices");
 
-static int sysctl_hw_apic(SYSCTL_HANDLER_ARGS);
+static int sysctl_machdep_apic(SYSCTL_HANDLER_ARGS);
 
-SYSCTL_OID(_hw, OID_AUTO, apic, CTLTYPE_STRING|CTLFLAG_RD,
-    NULL, 0, sysctl_hw_apic, "A", "(x)APIC redirection table entries");
+SYSCTL_OID(_machdep, OID_AUTO, apic, CTLTYPE_STRING|CTLFLAG_RD,
+    NULL, 0, sysctl_machdep_apic, "A", "(x)APIC redirection table entries");
 
 struct sapic *ia64_sapics[16]; /* XXX make this resizable */
 int ia64_sapic_count;
@@ -161,7 +161,7 @@
 }
 
 static int
-sysctl_hw_apic(SYSCTL_HANDLER_ARGS)
+sysctl_machdep_apic(SYSCTL_HANDLER_ARGS)
 {
 	char buf[80];
 	struct sapic_rte rte;

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe p4-projects" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200301052237.h05MbKFx022268>