svn commit: r346826 - stable/11/sys/amd64/linux
Dmitry Chagin
dchagin at FreeBSD.org
Sun Apr 28 13:38:30 UTC 2019
Author: dchagin
Date: Sun Apr 28 13:38:29 2019
New Revision: 346826
URL: https://svnweb.freebsd.org/changeset/base/346826
Log:
MFC r331256 (by emaste@):
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:
stable/11/sys/amd64/linux/linux_sysvec.c
Directory Properties:
stable/11/ (props changed)
Modified: stable/11/sys/amd64/linux/linux_sysvec.c
==============================================================================
--- stable/11/sys/amd64/linux/linux_sysvec.c Sun Apr 28 13:37:13 2019 (r346825)
+++ stable/11/sys/amd64/linux/linux_sysvec.c Sun Apr 28 13:38:29 2019 (r346826)
@@ -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);
More information about the svn-src-stable
mailing list