From owner-p4-projects@FreeBSD.ORG Tue Jun 13 21:46:56 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 85BB916A47D; Tue, 13 Jun 2006 21:46:56 +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 6167C16A47B for ; Tue, 13 Jun 2006 21:46:56 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E591043D46 for ; Tue, 13 Jun 2006 21:46:55 +0000 (GMT) (envelope-from jhb@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 k5DLiZ1X097467 for ; Tue, 13 Jun 2006 21:44:35 GMT (envelope-from jhb@freebsd.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k5DLiZd4097464 for perforce@freebsd.org; Tue, 13 Jun 2006 21:44:35 GMT (envelope-from jhb@freebsd.org) Date: Tue, 13 Jun 2006 21:44:35 GMT Message-Id: <200606132144.k5DLiZd4097464@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: perforce set sender to jhb@freebsd.org using -f From: John Baldwin To: Perforce Change Reviews Cc: Subject: PERFORCE change 99176 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: Tue, 13 Jun 2006 21:46:56 -0000 http://perforce.freebsd.org/chv.cgi?CH=99176 Change 99176 by jhb@jhb_mutex on 2006/06/13 21:43:34 Trim trailing whitespace. Affected files ... .. //depot/projects/smpng/sys/kern/kern_linker.c#70 edit Differences ... ==== //depot/projects/smpng/sys/kern/kern_linker.c#70 (text+ko) ==== @@ -192,7 +192,7 @@ /* * Perform a bubble sort of the system initialization objects by * their subsystem (primary key) and order (secondary key). - * + * * Since some things care about execution order, this is the operation * which ensures continued function. */ @@ -236,7 +236,7 @@ /* * Perform a reverse bubble sort of the system initialization objects * by their subsystem (primary key) and order (secondary key). - * + * * Since some things care about execution order, this is the operation * which ensures continued function. */ @@ -597,8 +597,8 @@ } } - /* - * Don't try to run SYSUNINITs if we are unloaded due to a + /* + * Don't try to run SYSUNINITs if we are unloaded due to a * link error. */ if (file->flags & LINKER_FILE_LINKED) { @@ -766,7 +766,7 @@ /* * DDB Helpers. DDB has to look across multiple files with their own symbol * tables and string tables. - * + * * Note that we do not obey list locking protocols here. We really don't need * DDB to hang because somebody's got the lock held. We'll take the chance * that the files list is inconsistant instead. @@ -925,7 +925,7 @@ */ printf("kldunload: attempt to unload file that was" " loaded by the kernel\n"); - error = EBUSY; + error = EBUSY; } else { #ifdef HWPMC_HOOKS /* Save data needed by hwpmc(4) before unloading. */ @@ -1348,7 +1348,7 @@ } if (nmdp < stop) /* it's a self reference */ continue; - + /* * ok, the module isn't here yet, we * are not finished @@ -1463,15 +1463,15 @@ /* * Search for a not-loaded module by name. - * + * * Modules may be found in the following locations: - * + * * - preloaded (result is just the module name) - on disk (result is full path * to module) - * + * * If the module name is qualified in any way (contains path, etc.) the we * simply return a copy of it. - * + * * The search path can be manipulated via sysctl. Note that we use the ';' * character as a separator to be consistent with the bootloader. */