Timeline



05/07/14:

16:32 Changeset in rtems [23b9d095]4.115 by Sebastian Huber <sebastian.huber@…>
smptests/smp07: Fix test output
16:30 Changeset in rtems [8fa3422]4.115 by Sebastian Huber <sebastian.huber@…>
smptests/smp05: Fix test name and output
16:27 Changeset in rtems [b97bc8bc]4.115 by Sebastian Huber <sebastian.huber@…>
tests: Add locked_printf_plugin() Add locked_vprintf(). Return an int just like printf(), etc.
15:53 Changeset in rtems [0960fee]4.115 by Sebastian Huber <sebastian.huber@…>
rtems: Fix ASR SMP support Initialize the ISR lock only once and destroy it properly.
12:55 Changeset in rtems [89f8eab5]4.115 by Sebastian Huber <sebastian.huber@…>
score: Workaround for GCC 4.9 for atomic ops The GCC 4.9 ships its own <stdatomic.h> which is not C++ compatible. The suggested solution was to include <atomic> in case C++ is used. This works at least with GCC 4.9. See also: http://gcc.gnu.org/bugzilla/show_bug.cgi?id=60932 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=60940
12:22 Changeset in rtems [6c36946f]4.115 by Sebastian Huber <sebastian.huber@…>
score: Fix SMP startup
07:23 Changeset in rtems [0034629]4.115 by Sebastian Huber <sebastian.huber@…>
bsps/arm: Declare return types
07:23 Changeset in rtems [43ef7068]4.115 by Sebastian Huber <sebastian.huber@…>
bsps: Fix BSP_INITIAL_EXTENSION
06:13 Changeset in rtems [07e7a7f8]4.115 by Sebastian Huber <sebastian.huber@…>
score: Documentation

05/06/14:

13:16 Changeset in rtems [58444f7]4.115 by Sebastian Huber <sebastian.huber@…>
score: Delete _SMP_Test_message_default_handler A default handler is not necessary. The test message sender must ensure that a handler is installed.
12:44 Changeset in rtems [c2ea0ea]4.115 by Sebastian Huber <sebastian.huber@…>
bsp/gen83xx: Add BSP_USB_EHCI_MPC83XX_HAS_ULPI
11:41 Changeset in rtems [7d1436e]4.115 by Sebastian Huber <sebastian.huber@…>
posix: Fix POSIX keys initialization Always initialize the freechain. This prevents a NULL pointer access in case no initial key value pairs are defined.

05/05/14:

19:55 Changeset in rtems [35a3af7a]4.115 by Sebastian Huber <sebastian.huber@…>
doc: Use @dfn for glossary terms
19:55 Changeset in rtems [29e6637e]4.115 by Sebastian Huber <sebastian.huber@…>
doc: Move SMP glossary to global glossary Add some terms.
14:47 Changeset in rtems [3324383c]4.115 by Joel Sherrill <joel.sherrill@…>
testsuites: Remove BSP_SMALL_MEMORY

05/04/14:

22:12 Changeset in rtems [1461b648]4.115 by Chris Johns <chrisj@…>
testsuite: Add a per BSP test check for tests not to build. Provide a file per BSP to list tests that do not build for a BSP. This change removes the BSP_SMALL_MEMORY hack from the code. That hack was a mistake. Provide configuration files for each BSP with tests that cannot build.
06:22 Changeset in rtems-source-builder [2a6acc7]4.104.114.95 by Chris Johns <chrisj@…>
config: Fix the host and build options for Canadian cross builds. The ARM on 4.9.0 with clang fails and needs an extra option and this is only valid building the build cross compiler. This change fxies the host and build flags so they only apply where needed.

05/02/14:

