svn commit: r293003 - stable/10/sys/kern

Garrett Cooper ngie at FreeBSD.org
Thu Dec 31 20:25:28 UTC 2015


Author: ngie
Date: Thu Dec 31 20:25:26 2015
New Revision: 293003
URL: https://svnweb.freebsd.org/changeset/base/293003

Log:
  MFC r292640,r292641:
  
  r292640:
  
  Clean up trailing whitespace; no functional change
  
  Sponsored by: EMC / Isilon Storage Division
  
  r292641:
  
  Fix r292640
  
  vim overzealously removed some trailing `+' and I didn't check the
  diff
  
  Pointyhat to: ngie
  Sponsored by: EMC / Isilon Storage Division

Modified:
  stable/10/sys/kern/link_elf.c
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/sys/kern/link_elf.c
==============================================================================
--- stable/10/sys/kern/link_elf.c	Thu Dec 31 20:15:57 2015	(r293002)
+++ stable/10/sys/kern/link_elf.c	Thu Dec 31 20:25:26 2015	(r293003)
@@ -575,7 +575,7 @@ parse_dynamic(elf_file_t ef)
 
 static int
 parse_dpcpu(elf_file_t ef)
-{ 
+{
 	int count;
 	int error;
 
@@ -606,7 +606,7 @@ parse_dpcpu(elf_file_t ef)
 #ifdef VIMAGE
 static int
 parse_vnet(elf_file_t ef)
-{ 
+{
 	int count;
 	int error;
 
@@ -872,7 +872,7 @@ link_elf_load_file(linker_class_t cls, c
 	 */
 	base_offset = trunc_page(segs[0]->p_offset);
 	base_vaddr = trunc_page(segs[0]->p_vaddr);
-	base_vlimit = round_page(segs[nsegs - 1]->p_vaddr + 
+	base_vlimit = round_page(segs[nsegs - 1]->p_vaddr +
 	    segs[nsegs - 1]->p_memsz);
 	mapsize = base_vlimit - base_vaddr;
 
@@ -1416,7 +1416,7 @@ link_elf_each_function_name(linker_file_
 	elf_file_t ef = (elf_file_t)file;
 	const Elf_Sym *symp;
 	int i, error;
-	
+
 	/* Exhaustive search */
 	for (i = 0, symp = ef->ddbsymtab; i < ef->ddbsymcnt; i++, symp++) {
 		if (symp->st_value != 0 &&
@@ -1602,7 +1602,7 @@ link_elf_symtab_get(linker_file_t lf, co
 
 	return (ef->ddbsymcnt);
 }
-    
+
 static long
 link_elf_strtab_get(linker_file_t lf, caddr_t *strtab)
 {


More information about the svn-src-stable mailing list