From owner-p4-projects@FreeBSD.ORG Thu Jun 22 05:22:28 2006 Return-Path: X-Original-To: p4-projects@freebsd.org Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 773F616A47C; Thu, 22 Jun 2006 05:22:28 +0000 (UTC) X-Original-To: perforce@freebsd.org Delivered-To: perforce@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3806316A47A for ; Thu, 22 Jun 2006 05:22:28 +0000 (UTC) (envelope-from jb@freebsd.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0225A44685 for ; Thu, 22 Jun 2006 05:22:28 +0000 (GMT) (envelope-from jb@freebsd.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k5M5MRq1007239 for ; Thu, 22 Jun 2006 05:22:27 GMT (envelope-from jb@freebsd.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k5M5MRMr007236 for perforce@freebsd.org; Thu, 22 Jun 2006 05:22:27 GMT (envelope-from jb@freebsd.org) Date: Thu, 22 Jun 2006 05:22:27 GMT Message-Id: <200606220522.k5M5MRMr007236@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: perforce set sender to jb@freebsd.org using -f From: John Birrell To: Perforce Change Reviews Cc: Subject: PERFORCE change 99797 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 05:22:28 -0000 http://perforce.freebsd.org/chv.cgi?CH=99797 Change 99797 by jb@jb_freebsd2 on 2006/06/22 05:21:49 Remove the DTrace module loading from this architecture specific file. I've found a better (machine independent) place. Affected files ... .. //depot/projects/dtrace/src/sys/boot/i386/libi386/i386_module.c#3 edit Differences ... ==== //depot/projects/dtrace/src/sys/boot/i386/libi386/i386_module.c#3 (text+ko) ==== @@ -64,31 +64,5 @@ printf("ACPI autoload failed - %s\n", strerror(error)); } - /* - * XXX This stuff should be in 4th too, but who can understand - * how to load a module from a menu option? The support.4th - * code loads modules before the menu. - */ - if (getenv("dtrace_load")) { - error = mod_load("cyclic", NULL, 0, NULL); - if (error != 0) - printf("cyclic autoload failed - %s\n", strerror(error)); - error = mod_load("dtrace", NULL, 0, NULL); - if (error != 0) - printf("dtrace autoload failed - %s\n", strerror(error)); - error = mod_load("profile", NULL, 0, NULL); - if (error != 0) - printf("profile autoload failed - %s\n", strerror(error)); - error = mod_load("systrace", NULL, 0, NULL); - if (error != 0) - printf("systrace autoload failed - %s\n", strerror(error)); - error = mod_load("fbt", NULL, 0, NULL); - if (error != 0) - printf("fbt autoload failed - %s\n", strerror(error)); - error = mod_load("sdt", NULL, 0, NULL); - if (error != 0) - printf("sdt autoload failed - %s\n", strerror(error)); - } - return(0); }