23:56 Changeset in rtems-source-builder [24473fa]4.104.114.95 by Chris Johns <chrisj@…>
config: Add gcc-4.9.0 configuration support.
13:47 Changeset in rtems [4d906bda]4.115 by Sebastian Huber <sebastian.huber@…>
score: Use atomic operations for SMP messages
13:33 Changeset in rtems [145becf]4.115 by Sebastian Huber <sebastian.huber@…>
score: Add SMP test message handler This handler can be used to test the inter-processor interrupt implementation.
12:28 Changeset in rtems [d2a94ab]4.115 by Daniel Hellstrom <daniel@…>
GRSPW: added clock cycles after GRSPW reset added clock cycles after GRSPW reset to make sure CTRL.START bit write actually have an effect. Wait until reset is completed.
10:48 Changeset in rtems-source-builder [3adcfbf]4.104.114.95 by Chris Johns <chrisj@…>
rtems/4.11: Fix _host_os for building on FreeBSD. It needs to be _build_os.
08:31 Changeset in rtems [38b59a6]4.115 by Sebastian Huber <sebastian.huber@…>
score: Implement forced thread migration The current implementation of task migration in RTEMS has some implications with respect to the interrupt latency. It is crucial to preserve the system invariant that a task can execute on at most one processor in the system at a time. This is accomplished with a boolean indicator in the task context. The processor architecture specific low-level task context switch code will mark that a task context is no longer executing and waits that the heir context stopped execution before it restores the heir context and resumes execution of the heir task. So there is one point in time in which a processor is without a task. This is essential to avoid cyclic dependencies in case multiple tasks migrate at once. Otherwise some supervising entity is necessary to prevent life-locks. Such a global supervisor would lead to scalability problems so this approach is not used. Currently the thread dispatch is performed with interrupts disabled. So in case the heir task is currently executing on another processor then this prolongs the time of disabled interrupts since one processor has to wait for another processor to make progress. It is difficult to avoid this issue with the interrupt latency since interrupts normally store the context of the interrupted task on its stack. In case a task is marked as not executing we must not use its task stack to store such an interrupt context. We cannot use the heir stack before it stopped execution on another processor. So if we enable interrupts during this transition we have to provide an alternative task independent stack for this time frame. This issue needs further investigation.
00:31 RTEMSMailingLists edited by Mayes
/* RTEMS Lists */ (diff)
00:29 RTEMSMailingLists edited by Mayes
/* RTEMS Lists */ (diff)

05/01/14:

05:38 Changeset in rtems-source-builder [43252be]4.104.114.95 by Chris Johns <chrisj@…>
config: Update to gdb-7.7 for a range of archs. Update lm32, m32c, m32r, m68k, microblaze, mips, powerpc, sh, sparc64 v850.

04/30/14:

19:53 Changeset in rtems-schedsim [d13fa72] by Joel Sherrill <joel.sherrill@…>
wrap_thread_dispatch.c: Add missed file
19:17 Changeset in rtems-schedsim [6d31eca] by Joel Sherrill <joel.sherrill@…>
schedsim/shell/shared/schedsim_disable_dispatch.c: New file missed earlier
18:26 Changeset in rtems-schedsim [30430be] by Joel Sherrill <joel.sherrill@…>
schedsim/shell/shared/Makefile.am: Missed in previous commit
18:24 Changeset in rtems-schedsim [187d93c] by Joel Sherrill <joel.sherrill@…>
Allow Scheduler Simulator to "defer dispatch" until controlled This is needed to prevent a semaphore delete from triggering a preempt and breaking the mutex is owner debug check. Technically we are running the same thread until the API call returns. But from an RTEMS internals perspective, it was preempted at the _Object_Put(). When understanding this patch, it is important to remember that the Scheduler Simulator is single threaded and faking out RTEMS. This is one place where RTEMS would have preempted to a thread and when we returned to rtems_semaphore_delete(), the _Object_Put() call would have been made by the correct thread.
14:30 GSoC edited by Youren Shen
/* Students' Summer of Code Tracking Table */ (diff)
13:13 Changeset in rtems-tools [a35f890]4.104.115 by Chris Johns <chrisj@…>
tools/gdb: Simulator inline fixes in the cgen code.
12:54 Changeset in rtems [bee71f8e]4.115 by Sebastian Huber <sebastian.huber@…>
score: Fix TLS size usage
08:13 Changeset in rtems [b0e83e12]4.115 by Ralf Kirchner <ralf.kirchner@…>
libchip: Add asserts to dwmac driver
08:07 Changeset in rtems [64bc102]4.115 by Ralf Kirchner <ralf.kirchner@…>
libchip: Correct netstats message for dwmac driver
08:06 Changeset in rtems [bc9a71b]4.115 by Ralf Kirchner <ralf.kirchner@…>
bsp/altera-cyclone-v: Move mbufs and network clusters to uncached RAM
08:06 Changeset in rtems [ff13e0b]4.115 by Ralf Kirchner <ralf.kirchner@…>
bsp/altera-cyclone-v: Increase size of nocache region and nocache heap Increase size of nocache heap in order to be able to move mbufs and clusters of the network driver to uncached RAM
06:22 Changeset in rtems-tools [9e78f60]4.104.115 by Chris Johns <chrisj@…>
tools/microblaze: Fix the building of libgcc.
04:51 TBR/BSP/Beagleboard edited by Beng
correct 'building uboot' hierarchy level (diff)
02:34 GSoC edited by Hesham
/* Students' Summer of Code Tracking Table */ (diff)
02:29 Developer/OpenProjects edited by Hesham
/* Board Support Package (BSP) */ (diff)
02:26 Projects/GSoC/OpenRISC edited by Hesham
(diff)

