From owner-svn-src-stable@freebsd.org Sun Feb 11 03:21:07 2018 Return-Path: Delivered-To: svn-src-stable@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 70AE4F13C13; Sun, 11 Feb 2018 03:21:07 +0000 (UTC) (envelope-from kevans@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 25054812BF; Sun, 11 Feb 2018 03:21:07 +0000 (UTC) (envelope-from kevans@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 071281D3CA; Sun, 11 Feb 2018 03:21:07 +0000 (UTC) (envelope-from kevans@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w1B3L6jZ016402; Sun, 11 Feb 2018 03:21:06 GMT (envelope-from kevans@FreeBSD.org) Received: (from kevans@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w1B3L6pw016398; Sun, 11 Feb 2018 03:21:06 GMT (envelope-from kevans@FreeBSD.org) Message-Id: <201802110321.w1B3L6pw016398@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kevans set sender to kevans@FreeBSD.org using -f From: Kyle Evans Date: Sun, 11 Feb 2018 03:21:06 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-11@freebsd.org Subject: svn commit: r329118 - in stable/11/sys/boot: arm/uboot mips/uboot powerpc/ofw powerpc/uboot X-SVN-Group: stable-11 X-SVN-Commit-Author: kevans X-SVN-Commit-Paths: in stable/11/sys/boot: arm/uboot mips/uboot powerpc/ofw powerpc/uboot X-SVN-Commit-Revision: 329118 X-SVN-Commit-Repository: base MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Feb 2018 03:21:07 -0000 Author: kevans Date: Sun Feb 11 03:21:06 2018 New Revision: 329118 URL: https://svnweb.freebsd.org/changeset/base/329118 Log: Back out MFC r324558: Define prototype for exit and ensure references This went terribly wrong Modified: stable/11/sys/boot/arm/uboot/conf.c stable/11/sys/boot/mips/uboot/conf.c stable/11/sys/boot/powerpc/ofw/conf.c stable/11/sys/boot/powerpc/uboot/conf.c Directory Properties: stable/11/ (props changed) Modified: stable/11/sys/boot/arm/uboot/conf.c ============================================================================== --- stable/11/sys/boot/arm/uboot/conf.c Sun Feb 11 03:10:27 2018 (r329117) +++ stable/11/sys/boot/arm/uboot/conf.c Sun Feb 11 03:21:06 2018 (r329118) @@ -36,9 +36,6 @@ __FBSDID("$FreeBSD$"); #include "dev_net.h" #endif -/* Make sure we have an explicit reference to exit so libsa's panic pulls in the MD exit */ -void (*exitfn)(int) = exit; - struct devsw *devsw[] = { #if defined(LOADER_DISK_SUPPORT) || defined(LOADER_CD9660_SUPPORT) &uboot_storage, Modified: stable/11/sys/boot/mips/uboot/conf.c ============================================================================== --- stable/11/sys/boot/mips/uboot/conf.c Sun Feb 11 03:10:27 2018 (r329117) +++ stable/11/sys/boot/mips/uboot/conf.c Sun Feb 11 03:21:06 2018 (r329118) @@ -36,9 +36,6 @@ __FBSDID("$FreeBSD$"); #include "dev_net.h" #endif -/* Make sure we have an explicit reference to exit so libsa's panic pulls in the MD exit */ -void (*exitfn)(int) = exit; - struct devsw *devsw[] = { #if defined(LOADER_DISK_SUPPORT) || defined(LOADER_CD9660_SUPPORT) &uboot_storage, Modified: stable/11/sys/boot/powerpc/ofw/conf.c ============================================================================== --- stable/11/sys/boot/powerpc/ofw/conf.c Sun Feb 11 03:10:27 2018 (r329117) +++ stable/11/sys/boot/powerpc/ofw/conf.c Sun Feb 11 03:21:06 2018 (r329118) @@ -36,9 +36,6 @@ __FBSDID("$FreeBSD$"); #include "dev_net.h" #endif -/* Make sure we have an explicit reference to exit so libsa's panic pulls in the MD exit */ -void (*exitfn)(int) = exit; - /* * We could use linker sets for some or all of these, but * then we would have to control what ended up linked into Modified: stable/11/sys/boot/powerpc/uboot/conf.c ============================================================================== --- stable/11/sys/boot/powerpc/uboot/conf.c Sun Feb 11 03:10:27 2018 (r329117) +++ stable/11/sys/boot/powerpc/uboot/conf.c Sun Feb 11 03:21:06 2018 (r329118) @@ -35,9 +35,6 @@ __FBSDID("$FreeBSD$"); #include "dev_net.h" #endif -/* Make sure we have an explicit reference to exit so libsa's panic pulls in the MD exit */ -void (*exitfn)(int) = exit; - /* * We could use linker sets for some or all of these, but * then we would have to control what ended up linked into