<?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 Makefile</title>
    <link>http://nxr.netbsd.org/rss/src/sys/arch/m68k/include/Makefile</link>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2005</copyright>
    <generator>Java</generator>
    
<item>
    <title>Create a new header lwp_private.h to contain _lwp_getprivate_fast,<br/>_lwp_gettcb_fast, _lwp_settcb and remove them from mcontext.h, so that:<br/>1. we don't need special hacks to hide them<br/>2. we can include &lt;lwp.h&gt; where needed to get the necessary prototypes<br/>   without redefining them locally.</title>
    <description>/src/sys/arch/m68k/include/Makefile - 1.38</description>
    <pubDate>Sat Nov 30 01:04:11 UTC 2024</pubDate>
    <dc:creator>christos</dc:creator>
</item>

<item>
    <title>Undo previous lwp.h change.</title>
    <description>/src/sys/arch/m68k/include/Makefile - 1.37</description>
    <pubDate>Mon Nov 04 15:45:24 UTC 2024</pubDate>
    <dc:creator>christos</dc:creator>
</item>

<item>
    <title>Split __lwp_getprivate_fast and __lwp_*tcb from mcontext.h into a separate<br/>lwp.h file.</title>
    <description>/src/sys/arch/m68k/include/Makefile - 1.36</description>
    <pubDate>Sun Nov 03 22:24:22 UTC 2024</pubDate>
    <dc:creator>christos</dc:creator>
</item>

<item>
    <title>branches:  1.35.2;<br/>Add a common m68k interrupt dispatch implementation.</title>
    <description>/src/sys/arch/m68k/include/Makefile - 1.35</description>
    <pubDate>Sun Jan 14 22:32:32 UTC 2024</pubDate>
    <dc:creator>thorpej</dc:creator>
</item>

<item>
    <title>Add a header file for 68030-specific MMU definitions, specifically the<br/>Transparent Translation registers, that do not exist on the 68851.  A<br/>big comment at the top of the file describes the differences between<br/>the 68851 and the 68030's MMU.</title>
    <description>/src/sys/arch/m68k/include/Makefile - 1.34</description>
    <pubDate>Wed Dec 27 19:22:10 UTC 2023</pubDate>
    <dc:creator>thorpej</dc:creator>
</item>

<item>
    <title>Add new headers that describe the 68851 (and 68030) MMU and<br/>68040 (and 68060) MMU structures using names that more closely<br/>align with Motorola's documentation.<br/><br/>The definitions here automagically adapt to 4K or 8K pages, based<br/>on the value of PGSHIFT, which must be a compile-time constant.</title>
    <description>/src/sys/arch/m68k/include/Makefile - 1.33</description>
    <pubDate>Wed Dec 27 02:40:31 UTC 2023</pubDate>
    <dc:creator>thorpej</dc:creator>
</item>

<item>
    <title>Add MAX/MIN PAGE_SIZE and PAGE_SHIFT definitions of m68k for jemalloc(3).<br/><br/>Background:<br/>- All m68k ports have fixed PAGE_SIZE value in their kernels,<br/>  but each port uses different PAGE_SIZE value (4096 or 8192)<br/>  due to historical reasons.<br/>- Currently module(7) binaries are built per each port so<br/>  all m68k kernel sources don't support run-time variable PAGE_SIZE.<br/>- MI &lt;uvm/uvm_param.h&gt; assumes that the port supports a variable<br/>  PAGE_SIZE on module(7) builds if both MAX_PAGE_SIZE and MIN_PAGE_SIZE<br/>  are defined and they have different values.<br/>- On the other hand, jemalloc(3) checks MAX_PAGE_SHIFT in<br/>  src/external/bsd/jemalloc/include/jemalloc/internal/jemalloc_internal_defs.h<br/>  for internal optimization.<br/>- m68k ports share userland binaries (especially pkgsrc binaries)<br/>  among all ports, so we need to define MAX_PAGE_SHIFT as 13 to<br/>  support m68k ports where PAGE_SIZE==8192.<br/>  (though this would affect only if static binaries built on<br/>   4k page hosts are executed on 8k page hosts)<br/><br/>To solve these inconsistency on PAGE_SIZE definitions,<br/>we should have an independent PAGE_SIZE related definitions<br/>for userland, but it requires major reorganization.<br/>For now (especially for netbsd-9) we define MAX/MIN PAGE_SIZE and<br/>PAGE_SHIFT values in &lt;m68k/vmparam.h&gt; only in !defined(_KERNEL) case.<br/><br/>Discussed on source-changes-d@ and tech-kern@ with christos@ and thorpej@:<br/> https://mail-index.netbsd.org/source-changes-d/2020/01/thread1.html#012035<br/> https://mail-index.netbsd.org/tech-kern/2020/01/thread1.html#025954<br/><br/>Should be pulled up to netbsd-9.</title>
    <description>/src/sys/arch/m68k/include/Makefile - 1.32</description>
    <pubDate>Sat Feb 01 19:41:48 UTC 2020</pubDate>
    <dc:creator>tsutsui</dc:creator>
</item>

<item>
    <title>branches:  1.31.4;  1.31.6;<br/>- Cleanup for dynamic sysctl:<br/>  - Remove unused *_NAMES macros for sysctl.<br/>  - Remove unused *_MAXID for sysctls.<br/>- Move CTL_MACHDEP sysctl definitions for m68k into m68k/include/cpu.h and<br/>  use them on all m68k machines.</title>
    <description>/src/sys/arch/m68k/include/Makefile - 1.31</description>
    <pubDate>Wed Aug 22 01:05:22 UTC 2018</pubDate>
    <dc:creator>msaitoh</dc:creator>