04/29/14:

14:57 Changeset in rtems [0832ca7]4.115 by Ralf Kirchner <ralf.kirchner@…>
doc: Extend documentation for unlimited objects Mark POSIX Keys and POSIX Key Value Pairs as supported. Add list of unsupported object classes. Add hint to unified work areas. Add example.
14:09 Changeset in rtems [e239760]4.115 by Sebastian Huber <sebastian.huber@…>
score: SMP_FATAL_SCHEDULER_WITHOUT_PROCESSORS Avoid the SMP_FATAL_SCHEDULER_WITHOUT_PROCESSORS fatal error and make it a run-time error in rtems_scheduler_ident() and _Scheduler_Get_by_id().
11:16 Changeset in rtems [dabf423]4.115 by Sebastian Huber <sebastian.huber@…>
score: Typo
07:39 Changeset in rtems [a16af0b3]4.115 by Sebastian Huber <sebastian.huber@…>
bsps/mips: Delete unused files The MIPS port defines CPU_SIMPLE_VECTORED_INTERRUPTS to FALSE.
06:53 Changeset in rtems [0b344f34]4.115 by Sebastian Huber <sebastian.huber@…>
bsps/m32r: Fix bsp_specs
06:43 Changeset in rtems [ef26454]4.115 by Sebastian Huber <sebastian.huber@…>
bsps/bfin: Fix bsp_specs
05:48 Changeset in rtems [99be750]4.115 by Sebastian Huber <sebastian.huber@…>
sapi: Report profiling only if enabled for tests

04/28/14:

23:18 Changeset in rtems-tools [4efea40]4.104.115 by Chris Johns <chrisj@…>
bsp: Clean up the BBxM BSP configuration.
23:10 Changeset in rtems-tools [bd0fbd6]4.104.115 by Chris Johns <chrisj@…>
bsp: Break on the terminate halt to get fatal handlers run.
14:55 Changeset in rtems [6741427a]4.115 by Sebastian Huber <sebastian.huber@…>
bsp/h8sim: Fix linker command file
08:51 Changeset in rtems-source-builder [527515c]4.104.114.95 by Chris Johns <chrisj@…>
sb:Use cc and c++ on FreeBSD 10 and higher.
07:56 Changeset in rtems [a336d51]4.115 by Sebastian Huber <sebastian.huber@…>
score: Avoid copy and paste
06:53 Changeset in rtems-source-builder [491d6b9]4.104.114.95 by Chris Johns <chrisj@…>
4.11/rtems: Sparc port change to gdb-7.7.
02:18 Changeset in rtems-source-builder [6fe63b3]4.104.114.95 by Chris Johns <chrisj@…>
config: Remove the POSIX thread model patch. Switch back the RTEMS thread model now it is fixed for SMP. This also works for some tests that where failing.
00:44 Projects/GSoC/OpenRISC created by Hesham
Created page with " [[TOC(...)]] Mentors: Ben Gras, Chris Johns, Christian Svensson Students: Hesham ALMatary Status: The project has just started. It's currently in design ..."

