Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 20 Mar 2018 19:28:52 +0000 (UTC)
From:      Ed Maste <emaste@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r331256 - head/sys/amd64/linux
Message-ID:  <201803201928.w2KJSqe3006654@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: emaste
Date: Tue Mar 20 19:28:52 2018
New Revision: 331256
URL: https://svnweb.freebsd.org/changeset/base/331256

Log:
  Make linuxulator fn declaration match definition
  
  I accidentally swapped 'linux_fixup_elf' to 'linux_elf_fixup' in amd64's
  declaration (only),  while bringing this change over from git and
  encountering a conflict.

Modified:
  head/sys/amd64/linux/linux_sysvec.c

Modified: head/sys/amd64/linux/linux_sysvec.c
==============================================================================
--- head/sys/amd64/linux/linux_sysvec.c	Tue Mar 20 18:02:21 2018	(r331255)
+++ head/sys/amd64/linux/linux_sysvec.c	Tue Mar 20 19:28:52 2018	(r331256)
@@ -119,7 +119,7 @@ extern struct sysent linux_sysent[LINUX_SYS_MAXSYSCALL
 SET_DECLARE(linux_ioctl_handler_set, struct linux_ioctl_handler);
 
 static register_t * linux_copyout_strings(struct image_params *imgp);
-static int	linux_elf_fixup(register_t **stack_base,
+static int	linux_fixup_elf(register_t **stack_base,
 		    struct image_params *iparams);
 static bool	linux_trans_osrel(const Elf_Note *note, int32_t *osrel);
 static void	linux_vdso_install(void *param);



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