<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/rss.xsl.xml"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
    <title>Changes in exec.c</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>8b9bc821 - stand: Automated cleanup of cdefs and other formatting</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/stand/efi/loader/arch/arm/exec.c#8b9bc821</link>
        <description>stand: Automated cleanup of cdefs and other formattingApply the following automated changes to try to eliminateno-longer-needed sys/cdefs.h includes as well as now-emptyblank lines in a row.Remove /^#if.*\n#endif.*\n#include\s+&lt;sys/cdefs.h&gt;.*\n/Remove /\n+#include\s+&lt;sys/cdefs.h&gt;.*\n+#if.*\n#endif.*\n+/Remove /\n+#if.*\n#endif.*\n+/Remove /^#if.*\n#endif.*\n/Remove /\n+#include\s+&lt;sys/cdefs.h&gt;\n#include\s+&lt;sys/types.h&gt;/Remove /\n+#include\s+&lt;sys/cdefs.h&gt;\n#include\s+&lt;sys/param.h&gt;/Remove /\n+#include\s+&lt;sys/cdefs.h&gt;\n#include\s+&lt;sys/capsicum.h&gt;/Sponsored by:		Netflix(cherry picked from commit 7c43148a974877188a930e4078a164f83da8e652)

            List of files:
            /freebsd-14.2/stand/efi/loader/arch/arm/exec.c</description>
        <pubDate>Fri, 24 Nov 2023 20:12:57 +0000</pubDate>
        <dc:creator>Warner Losh &lt;imp@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>1d386b48 - Remove $FreeBSD$: one-line .c pattern</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/stand/efi/loader/arch/arm/exec.c#1d386b48</link>
        <description>Remove $FreeBSD$: one-line .c patternRemove /^[\s*]*__FBSDID\(&quot;\$FreeBSD\$&quot;\);?\s*\n/

            List of files:
            /freebsd-14.2/stand/efi/loader/arch/arm/exec.c</description>
        <pubDate>Wed, 16 Aug 2023 17:54:42 +0000</pubDate>
        <dc:creator>Warner Losh &lt;imp@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>335615c4 - stand: update prototypes for md_load and md_load64</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/stand/efi/loader/arch/arm/exec.c#335615c4</link>
        <description>stand: update prototypes for md_load and md_load64These are declared as extern in a number of files (some with the wrongreturn type). Centralize this in modinfo.h and remove a few extra straydeclarations as well that are no longer used. No functional change.Note: I&apos;ve not tried to cope with the bi_load() functions which are thesame logical thing. These will be handled separately.Sponsored by:		Netflix

            List of files:
            /freebsd-14.2/stand/efi/loader/arch/arm/exec.c</description>
        <pubDate>Mon, 05 Dec 2022 17:40:15 +0000</pubDate>
        <dc:creator>Warner Losh &lt;imp@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>ed87efbe - stand/efi: allow not exiting boot services</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/stand/efi/loader/arch/arm/exec.c#ed87efbe</link>
        <description>stand/efi: allow not exiting boot servicesXen requires that UEFI BootServices are enabled in order to boot, sointroduce a new parameter to bi_load in order to select whether BSshould be exited.No functional change introduced in this patch, as all current users ofbi_load request BS to be exited. Further changes will make use of thisfunctionality.Note the memory map is still appended to the kernel metadata, evenwhen it could be modified by further calls to the Boot Services, as itwill be used to detect if the kernel has been booted from UEFI.Sponsored by:		Citrix Systems R&amp;DReviewed by:		tsoome, impDifferential revision:	https://reviews.freebsd.org/D28495

            List of files:
            /freebsd-14.2/stand/efi/loader/arch/arm/exec.c</description>
        <pubDate>Fri, 05 Feb 2021 10:15:19 +0000</pubDate>
        <dc:creator>Roger Pau Monn&#233; &lt;royger@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>4f8212c8 - loader: Avoid -Wpointer-to-int cast warnings for Arm and RISC-V</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/stand/efi/loader/arch/arm/exec.c#4f8212c8</link>
        <description>loader: Avoid -Wpointer-to-int cast warnings for Arm and RISC-VOn RISC-V, Clang warns with:    cast to smaller integer type &apos;unsigned int&apos; from &apos;void (*)(void *)&apos;Instead, use %p as the standard format specifier for printing pointers.Whilst Arm&apos;s pointer size is the same as unsigned, it&apos;s still cleaner touse the right thing there too.Reviewed by:	brooks (mentor), emasteApproved by:	brooks (mentor), emasteDifferential Revision:	https://reviews.freebsd.org/D25718

            List of files:
            /freebsd-14.2/stand/efi/loader/arch/arm/exec.c</description>
        <pubDate>Sun, 26 Jul 2020 18:17:36 +0000</pubDate>
        <dc:creator>Jessica Clarke &lt;jrtc27@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>ea7796a9 - EFI: don&apos;t call printf after ExitBootServices, since it uses Boot Services</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/stand/efi/loader/arch/arm/exec.c#ea7796a9</link>
        <description>EFI: don&apos;t call printf after ExitBootServices, since it uses Boot ServicesExitBootServices terminates all boot services including console access.Attempting to call printf afterwards can result in a crash, depending on theimplementation.Move any printf statements to before we call bi_load, and remove any thatdepend on calling bi_load first.Reviewed by:	imp, tsoomeDifferential Revision:	https://reviews.freebsd.org/D19374

            List of files:
            /freebsd-14.2/stand/efi/loader/arch/arm/exec.c</description>
        <pubDate>Sat, 02 Mar 2019 04:02:11 +0000</pubDate>
        <dc:creator>Rebecca Cran &lt;bcran@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>56e53cb8 - Prefer uintXX_t to u_intXX_t</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/stand/efi/loader/arch/arm/exec.c#56e53cb8</link>
        <description>Prefer uintXX_t to u_intXX_tA foolish consistency is the hobgoblin of little minds, adored bylittle statesmen and philosophers and divines. With consistency agreat soul has simply nothing to do. -- Ralph Waldo Emerson

            List of files:
            /freebsd-14.2/stand/efi/loader/arch/arm/exec.c</description>
        <pubDate>Tue, 13 Mar 2018 16:33:00 +0000</pubDate>
        <dc:creator>Warner Losh &lt;imp@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>ca987d46 - Move sys/boot to stand. Fix all references to new location</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/stand/efi/loader/arch/arm/exec.c#ca987d46</link>
        <description>Move sys/boot to stand. Fix all references to new locationSponsored by:	Netflix

            List of files:
            /freebsd-14.2/stand/efi/loader/arch/arm/exec.c</description>
        <pubDate>Tue, 14 Nov 2017 23:02:19 +0000</pubDate>
        <dc:creator>Warner Losh &lt;imp@FreeBSD.org&gt;</dc:creator>
    </item>
</channel>
</rss>