04/27/14:

17:35 Changeset in rtems-tools [803b63d]4.104.115 by Ben Gras <beng@…>
add --filter to specify the set of selected tests. . parameter is a glob . default is *.exe as it was . it is a convenient way to select a particular test to run over and over again while debugging it, without laboriously manipulating the .exe's that are present (i.e. moving/deleting them)
08:11 Changeset in rtems [eae0863]4.115 by Chris Johns <chrisj@…>
rtems: Fix sp2038 test. Avoid using newlib's gmtime_r call which fails with a max signed int. Add an RTEMS specific version for 1/1/1988 to 31/12/2100. Update sp2038 to test every day from 1/1/1988 to 31/12/2100. Only days need be tested as the code splits the seconds based on days.

04/26/14:

23:32 Changeset in rtems [0c5beb8e]4.115 by Chris Johns <chrisj@…>
rtems: Account for the network semaphore.
14:52 TBR/BSP/Beagleboard edited by Beng
(diff)
13:09 Changeset in rtems [03b7789]4.115 by Sebastian Huber <sebastian.huber@…>
score: Statically initialize _ISR_Vector_table
02:15 GSoC edited by André Marques
/* Students' Summer of Code Tracking Table */ (diff)

04/25/14:

17:56 Changeset in rtems [e306f3df]4.115 by Jennifer Averett <jennifer.averett@…>
sapi: Fix condef.h compile error for disabled network configuration. Added define for CONFIGURE_SEMAPHORES_FOR_NFS when networking disabled.
07:30 Changeset in rtems [5d2ae6e2]4.115 by Chris Johns <chrisj@…>
libfs/rfs: Fix the fstime failures for the RFS file system.
06:14 Changeset in rtems [c9a0a10]4.115 by Chris Johns <chrisj@…>
rtems: Account for file system semaphores. Add support to account for the semaphores used by the file systems.
05:46 TBR/BSP/Beagleboard edited by ChrisJohns
/* Ben and Chris's Big Beagleboard Adventure */ (diff)
05:30 TBR/BSP/Beagleboard edited by ChrisJohns
Add how to track rtems.master and Ben's WIP (diff)
04:24 Ticket #2178 (Classic API semaphore counts are wrong in confdefs.h) created by Chris Johns
The beagleboardmx BSP fails fsdosfsformat01 while it passes with the …

04/24/14:

15:53 TBR/BSP/Beagleboard edited by Beng
added test report (diff)
13:21 Changeset in rtems [f412e12]4.115 by Joel Sherrill <joel.sherrill@…>
mcf52235/configure.ac: Delete junk line
07:52 Changeset in rtems-tools [4e8f984]4.104.115 by Chris Johns <chrisj@…>
bsp: Add Beagleboard xM support.
02:39 TBR/BSP/Beagleboard edited by Beng
(diff)

04/23/14:

23:38 Changeset in rtems [053abcda]4.115 by Joel Sherrill <joel.sherrill@…>
multiple BSPs: Remove BSP_SMALL_MEMORY
23:20 TBR/BSP/Beagleboard edited by Beng
added info about rtems tester config and first test report (diff)
20:08 Changeset in rtems [82d137ae]4.115 by Jennifer Averett <jennifer.averett@…>
capture01: New non-interactive test for capture engine.
04:31 Changeset in rtems [b74c9cf]4.115 by Chris Johns <chrisj@…>
bootstrap: Sort the contents of the prinstall.am files. Sorting removed the variations across different host operating systems and file systems.
02:38 GSoC edited by Hesham
/* Students' Summer of Code Tracking Table */ (diff)
Note: See TracTimeline for information about the timeline view.