</item>

<item>
    <title>Remove the kernel PMC code. Sent yesterday on tech-kern@.<br/><br/>This change:<br/><br/> * Removes "options PERFCTRS", the associated includes, and the associated<br/>   ifdefs. In doing so, it removes several XXXSMPs in the MI code, which is<br/>   good.<br/><br/> * Removes the PMC code of ARM XSCALE.<br/><br/> * Removes all the pmc.h files. They were all empty, except for ARM XSCALE.<br/><br/> * Reorders the x86 PMC code not to rely on the legacy pmc.h file. The<br/>   definitions are put in sysarch.h.<br/><br/> * Removes the kern/sys_pmc.c file, and along with it, the sys_pmc_control<br/>   and sys_pmc_get_info syscalls. They are marked as OBSOL in kern,<br/>   netbsd32 and rump.<br/><br/> * Removes the pmc_evid_t and pmc_ctr_t types.<br/><br/> * Removes all the associated man pages. The sets are marked as obsolete.</title>
    <description>/src/sys/arch/m68k/include/Makefile - 1.30</description>
    <pubDate>Thu Jul 12 10:46:45 UTC 2018</pubDate>
    <dc:creator>maxv</dc:creator>
</item>

<item>
    <title>branches:  1.29.16;  1.29.18;<br/>fenv for m68k</title>
    <description>/src/sys/arch/m68k/include/Makefile - 1.29</description>
    <pubDate>Thu Dec 24 14:12:39 UTC 2015</pubDate>
    <dc:creator>christos</dc:creator>
</item>

<item>
    <title>branches:  1.28.8;<br/>Export fpreg.h for libc</title>
    <description>/src/sys/arch/m68k/include/Makefile - 1.28</description>
    <pubDate>Wed Jul 17 05:42:02 UTC 2013</pubDate>
    <dc:creator>matt</dc:creator>
</item>

<item>
    <title>branches:  1.27.2;  1.27.12;  1.27.16;<br/>Retire varargs.h support. Move machine/stdarg.h logic into MI<br/>sys/stdarg.h and expect compiler to provide proper builtins, defaulting<br/>to the GCC interface. lint still has a special fallback.<br/>Reduce abuse of _BSD_VA_LIST_ by defining __va_list by default and<br/>derive va_list as required by standards.</title>
    <description>/src/sys/arch/m68k/include/Makefile - 1.27</description>
    <pubDate>Sun Jul 17 20:54:43 UTC 2011</pubDate>
    <dc:creator>joerg</dc:creator>
</item>

<item>
    <title>Merge newlock2 to head.</title>
    <description>/src/sys/arch/m68k/include/Makefile - 1.26</description>
    <pubDate>Fri Feb 09 21:55:05 UTC 2007</pubDate>
    <dc:creator>ad</dc:creator>
</item>

<item>
    <title>branches:  1.25.4;<br/>don't install &lt;machine/db_machdep.h&gt;, this is kernel only</title>
    <description>/src/sys/arch/m68k/include/Makefile - 1.25</description>
    <pubDate>Wed Jul 26 19:54:57 UTC 2006</pubDate>
    <dc:creator>drochner</dc:creator>
</item>

<item>
    <title>Populate /usr/include/m68k with both pmap_motorola.h and pte_motorola.h.<br/>/usr/include/m68k/pmap.h expects to find pmap_motorola.h, and<br/>/usr/include/machine/pte.h wants pte_motorola.h.</title>
    <description>/src/sys/arch/m68k/include/Makefile - 1.24</description>
    <pubDate>Thu Apr 13 19:51:09 UTC 2006</pubDate>
    <dc:creator>oster</dc:creator>
</item>

<item>
    <title>branches:  1.23.4;  1.23.6;  1.23.8;  1.23.10;  1.23.12;<br/>merge ktrace-lwp.</title>
    <description>/src/sys/arch/m68k/include/Makefile - 1.23</description>
    <pubDate>Sun Dec 11 00:17:53 UTC 2005</pubDate>
    <dc:creator>christos</dc:creator>
</item>

<item>
    <title>branches:  1.22.12;<br/>Factor out W{CHAR,INT}_{MAX,MIN} into their own header file.</title>
    <description>/src/sys/arch/m68k/include/Makefile - 1.22</description>
    <pubDate>Sat May 08 21:51:49 UTC 2004</pubDate>
    <dc:creator>kleink</dc:creator>
</item>

<item>
    <title>SA_SIGINFO support for m68k</title>
    <description>/src/sys/arch/m68k/include/Makefile - 1.21</description>
    <pubDate>Mon Sep 22 14:18:36 UTC 2003</pubDate>
    <dc:creator>cl</dc:creator>
</item>

<item>
    <title>branches:  1.20.2;<br/>Merge the nathanw_sa branch.</title>
    <description>/src/sys/arch/m68k/include/Makefile - 1.20</description>
    <pubDate>Fri Jan 17 23:18:28 UTC 2003</pubDate>
    <dc:creator>thorpej</dc:creator>
</item>

<item>
    <title>Remove KDIR=, since SYS_INCLUDE=symlinks and KDIR are not supported any more.</title>
    <description>/src/sys/arch/m68k/include/Makefile - 1.19</description>
    <pubDate>Tue Nov 26 23:30:17 UTC 2002</pubDate>
    <dc:creator>lukem</dc:creator>
</item>
</channel></rss>

