Timeline



11/28/14:

12:58 Ticket #1367 (Malloc statistics wrong in R4.10) closed by Sebastian Huber
fixed: It is fixed for 4.11: [01557b0c6e723627427195bb33bdfe0b125c70b1/rtems] [2c3c657625f5129e3062058a2c83f0020fd6bab5/rtems] [d006b46df31f6e5f28237fe40eafb135e684b739/rtems] No plans to fix this for 4.10.
10:53 Changeset in rtems [d006b46d]4.115 by Sebastian Huber <sebastian.huber@…>
score: Add heap statistics Add lifetime bytes allocated and freed since they were present in the malloc statistics. Add number of failed allocations.
10:13 Ticket #1485 (Locks while accessing sync_active field in bdbuf library) closed by Sebastian Huber <sebastian.huber@…>
fixed: In 3b4ca3ab0f99d15794a3eee60b5735f834fd898c/rtems: […]

11/27/14:

15:30 Changeset in rtems [e22af78]4.115 by Joel Sherrill <joel.sherrill@…>
sync.c: Add asserts to document and check assumptions
15:29 Changeset in rtems [8dbbea6b]4.115 by Joel Sherrill <joel.sherrill@…>
msdos_file.c: Reverse return codes per Gedare
15:28 Changeset in rtems [a8b071db]4.115 by Joel Sherrill <joel.sherrill@…>
rtems-bin2c.c: Fix free() of altered pointer
13:41 Changeset in rtems [3b4ca3a]4.115 by Sebastian Huber <sebastian.huber@…>
bdbuf: Fix race condition with sync active flag Bug report by Oleg Kravtsov: In rtems_bdbuf_swapout_processing() function there is the following lines: if (bdbuf_cache.sync_active && !transfered_buffers) { rtems_id sync_requester; rtems_bdbuf_lock_cache (); ... } Here access to bdbuf_cache.sync_active is not protected with anything. Imagine the following test case: 1. Task1 releases buffer(s) with bdbuf_release_modified() calls; 2. After a while swapout task starts and flushes all buffers; 3. In the end of that swapout flush we are before that part of code, and assume there is task switching (just before "if (bdbuf_cache.sync_active && !transfered_buffers)"); 4. Some other task (with higher priority) does bdbuf_release_modified and rtems_bdbuf_syncdev(). This task successfully gets both locks sync and pool (in rtems_bdbuf_syncdev() function), sets sync_active to true and starts waiting for RTEMS_BDBUF_TRANSFER_SYNC event with only sync lock got. 5. Task switching happens again and we are again before "if (bdbuf_cache.sync_active && !transfered_buffers)". As the result we check sync_active and we come inside that "if" statement. 6. The result is that we send RTEMS_BDBUF_TRANSFER_SYNC event! Though ALL modified messages of that task are not flushed yet! close #1485
13:41 Changeset in rtems [f0f2a3d]4.10 by Sebastian Huber <sebastian.huber@…>
bdbuf: Fix race condition with sync active flag Bug report by Oleg Kravtsov: In rtems_bdbuf_swapout_processing() function there is the following lines: if (bdbuf_cache.sync_active && !transfered_buffers) { rtems_id sync_requester; rtems_bdbuf_lock_cache (); ... } Here access to bdbuf_cache.sync_active is not protected with anything. Imagine the following test case: 1. Task1 releases buffer(s) with bdbuf_release_modified() calls; 2. After a while swapout task starts and flushes all buffers; 3. In the end of that swapout flush we are before that part of code, and assume there is task switching (just before "if (bdbuf_cache.sync_active && !transfered_buffers)"); 4. Some other task (with higher priority) does bdbuf_release_modified and rtems_bdbuf_syncdev(). This task successfully gets both locks sync and pool (in rtems_bdbuf_syncdev() function), sets sync_active to true and starts waiting for RTEMS_BDBUF_TRANSFER_SYNC event with only sync lock got. 5. Task switching happens again and we are again before "if (bdbuf_cache.sync_active && !transfered_buffers)". As the result we check sync_active and we come inside that "if" statement. 6. The result is that we send RTEMS_BDBUF_TRANSFER_SYNC event! Though ALL modified messages of that task are not flushed yet! close #1485
13:19 Ticket #1486 (Reset of all hold timers when sync_active in ...) closed by Sebastian Huber
fixed: Fixed with [8aa608df3241d07de26d8700ce762476a09a7706/rtems].
13:04 Ticket #2062 (c/src/lib/libbsp/powerpc/qoriq/include/hwreg_vals.h is empty) closed by Sebastian Huber <sebastian.huber@…>
fixed: In 3a8566b7966c6da0849792c3959900d9de9cb824/rtems: […]
13:03 Changeset in rtems [3a8566b7]4.115 by Sebastian Huber <sebastian.huber@…>
bsp/qoriq: Delete empty header file close #2062
12:54 Ticket #1817 (Variable _Thread_Heir is not protected against interrupts) closed by Sebastian Huber
wontfix
12:54 Ticket #1817 (Variable _Thread_Heir is not protected against interrupts) reopened by Sebastian Huber
12:53 Ticket #1817 (Variable _Thread_Heir is not protected against interrupts) closed by Sebastian Huber
fixed: I reviewed rtems_task_mode(). There is no problem since a call to a global function (_ISR_Set_level()) is between the executing->is_preemptible update and the call to _Thread_Is_heir().
12:39 Ticket #2030 (Export more shell functions) closed by Sebastian Huber <sebastian.huber@…>
fixed: In 43b09a9865760ec7ae7fcd0ef75842f3a201d5a7/rtems: […]
12:37 Changeset in rtems [43b09a98]4.115 by Sebastian Huber <sebastian.huber@…>
shell: Make mv, cp and rm usable for applications close #2030
12:25 Changeset in rtems [2c3c657]4.115 by Sebastian Huber <sebastian.huber@…>
score: Return heap stats via _Heap_Get_information Print out heap statistics via the MALLOC and WKSPACE shell commands.
11:05 Changeset in rtems [2c5980f]5 by Geert Uytterhoeven <geert+renesas@…>
jffs2: Drop bogus if in comment Signed-off-by: Geert Uytterhoeven <geert+renesas@…> Cc: David Woodhouse <dwmw2@…> Cc: linux-mtd@… Signed-off-by: Brian Norris <computersforpeace@…>
10:44 Changeset in rtems [01557b0]4.115 by Sebastian Huber <sebastian.huber@…>
libcsupport: Delete malloc statistics Use the heap handler statistics instead. Add heap walk option to MALLOC shell command. close #1367
10:01 Ticket #1558 (spi-sd-card: debug output not updated with new disk device interface) closed by Pavel Pisa <ppisa4lists@…>
fixed: In 7d015db0c67dbaf64abdeaad317f5344ad2afa4c/rtems: […]
07:45 Changeset in rtems [0ff1c29]4.115 by Sebastian Huber <sebastian.huber@…>
smptests/smpmrsp01: Use busy waits Use busy waits instead of sleeps to avoid unnecessary switches to the idle thread.
06:39 Changeset in rtems [2d5c486]4.115 by Nick Withers <nick.withers@…>
Use fixed-width C99 types for PowerPC in_be16() and co. Also use the const qualifier on the address pointer's target in in_*() Closes #2128

11/26/14:

10:51 Changeset in rtems [5bd822a7]4.115 by Sebastian Huber <sebastian.huber@…>
smp: Fix scheduler helping protocol Ensure that scheduler nodes in the SCHEDULER_HELP_ACTIVE_OWNER or SCHEDULER_HELP_ACTIVE_RIVAL helping state are always SCHEDULER_SMP_NODE_READY or SCHEDULER_SMP_NODE_SCHEDULED to ensure the MrsP protocol properties.
09:00 Changeset in rtems [79569ae]4.115 by Sebastian Huber <sebastian.huber@…>
smp: Fix scheduler helping protocol assertions
08:57 Changeset in rtems [fdd1e20]4.115 by Sebastian Huber <sebastian.huber@…>
shell: Include missing header
08:53 Changeset in rtems [90b0e28]4.115 by Sebastian Huber <sebastian.huber@…>
i2c: Do not close file descriptor 0 if open fails
07:24 Changeset in rtems [d6f0ca64]4.115 by Sebastian Huber <sebastian.huber@…>
i2c: Avoid undefined right shift operation

11/25/14:

21:55 Changeset in rtems [b164303]4.115 by Josh Oguin <josh.oguin@…>
tools/build/*.c: Clean up issues reported by CodeSonar? This code is built without warnings and ignored by Coverity Scan. CodeSonar? found a wide range of issues including buffer overruns, buffer underruns, questionable type conversions, leaks, etc. This set of patches addresses all reported issues.
18:50 Changeset in rtems [0a0ded70]4.115 by Jennifer Averett <jennifer.averett@…>
capture: Resolve failure path memory leak.
15:47 Changeset in rtems [038faca1]4.115 by Sebastian Huber <sebastian.huber@…>
rtems: Add rtems_cache_coherent_allocate() Add rtems_cache_coherent_free() and rtems_cache_coherent_add_area().
15:12 Changeset in rtems [e681762]4.115 by Sebastian Huber <sebastian.huber@…>
bdbuf: Use rtems_cache_aligned_malloc()
14:42 Changeset in rtems [46689a1e]4.115 by Sebastian Huber <sebastian.huber@…>
arm: Use CPU_TIMESTAMP_USE_STRUCT_TIMESPEC Converting 64-bit nanoseconds values into the common struct timeval or struct timespec formats requires a 64-bit division to get the seconds value. Performance analysis of high network loads revealed that this is too costly on ARM.
14:20 Changeset in rtems-libbsd [dec6b67]4.1155-freebsd-126-freebsd-12freebsd-9.3 by Sebastian Huber <sebastian.huber@…>
if_cgem: Enable hardware checksum assist
13:58 Changeset in rtems [7e5c9b89]4.115 by Sebastian Huber <sebastian.huber@…>
rtems: Move rtems_cache_aligned_malloc() Make sure also the size is cache aligned since otherwise we may have some overlap with the next allocation block. A cache invalidate on this area would be fatal.
13:37 Changeset in rtems-libbsd [dae9f66]4.1155-freebsd-126-freebsd-12freebsd-9.3 by Sebastian Huber <sebastian.huber@…>
zy7_slcr: Import from FreeBSD
12:14 Changeset in rtems-libbsd [946611a]4.1155-freebsd-126-freebsd-12freebsd-9.3 by Sebastian Huber <sebastian.huber@…>
e1000phy: Import from FreeBSD
11:54 Changeset in rtems-libbsd [6a73f64]4.1155-freebsd-126-freebsd-12freebsd-9.3 by Sebastian Huber <sebastian.huber@…>
if_cgem: Use rtems_bsd_get_mac_address()
11:54 Changeset in rtems-libbsd [911f517]4.1155-freebsd-126-freebsd-12freebsd-9.3 by Sebastian Huber <sebastian.huber@…>
if_cgem: Use explicit cache operations
11:53 Changeset in rtems-libbsd [cd179c4]4.1155-freebsd-126-freebsd-12freebsd-9.3 by Sebastian Huber <sebastian.huber@…>
if_cgem: Add volatile to rx/tx desc rings
11:53 Changeset in rtems-libbsd [8c3823e]4.1155-freebsd-126-freebsd-12freebsd-9.3 by Sebastian Huber <sebastian.huber@…>
if_cgem: Silence warning
11:51 Changeset in rtems-libbsd [eebe576]4.1155-freebsd-126-freebsd-12freebsd-9.3 by Sebastian Huber <sebastian.huber@…>
ZONE(9): Honor cache alignment
11:50 Changeset in rtems-libbsd [fb683f7]4.1155-freebsd-126-freebsd-12freebsd-9.3 by Sebastian Huber <sebastian.huber@…>
BUS_DMA(9): Support BUS_DMA_COHERENT
07:40 Changeset in rtems [cbc433c7]4.115 by Sebastian Huber <sebastian.huber@…>
bsps/arm: Add .nocache section This section can be use to provide a cache coherent memory area via rtems_cache_coherent_add_area().
07:39 Changeset in rtems [7981a88]4.115 by Sebastian Huber <sebastian.huber@…>
sptest/spcache01: New test cases
07:36 Changeset in rtems [42fe0d3]4.115 by Sebastian Huber <sebastian.huber@…>
bsps/arm: L2C 310 avoid infinite loops
06:58 GSoC edited by Chris Johns
(diff)
06:10 FAQ/AlgorithmicComplexity edited by Chris Johns
(diff)
06:07 Event/FOSS_IN/Report edited by Chris Johns
(diff)

11/24/14:

23:11 Changeset in rtems [d152024]4.115 by Joel Sherrill <joel.sherrill@…>
shell/main_edit.c: Note return value not checked Coverity Id 1255320 spotted an unchecked return value.
22:14 GSoC edited by Amar Takhar
Fix some markup (diff)
20:49 Changeset in rtems [39af57c3]4.115 by Jennifer Averett <jennifer.averett@…>
smp09: Resolve missing prototype warning.
20:48 Changeset in rtems [6291e962]4.115 by Jennifer Averett <jennifer.averett@…>
smp07: Resolve missing prototype warning.
20:48 Changeset in rtems [2c474a0]4.115 by Jennifer Averett <jennifer.averett@…>
smp05: Resolve missing prototype warning.
20:18 Changeset in rtems [3211e8e]4.115 by Joel Sherrill <joel.sherrill@…>
cpukit/libcsupport/src/pwdgrp.c: Check return value Coverity Id 1255518. mkdir() could fail. Check return value and return on failure. Behavior is similar to if open() failed while writing the files.
20:14 Changeset in rtems [630642e]4.115 by Joel Sherrill <joel.sherrill@…>
shell/main_blksync.c: Fix leak of file descriptor Coverity Id 1063887. File descriptor not freed on error path.
20:12 Changeset in rtems [4afa216]4.115 by Joel Sherrill <joel.sherrill@…>
cpukit/libmisc/shell/main_edit.c: Fix use after free() Coverity Id 1255353. Read from pointer after free().
20:06 Changeset in rtems [a0bf44e]4.115 by Joel Sherrill <joel.sherrill@…>
cpukit/dev/i2c/i2c-dev.c: Fix leak on error path Coverity ID 1255520. fd was not closed on error path.
19:57 Changeset in rtems [f7d2795]4.115 by Joel Sherrill <joel.sherrill@…>
testsuites/.../tmacros.h: Add parentheses to fix warning
19:55 Changeset in rtems [505b6806]4.115 by Joel Sherrill <joel.sherrill@…>
rtems-rfs-rtems.c: Add cast to address warning
19:54 Changeset in rtems [ebb39a21]4.115 by Joel Sherrill <joel.sherrill@…>
hexdump-conv.c: Use proper printf() formatting for wchar_t
19:54 Changeset in rtems [3bd0cd1]4.115 by Joel Sherrill <joel.sherrill@…>
main_edit.c: Do not reference beyond end of array
15:01 Ticket #2118 (The unstable arm build set breaks on Ubuntu 13.04 beta.) closed by Joel Sherrill
wontfix: The code has very likely moved enough on both sides where this should be closed.
14:57 Ticket #532 (automake-1.8 will not build rtems-4.6.0) closed by Joel Sherrill
wontfix: Who cares anymore?
14:20 Changeset in rtems [02733495]4.115 by Sebastian Huber <sebastian.huber@…>
libcsupport: malloc_is_system_state_OK() Move system state check to malloc_is_system_state_OK().
14:18 Ticket #2165 (Sort the BSP lists in acinclude.m4 files.) closed by Joel Sherrill
fixed: Chris applied the patch.
14:16 Ticket #1990 (sys/resource.h lacking getrusage) closed by Joel Sherrill
fixed: Patch committed to newlib.
10:55 Changeset in rtems [cfc53c1]4.115 by Sebastian Huber <sebastian.huber@…>
i2c: Fix endian issue
08:44 Changeset in rtems [55db0e5]4.115 by Sebastian Huber <sebastian.huber@…>
bsp/ngmp: Use -muser-mode GCC option This option is necessary to use the latest GCC 4.8, 4.9 and 5.0 versions.
08:18 Ticket #2018 (gethostbyname_r() is broken) closed by Sebastian Huber
fixed: HEAD: http://git.rtems.org/rtems/commit/?h=4.10&id=8c85ca3f302cb69ba290dd64c9291faa0a23bbec 4.10: http://git.rtems.org/rtems/commit/?h=4.10&id=0444c0318093d4f6d6f1165b7c8b6d81132d2538 4.9: http://git.rtems.org/rtems/commit/?h=4.9&id=8553d6495fe767722933a9da33d65bffc5ee13a0
07:51 Ticket #1626 (Can't seek in i2c eeprom devices) closed by Sebastian Huber
wontfix: Something went wrong with the Bugzilla to trac conversion. The patch is completely unrelated to this ticket. I will not work on a fixes for libi2c stuff. I suggest to use the new I2C framework. The new I2C EEPROM device supports lseek(). http://git.rtems.org/rtems/tree/cpukit/dev/i2c/eeprom.c
07:35 Changeset in rtems [26f4cdd]4.115 by Sebastian Huber <sebastian.huber@…>
_Scheduler_FIXME_thread_priority_queues_are_broken Delete this variable since it is no longer necessary due to the thread priority queue implementation change to use RB trees.
07:28 Ticket #2173 (Potential integer overflow problem in EDF scheduler) reopened by Sebastian Huber
Actually the Bugzilla to trac conversion seems to have a lot of errors. This was not a hardware problem. This is still an open issue. Without much consideration I would fix it like this: 1. Make the tick since boot uint64_t. 2. Make the Thread_Control::current_priority and Thread_Control::real_priority int64_t (to support easy comparison operations for RB tree insert and search). 3. Remove the Scheduler_Operations::priority_compare operation. With a system tick of 1ns the system can run 146years before something overflows.

11/23/14:

22:16 Ticket #1959 (LEON_Is_interrupt_masked for Leon2 in leon.h) closed by Jiri Gaisler
fixed
22:13 Ticket #1958 (LEON_Is_interrupt_masked for Leon3 in leon.h) closed by Jiri Gaisler
fixed: I believe the attached patch solves the problem. Note that the condition needs to be inverted.
21:53 Changeset in rtems [2501814e]4.115 by Jiri Gaisler <jiri@…>
sparc/leon2: LEON_Is_interrupt_masked for Leon2 in leon.h wrongly defined Condition needs to be inverted, as a 1 in the mask register means that the interrupt is enabled. Solves ticket #1959 in trac.
21:53 Changeset in rtems [291f30f]4.115 by Jiri Gaisler <jiri@…>
sparc/leon3: LEON_Is_interrupt_masked for Leon3 in leon.h wrongly defined Condition needs to be inverted, as a 1 in the mask register means that the interrupt is enabled. Solves ticket #1958 in trac.
20:01 Ticket #2194 (Ticket and Milestone cleanup) closed by Gedare Bloom
fixed
19:55 Ticket #2174 (Memory corruption with EDF scheduler and thread priority queues) closed by Gedare Bloom
fixed: --- Comment #2 from Gedare <gedare@…> 2014-03-25 08:40:38 CDT --- (In reply to comment #1) > I added a workaround for this problem: > > http://git.rtems.org/rtems/commit/?id=1fac361fb9d4ec7f5b4ad2801ee6ff5858c82942 Thanks. I see this basically implements #1 described above about not allowing to block w/ priority. If anyone wants to actually use this EDF scheduler in a system with priority/deadline-based blocking, they should implement a proper solution with #2 or #3.
17:33 Ticket #1342 (prog-gnat.m4 will find native gnat if no cross) closed by Joel Sherrill
wontfix
17:25 Ticket #1962 (Problems with MVME162 BSP) closed by Joel Sherrill
fixed: I committed this on 2 Feb 2012. It appears to be on 4.10 and 4.11.
17:04 Ticket #1771 (All stats output form smc91111 on a single line) closed by Joel Sherrill
fixed: Patch applied.
16:47 Ticket #2098 (CLOCK_PROCESS_CPUTIME_ID) closed by Joel Sherrill
fixed: Constant is in current code.
16:44 Ticket #1866 (posix timing tests: psxtmbarrier04) closed by Joel Sherrill
fixed
16:44 Ticket #1981 (RFE: Remove pthread_attr_setcputime/pthread_attr_getcputime) closed by Joel Sherrill
fixed
16:41 Ticket #1821 (libtests/termios05: Unused files) closed by Joel Sherrill <joel.sherrill@…>
fixed: In 6570876d0ed5bda394ba8f207bd6d06045c4c777/rtems: […]
16:40 Changeset in rtems [6570876]4.115 by Joel Sherrill <joel.sherrill@…>
termio05: Remove unreferenced files The functionality was conditionally compiled into a shared file and these were not removed. close #1821
16:37 Ticket #2110 (AVR POINTER_REGS error) closed by Joel Sherrill
wontfix: The AVR tools break and then work, then break again. This is tracking an old GCC PR.
16:31 Ticket #2141 (tar01/tar02 dependent on pax being installed) closed by Joel Sherrill
worksforme
16:26 Ticket #2173 (Potential integer overflow problem in EDF scheduler) closed by Joel Sherrill
wontfix: Sebastian noted this was a hardware problem. Seems to indicate problem is NA now.
16:20 Ticket #2085 (rtems_configuration_table documentation in Section 23.3 of C User's Guide) closed by Joel Sherrill
fixed
16:03 Ticket #2113 (sparc/leon2 - incorrect include for <ringbuf.h>) closed by Joel Sherrill
fixed
15:48 Changeset in rtems [b46a31e]4.115 by Joel Sherrill <joel.sherrill@…>
leon2: include <rtems/ringbuf.h> not <ringbuf.h> close #2113
15:43 Ticket #2080 (Fatal error user extension exposes internal score ...) closed by Joel Sherrill
fixed: Sebastian did significant rework on the normal and fatal termination path. If there are still issues, raise another ticket.
15:42 Ticket #2168 (Add a build-only option to rtems-graphics-toolkit) closed by Joel Sherrill
fixed
15:40 Ticket #2201 (trac problems with comment history conversion) closed by Gedare Bloom
wontfix
15:13 Ticket #2175 (C++ Exception Catch Handler Crash on Sparc ERC32 Simulator(SIS)) closed by Joel Sherrill
fixed
15:11 Ticket #2103 (m4 Minimum Version) closed by Joel Sherrill
fixed
15:11 Ticket #2102 (Minimum Python Version) closed by Joel Sherrill
wontfix
15:10 Ticket #1214 (inttypes.h's PRI*PTR uses %*ll where it should use %*l) closed by Joel Sherrill
fixed: Reported years ago against an old newlib but not worked on until recently. The fix will not be backported. But it is fixed now.
14:45 Ticket #2202 (moxie tools fail to build - DTC has moved) created by Joel Sherrill
On 11/21/2014 10:17 AM, Joel Sherrill wrote: > > …
14:43 Ticket #1423 (inconsitience in _Objects_Initialize_information) closed by Joel Sherrill
fixed
11:40 Developer/Git/Committers edited by Chris Johns
(diff)
11:40 Developer/Git/Committers edited by Chris Johns
(diff)
11:38 Developer/Git/Committers edited by Chris Johns
Updated. The personal repo picture is missing. (diff)
07:31 Event/FOSS_IN/Report edited by Chris Johns
(diff)
07:30 Event/FOSS_IN/Report edited by Chris Johns
(diff)
07:29 TBR/UserApp/Space/Solar_Dynamic_Observatory edited by Chris Johns
(diff)
07:23 Release/4.9 edited by Chris Johns
(diff)
07:06 Release/4.9 edited by Chris Johns
(diff)
06:53 Developer/Testing/TestSuites edited by Chris Johns
(diff)
06:52 GSoC/2011/gprof edited by Chris Johns
(diff)
06:49 Developer/SmallProjects edited by Chris Johns
(diff)
06:46 Developer/Projects/Open/TestingImprovements edited by Chris Johns
(diff)
06:42 FAQ/AlgorithmicComplexity edited by Chris Johns
(diff)
06:38 Developer/Simulators/VMWare edited by Chris Johns
(diff)
06:37 FAQ/AlgorithmicComplexity edited by Chris Johns
(diff)
06:31 Developer/Simulators/SkyEye edited by Chris Johns
(diff)
05:26 Developer/Simulators/Bochs edited by Chris Johns
(diff)
05:25 Developer/Simulators/Bochs edited by Chris Johns
(diff)
05:12 Ticket #2193 (Fix images in the Wiki) closed by Amar Takhar
fixed: These are fixed. Board images have not been brought in.
05:07 Jsherril.gif attached to TBR/User/JoelSherrill by Amar Takhar
Imported from old wiki.
05:07 Shttpd_osmonweb_classic_tasks.jpg attached to TBR/UserManual/Simple_HTTPD by Amar Takhar
Imported from old wiki.
05:07 Rtems_shttpd_stackusage.jpg attached to TBR/UserManual/Simple_HTTPD by Amar Takhar
Imported from old wiki.
05:07 Rtems_shttpd_cpuusage.jpg attached to TBR/UserManual/Simple_HTTPD by Amar Takhar
Imported from old wiki.
05:07 Rtems_shttpd_main.jpg attached to TBR/UserManual/Simple_HTTPD by Amar Takhar
Imported from old wiki.
05:07 RTEMSArchitecture.png attached to TBR/UserManual/RTEMS_Software_Architecture by Amar Takhar
Imported from old wiki.
05:07 CoverageFlow.png attached to TBR/UserManual/RTEMS_Coverage_Analysis by Amar Takhar
Imported from old wiki.
05:07 Flight_bau.jpg attached to TBR/UserApp/Space/THEMIS by Amar Takhar
Imported from old wiki.
05:07 203861main_Pederson_aurora.jpg attached to TBR/UserApp/Space/THEMIS by Amar Takhar
Imported from old wiki.
05:07 Solar-dynamics-observatory-image.jpg attached to TBR/UserApp/Space/Solar_Dynamic_Observatory by Amar Takhar
Imported from old wiki.
05:07 Solar-dynamics-observatory.jpg attached to TBR/UserApp/Space/Solar_Dynamic_Observatory by Amar Takhar
Imported from old wiki.
05:07 Proba2_title.jpg attached to TBR/UserApp/Space/PROBA-2 by Amar Takhar
Imported from old wiki.
05:07 Herschel-Small.jpg attached to TBR/UserApp/Space/Herschel by Amar Takhar
Imported from old wiki.
05:07 Gaia_Predictions.jpg attached to TBR/UserApp/Space/GAIA by Amar Takhar
Imported from old wiki.
05:07 GAIA_title.jpg attached to TBR/UserApp/Space/GAIA by Amar Takhar
Imported from old wiki.
05:07 ELC_COMPONENT_4.png attached to TBR/UserApp/Space/Express_Logistics_Carrier by Amar Takhar
Imported from old wiki.
05:07 ELC_COMPONENT_3.png attached to TBR/UserApp/Space/Express_Logistics_Carrier by Amar Takhar
Imported from old wiki.
05:07 ELC_COMPONENT_2.jpg attached to TBR/UserApp/Space/Express_Logistics_Carrier by Amar Takhar
Imported from old wiki.
05:07 ELC_COMPONENT_1.png attached to TBR/UserApp/Space/Express_Logistics_Carrier by Amar Takhar
Imported from old wiki.
05:07 ELC_Workers.jpg attached to TBR/UserApp/Space/Express_Logistics_Carrier by Amar Takhar
Imported from old wiki.
05:07 ELC1.jpg attached to TBR/UserApp/Space/Express_Logistics_Carrier by Amar Takhar
Imported from old wiki.
05:07 ExoMars_Trace_Gas_Orbiter.jpg attached to TBR/UserApp/Space/ExoMars by Amar Takhar
Imported from old wiki.
05:07 Exomars_edm.jpg attached to TBR/UserApp/Space/ExoMars by Amar Takhar
Imported from old wiki.
05:07 ExoMars_prototype_rover.jpg attached to TBR/UserApp/Space/ExoMars by Amar Takhar
Imported from old wiki.
05:07 ExoMars_Title.jpg attached to TBR/UserApp/Space/ExoMars by Amar Takhar
Imported from old wiki.
05:07 Electra-EDL.png attached to TBR/UserApp/Space/Electra by Amar Takhar
Imported from old wiki.
05:07 MRO-front-view_br.jpg attached to TBR/UserApp/Space/Electra by Amar Takhar
Imported from old wiki.
05:07 Dawn-Mission-Milestones.jpg attached to TBR/UserApp/Space/Dawn by Amar Takhar
Imported from old wiki.
05:07 Dawn-Against-Hartmann.jpg attached to TBR/UserApp/Space/Dawn by Amar Takhar
Imported from old wiki.
05:07 Payload-deck-400.jpg attached to TBR/UserApp/Magnetospheric_MultiScale by Amar Takhar
Imported from old wiki.
05:07 Hybrid_z.jpg attached to TBR/UserApp/HybridZ by Amar Takhar
Imported from old wiki.
05:07 FDR.jpg attached to TBR/UserApp/FDR by Amar Takhar
Imported from old wiki.
05:07 Technic02.gif attached to TBR/UserApp/AMV_Technic_I by Amar Takhar
Imported from old wiki.
05:06 PROBA3-02-LR_large,0.jpg attached to TBR/Delete/FUGUYS by Amar Takhar
Imported from old wiki.
05:06 Mvme2100diagram.png attached to TBR/BSP/Mvme2100 by Amar Takhar
Imported from old wiki.
05:06 MPC8313ERDB_BD.jpg attached to TBR/BSP/Gen83xx by Amar Takhar
Imported from old wiki.
05:06 Sequence_diagram.png attached to Projects/MMU_Support by Amar Takhar
Imported from old wiki.
05:06 SPARC-SIS-HelloWorld-Modded.png attached to GSoC/GettingStarted by Amar Takhar
Imported from old wiki.
05:06 SPARC-SIS-HelloWorld.png attached to GSoC/GettingStarted by Amar Takhar
Imported from old wiki.
05:06 Soc-logo-google-blue.jpg attached to GSoC/2013 by Amar Takhar
Imported from old wiki.
05:06 GSOC12logo.png attached to GSoC/2012 by Amar Takhar
Imported from old wiki.
05:06 GSoC2011_300x200.png attached to GSoC/2011 by Amar Takhar
Imported from old wiki.
05:06 Gsoc_2010_950x846px.png attached to GSoC/2010 by Amar Takhar
Imported from old wiki.
05:06 RTEMS_Trace.png attached to GSoC/2009/Wrapup by Amar Takhar
Imported from old wiki.
05:06 RTEMS_Skyeye.jpg attached to GSoC/2009/Wrapup by Amar Takhar
Imported from old wiki.
05:06 Microwindows_Minesweeper.jpg attached to GSoC/2009/Wrapup by Amar Takhar
Imported from old wiki.
05:06 Coverage_refined.png attached to GSoC/2009/Wrapup by Amar Takhar
Imported from old wiki.
05:06 Soc-logo-google-blue.jpg attached to GSoC by Amar Takhar
Imported from old wiki.
05:06 MiniVM_Test.jpg attached to Developer/VirtualMachines/VMWareSetup by Amar Takhar
Imported from old wiki.
05:06 MiniVM_Boot.jpg attached to Developer/VirtualMachines/VMWareSetup by Amar Takhar
Imported from old wiki.
05:06 MiniVM_Ready.jpg attached to Developer/VirtualMachines/VMWareSetup by Amar Takhar
Imported from old wiki.
05:06 MiniVM_No_USB.jpg attached to Developer/VirtualMachines/VMWareSetup by Amar Takhar
Imported from old wiki.
05:06 MiniVM_NoFloppy.jpg attached to Developer/VirtualMachines/VMWareSetup by Amar Takhar
Imported from old wiki.
05:06 MiniVM_isoImg.jpg attached to Developer/VirtualMachines/VMWareSetup by Amar Takhar
Imported from old wiki.
05:06 MiniVM_isoCD.jpg attached to Developer/VirtualMachines/VMWareSetup by Amar Takhar
Imported from old wiki.
05:06 MiniVM_NoNIC.jpg attached to Developer/VirtualMachines/VMWareSetup by Amar Takhar
Imported from old wiki.
05:06 MiniVM_NoHD.jpg attached to Developer/VirtualMachines/VMWareSetup by Amar Takhar
Imported from old wiki.
05:06 MiniVM_MemCPU.jpg attached to Developer/VirtualMachines/VMWareSetup by Amar Takhar
Imported from old wiki.
05:06 MiniVM_GuestOS.jpg attached to Developer/VirtualMachines/VMWareSetup by Amar Takhar
Imported from old wiki.
05:06 MiniVM_Name.jpg attached to Developer/VirtualMachines/VMWareSetup by Amar Takhar
Imported from old wiki.
05:06 Serial_test.jpg attached to Developer/Simulators/VMWare by Amar Takhar
Imported from old wiki.
05:06 Serial_HyperTerminal.jpg attached to Developer/Simulators/VMWare by Amar Takhar
Imported from old wiki.
05:06 Serial_Grub.jpg attached to Developer/Simulators/VMWare by Amar Takhar
Imported from old wiki.
05:06 Serial_bios_cfg.jpg attached to Developer/Simulators/VMWare by Amar Takhar
Imported from old wiki.
05:06 Serial_bios.jpg attached to Developer/Simulators/VMWare by Amar Takhar
Imported from old wiki.
05:06 Serial_properties.jpg attached to Developer/Simulators/VMWare by Amar Takhar
Imported from old wiki.
05:06 Serial_physical.jpg attached to Developer/Simulators/VMWare by Amar Takhar
Imported from old wiki.
05:06 Serial_Address.jpg attached to Developer/Simulators/VMWare by Amar Takhar
Imported from old wiki.
05:06 Serial_2ports.jpg attached to Developer/Simulators/VMWare by Amar Takhar
Imported from old wiki.
05:06 Git-personalrepo.png attached to Developer/Git/Committers by Amar Takhar
Imported from old wiki.
05:06 Org-rtems-cdt-problem-1.jpg attached to Developer/Eclipse/Plugin by Amar Takhar
Imported from old wiki.
05:06 Org-rtems-cdt-problem-0.jpg attached to Developer/Eclipse/Plugin by Amar Takhar
Imported from old wiki.
05:06 Org-rtems-cdt-props.jpg attached to Developer/Eclipse/Plugin by Amar Takhar
Imported from old wiki.
05:06 Repi-project.jpg attached to Developer/Eclipse/Plugin by Amar Takhar
Imported from old wiki.
05:06 Repi-setup.jpg attached to Developer/Eclipse/Plugin by Amar Takhar
Imported from old wiki.
05:06 Repi-install.jpg attached to Developer/Eclipse/Plugin by Amar Takhar
Imported from old wiki.
05:06 CodeCoverageSPARC-LEON3.png attached to Developer/Coverage/Status by Amar Takhar
Imported from old wiki.
05:06 CodeCoverageSPARC-LEON2.png attached to Developer/Coverage/Status by Amar Takhar
Imported from old wiki.
05:06 CodeCoverageSPARC-ERC32.png attached to Developer/Coverage/Status by Amar Takhar
Imported from old wiki.
05:06 CodeCoveragem68k-uC5282.png attached to Developer/Coverage/Status by Amar Takhar
Imported from old wiki.
05:06 CodeCoveragei386-pc386.png attached to Developer/Coverage/Status by Amar Takhar
Imported from old wiki.
05:06 CodeCoverageARM-SMDK2410.png attached to Developer/Coverage/Status by Amar Takhar
Imported from old wiki.
05:06 CodeCoverageARM-EDB7312.png attached to Developer/Coverage/Status by Amar Takhar
Imported from old wiki.
05:06 CoverageCategories.png attached to Developer/Coverage/Theory by Amar Takhar
Imported from old wiki.
04:55 Developer/SMP edited by Chris Johns
(diff)
04:35 Developer/OpenProjects edited by Chris Johns
(diff)
02:06 Ticket #2107 (Cygwin build fails with binutils installed under $PREFIX) closed by Chris Johns
fixed: MinGW tools building on Unix hosts has been fixed.
00:25 Ticket #2069 ([CBS Scheduler] Memory leak and enqueue problem) closed by Gedare Bloom
fixed: Closing, there were two issues and one was fixed. If Andreas still has the other (mmeory leak?) then another PR should get filed.
00:25 Changeset in rtems [89be4e7]4.115 by Santosh G Vattam <vattam.santosh@…>
rtems/score/object.h: Correct types on _Objects_Build_id close 1423
00:21 Ticket #1404 (The Haleakala BSP lacks a network driver) closed by Joel Sherrill
fixed
00:19 Ticket #1992 (HTML output error) closed by Joel Sherrill
wontfix: This is a bug in makeinfo/texinfo and fixed in some versions. texinfo 5.0 should be OK.

11/22/14:

16:12 Ticket #2111 (AVR needs avr-libc to compile RTEMS.) closed by Joel Sherrill
invalid
16:05 Ticket #1446 (BSP_SHARED_HANDLER_SUPPORT breaks multilibs) closed by Joel Sherrill
wontfix: include/rtems/irq.h defines an interface that BSPs should support. The implementation is mostly on the BSP side. This is an odd sitting on the fence case where we define an API set in common part expecting an implementation at the BSP level.
15:31 Ticket #1700 (Add missing pthread routines) closed by Joel Sherrill
fixed: Patch merged to newlib 2010-12-08
15:29 Ticket #2057 (Merge binutils PR3991 to allow PowerPC Bootloader to work) closed by Joel Sherrill
fixed: Binutils PR 13991 closed 2012-05-11 for binutils 2.22 or 2.23. Recent enough to be a 4.11 milestone.
15:25 Ticket #1652 (powerpc-gcc -msdata breakdown on incomplete initializers) closed by Joel Sherrill
fixed: GCC PR closed on 2010-06-29 with commit to 4.5 and 4.6 branches. Changing milestone to 4.11 and closing.
14:51 Ticket #1373 (newlib >= 1.16.0's sched.h collides with RTEMS sched.h) closed by Gedare Bloom
fixed
14:50 Ticket #1353 (Incorrect documentation for building RTEMS 4.9.x toolchain.) closed by Gedare Bloom
fixed
14:47 Ticket #514 (Add timeslice exhaust to Classic API) closed by Gedare Bloom
fixed
14:34 Ticket #1943 (NULL pointer access in if_ppp.c) closed by Gedare Bloom
fixed: I applied to 4.10 and 4.9.
14:29 Ticket #1712 (Add LWIP Support to RTEMS) reopened by Gedare Bloom
14:28 Ticket #1712 (Add LWIP Support to RTEMS) closed by Gedare Bloom
wontfix
14:13 Ticket #1361 (capture: empty names in ctload and ctlist commands.) closed by Gedare Bloom
fixed
14:11 Changeset in rtems [b6519e4b]4.9 by Nickolay Semyonov <nbkolchin@…>
capture: back-port conversion from task_name to task_id (closes #1361)
14:05 Changeset in rtems [b47dffc5]4.10 by Nickolay Semyonov <nbkolchin@…>
capture: back-port conversion from task_name to task_id (see #1361)
13:50 Ticket #1706 (pc386: spurious interrupt 7) closed by Gedare Bloom
wontfix
13:45 Ticket #1445 (sparc+pc386 pci_[read|write]_config_* messed up) closed by Gedare Bloom
fixed
13:16 Ticket #2064 (Switch arm-rtems default target name to EABI) closed by Gedare Bloom
fixed
12:44 Ticket #1669 ([4.5/4.6 Regression] libgcc does not include t-ppccomm on rtems) closed by Gedare Bloom
fixed
12:40 Ticket #1475 (SIZE_MAX) closed by Gedare Bloom
fixed
05:50 Developer/Multilib edited by Chris Johns
(diff)
05:48 Developer/Laboratory edited by Chris Johns
(diff)
05:43 Developer/Git/Committers edited by Chris Johns
(diff)
05:37 Developer/GSoC/ProjectManagement edited by Chris Johns
(diff)
05:33 Developer/FileSystems edited by Chris Johns
(diff)
05:25 Developer/Eclipse/Plugin edited by Chris Johns
(diff)
05:25 Developer/Eclipse/Plugin edited by Chris Johns
(diff)
05:22 Developer/Eclipse/Information edited by Chris Johns
(diff)
05:22 Developer/Eclipse/Information edited by Chris Johns
(diff)
05:17 Developer/Coverage/Status edited by Chris Johns
(diff)
05:12 Developer/Contributors edited by Chris Johns
(diff)
05:05 Developer/Coverage/Theory edited by Chris Johns
(diff)
05:04 Developer/Coverage/Theory edited by Chris Johns
(diff)
04:57 Developer/CodeSwarm edited by Chris Johns
(diff)
04:53 Developer/Coding/NamingRules edited by Chris Johns
(diff)
04:47 Developer/Coding/NamingRules edited by Chris Johns
(diff)
04:39 Developer/Coding/GenerateAPatch edited by Chris Johns
(diff)
04:38 Developer/Coding/Doxygen_for_BSPs edited by Chris Johns
(diff)
04:32 Ticket #2201 (trac problems with comment history conversion) created by Gedare Bloom
Some comments from the bugzilla appear to be misplaced, for example: …
04:31 Developer/AtomicSupport edited by Chris Johns
Fix table formatting. (diff)
04:30 Ticket #2074 (i386 soft-float libraries are incomplete) closed by Gedare Bloom
wontfix
04:26 Ticket #2127 (this is my l-sparc.txt can you help me please) closed by Gedare Bloom
worksforme
04:17 Developer/Coding/Doxygen edited by Chris Johns
(diff)
04:00 Debugging/GDBScripts edited by Chris Johns
(diff)
03:59 Debugging/GDBScripts edited by Chris Johns
(diff)
03:20 WikiStart edited by Chris Johns
(diff)
03:19 WikiStart edited by Chris Johns
(diff)
03:14 WikiStart edited by Chris Johns
(diff)
03:13 WikiStart edited by Chris Johns
(diff)
03:12 WikiStart edited by Chris Johns
(diff)
03:11 WikiStart edited by Chris Johns
(diff)
03:07 Projects/ARINC653VM edited by Chris Johns
(diff)
03:07 Projects/ARINC653VM edited by Chris Johns
(diff)
03:06 Projects/ARINC653VM edited by Chris Johns
(diff)
03:06 Projects/ARINC653VM edited by Chris Johns
(diff)

11/21/14:

19:21 Ticket #2200 (Missing IRC logs) created by Gedare Bloom
The IRC logs are not available via the www.rtems.org anymore.
19:20 Ticket #2199 (Automate doc build) created by Gedare Bloom
The manuals in doc/ are no longer being generated nightly. RSB …
19:20 Ticket #2198 (Automate doxygen build) created by Gedare Bloom
The doxygen builds are no longer being generated nightly.
19:17 Ticket #2197 (Fix broken wiki tables) created by Gedare Bloom
The conversion left some wiki markup incomplete, including tables. See …
19:11 Changeset in rtems [ff1c613]4.115 by Joel Sherrill <joel.sherrill@…>
powerpc/haleakala: Fix warnings
18:48 Changeset in rtems-source-builder [aa5407f]4.104.114.95 by Joel Sherrill <joel.sherrill@…>
4.11/rtems-nios2.bset: Drop patch adding RTEMS target
17:15 Changeset in rtems [502609c8]4.115 by Nigel Spon <nigel@…>
powerpc/haleakala: Add network driver close 1405
17:00 Ticket #1936 (RFE: Abandon ualarm) closed by Joel Sherrill
wontfix: Nah.. if Fedora 20 still supports it, I don't see why we should drop it.
16:59 Ticket #1575 (Some error in the RTEMS C USER‘s GUIDE?) closed by Joel Sherrill
worksforme: This section of the documentation has been overhauled. I can't tell if the problem even applies.
16:54 Ticket #1387 (Interrupt Manager Services Callable from ISR) closed by Joel Sherrill
fixed: It appears that this request in the above comment is made in the current documentation.
15:45 Ticket #1699 (Add libdbm to cpukit) closed by Joel Sherrill
wontfix: No. Should be packaged as an RSB library. If someone cares, revisit and do that way.
15:44 Ticket #1473 (mips 64bit issues?) closed by Joel Sherrill
fixed: There are no warnings building this code now.
15:43 Ticket #711 (newlib/libc/ctype/wctype.c contains invalid code) closed by Joel Sherrill
fixed: Wow! Newlib 1.11.0 .. closing.
15:42 Ticket #588 (gcc: Remove m505/roe multilib variant) closed by Joel Sherrill
fixed: Current tools do not have the m505/roe multilib. No idea how long it has been gone.
15:41 Ticket #350 (Honor user setting LD_PATHS as addition to LDFLAGS) closed by Joel Sherrill
wontfix: Patch is no longer applicable.
15:02 Ticket #1656 (GSoC AIO patch) closed by Joel Sherrill
fixed: This code is all merged. That was the purpose of this ticket. Closing.
14:14 Ticket #1993 (Mips conversion to PIC IRQ model) closed by Joel Sherrill
fixed: This work has long been merged and is on the 4.11 master.
14:13 Ticket #1661 (Coverage improvements: termios) closed by Joel Sherrill
fixed: termios coverage is now near complete. This ticket was to submit a patch which is merged. Closing.
14:12 Ticket #747 (m68k-rtems-gcc-3.4.3 -m528x links against wrong multilib variant) closed by Joel Sherrill
wontfix
14:11 Ticket #579 (rtmes-4.7-sparc-rtems-gdb does not build) closed by Joel Sherrill
wontfix
14:10 Ticket #517 (sparc-rtems-gcc: Configuration is broken) closed by Joel Sherrill
wontfix
14:10 Ticket #520 (gcc-3.3.2/cross-gnatmake is non-functional) closed by Joel Sherrill
wontfix
13:41 Ticket #2033 (A shell network ping utility) closed by Sebastian Huber
fixed: Chris added a PING command: http://git.rtems.org/rtems/commit/?id=a8fa078f1efcc682f7155ab7423543d7d582f80a
12:43 Ticket #1439 (no prototype for posix_memalign) closed by Sebastian Huber
fixed: Fixed in Newlib since 2009-09-22.
12:35 Ticket #2003 (Instruction cache problem in gen5200 bsps) closed by Sebastian Huber
wontfix
12:33 Ticket #1800 (PowerPC: IEEE 754 conformance of e200/e500 embedded floating point unit) closed by Sebastian Huber
wontfix: No demand to fix this from the users in the last four years.
10:01 Changeset in rtems [cceb19f4]4.115 by Luca Bonato <lohathe@…>
smp: Fix scheduler helping protocol New test case for smptests/smpmrsp01. Fix _Scheduler_Block_node() in case the node is in the SCHEDULER_HELP_ACTIVE_RIVAL helping state. For example a rtems_task_suspend() on a task waiting for a MrsP semaphore. Fix _Scheduler_Unblock_node() in case the node is in the SCHEDULER_SMP_NODE_READY state. For example a rtems_task_resume() on a task owning or waiting for a MrsP semaphore.
07:49 Changeset in rtems [11925eef]4.115 by Sebastian Huber <sebastian.huber@…>
Delete or rename MIN/MAX macros and defines Include <sys/param.h> if necessary to get the MIN()/MAX() macros.
03:13 Ticket #2196 (Too many ticket components) created by Gedare Bloom
There are 32 Component choices in the ticket system. We need to reduce …
03:10 Ticket #2195 (RTEMS sites need trusted SSL certificate) created by Gedare Bloom
The current certificate presented over https for rtems.org sites …
03:07 Ticket #2194 (Ticket and Milestone cleanup) created by Gedare Bloom
4.10 still has tickets. These need to be closed or pushed forward to …
03:00 Ticket #2193 (Fix images in the Wiki) created by Gedare Bloom
Images are not showing correctly, first reported by Joel on the devel …

11/20/14:

23:25 Changeset in rtems [ed4c556]4.115 by Joel Sherrill <joel.sherrill@…>
objectsetname.c: Fix always true condition (Coverity ID 1063874) Coverity spotted the comparison (0 <= length) which is always true. Changed logic to address this.
23:22 Changeset in rtems [abf3892c]4.115 by Joel Sherrill <joel.sherrill@…>
pipe/fifo.c: NULL dereference flagged by Coverity ID 1063889 It does not appear that this is possible so adding an assert.
23:21 Changeset in rtems [e8abdfb]4.115 by Joel Sherrill <joel.sherrill@…>
dosfs/fat_fat_operations.c: Explicitly ignore return (Coverity ID 26048) Coverity spotted that the return code from fat_set_fat_cluster() was ignored. But it should be because we want to return the status that caused us to hit the cleanup path.
23:19 Changeset in rtems [8f73af85]4.115 by Joel Sherrill <joel.sherrill@…>
dosfs/msdos_format.c: Dead code removal (Coverity ID 1255325) Coverity identified that ret_val was never set except to be initialized to 0. Thus the code could not be executed.
23:17 Changeset in rtems [5dff7425]4.115 by Joel Sherrill <joel.sherrill@…>
libcsupport/src/termios.c: Explicitly ignore return value (Coverity ID 1255347) Coverity spotted that we were ignoring a return value. But ignoring it is intentional. Adding (void) clearly indicates it is being ignored explicitly.
20:51 WikiStart edited by Joel Sherrill
Generalize link to GSoC quick start (diff)
20:48 TBR/UserManual/SupportedCPUs edited by Joel Sherrill
Rewrite to avoid reference to any source code control system. (diff)
20:47 GSoC edited by Amar Takhar
fix markup (diff)
19:58 WikiStart edited by Joel Sherrill
Fixed another broken link to Git page. (diff)
18:46 Changeset in rtems-tools [b1e9ab9]4.104.115 by Joel Sherrill <joel.sherrill@…>
main-page.cpp: Fix spelling issue
16:53 TBR/UserManual/SupportedCPUs edited by Joel Sherrill
Fx formatting glitch (diff)
16:05 Changeset in rtems [280f4ecc]4.115 by Gedare Bloom <gedare@…>
autotools: regenerate preinstall.am for pc386
15:50 TBR/Website/RTEMSReleases edited by Joel Sherrill
(diff)
15:42 Ticket #1323 (powerpc/mvme5500/Makefile.am overrides CFLAGS) closed by Joel Sherrill
wontfix
15:35 WikiStart edited by Joel Sherrill
Fix link to Git information. (diff)
14:23 Changeset in rtems-libbsd [4ff97c8]4.1155-freebsd-126-freebsd-12freebsd-9.3 by Sebastian Huber <sebastian.huber@…>
if_cgem: Disable device sysctls
14:00 Changeset in rtems [067da5c]4.115 by Jan Dolezal <dolezj21@…>
i386/pc386: VESA based frame buffer utilizing real mode interrupt 10h
14:00 Changeset in rtems [c5a74946]4.115 by Jan Dolezal <dolezj21@…>
i386/pc386/include: header files for VESA BIOS EXTENSIONS and VESA Extended Display Identification Data
14:00 Changeset in rtems [586c86c7]4.115 by Jan Dolezal <dolezj21@…>
i386/shared/realmode_int: real mode interrupt interface
14:00 Changeset in rtems [74d2d940]4.115 by Jan Dolezal <dolezj21@…>
i386: global descriptor table manipulation functions
14:00 Changeset in rtems [b2db1f5c]4.115 by Jan Dolezal <dolezj21@…>
cpukit: basedefs: macro for packed attribute
14:00 Changeset in rtems [d885b2b2]4.115 by Jan Dolezal <dolezj21@…>
i386: GDTR manipulation functions parameters changed to use explicit width types
14:00 Changeset in rtems [58af50d]4.115 by Jan Dolezal <dolezj21@…>
score: i386: functions converting real mode pointer to physical address and back
14:00 Changeset in rtems [ec494ff]4.115 by Jan Dolezal <dolezj21@…>
i386/pc386: configurable size of descriptor tables
08:17 Ticket #1676 (rtems-testing refactor to use autoconf) closed by Chris Johns
invalid: This is not relevant anymore.
08:15 Changeset in rtems [a634feb]4.115 by Sebastian Huber <sebastian.huber@…>
dl01,dl02: Avoid non-runnable $(EXEEXT) files
08:03 Changeset in rtems [3bb9c61c]4.115 by Sebastian Huber <sebastian.huber@…>
bdbuf: Use rtems_cache_get_data_line_size()
07:52 Changeset in rtems [3eade710]4.115 by Sebastian Huber <sebastian.huber@…>
libtests/top: End test after some time if no input
07:20 Ticket #2191 (RTL allocator does not check NULL pointer (Coverity 1255328)) closed by Chris Johns
fixed: Fixed on HEAD.
06:59 Changeset in rtems-libbsd [14ecf75d]4.1155-freebsd-126-freebsd-12freebsd-9.3 by Sebastian Huber <sebastian.huber@…>
if_cgem: Workaround for missing FDT support
06:58 Changeset in rtems-libbsd [a09f00e]4.1155-freebsd-126-freebsd-12freebsd-9.3 by Sebastian Huber <sebastian.huber@…>
if_cgem: Workaround for if_inc_counter()
06:57 Changeset in rtems-libbsd [b8e0c66]4.1155-freebsd-126-freebsd-12freebsd-9.3 by Sebastian Huber <sebastian.huber@…>
if_cgem: Import from FreeBSD
04:39 Ticket #1848 (Add driver and file system sync support.) closed by Chris Johns
fixed: Fixed in 4.11.
03:54 Ticket #427 (bcopy, bzero, bcmp are deprecated) closed by Chris Johns
wontfix: Not fixed in the 4.9 release branch.
03:53 Ticket #1274 (ATA driver fails to detect disk on slave interfaces) closed by Chris Johns
wontfix: Not fixed in the 4.9 branch.
03:52 Ticket #565 (i386 - __REGISTER_PREFIX__) closed by Chris Johns
wontfix: Not fixed in the 4.9 release branch.
03:51 Ticket #355 (SH4 patches) closed by Chris Johns
wontfix: Not for the 4.9 release branch.
03:48 Ticket #1253 (Core Constuctors) closed by Chris Johns
wontfix: Not for a release branch.
03:47 Ticket #1300 (libchip/serial/serial.h: volatile boolean bActive) closed by Chris Johns
wontfix: Buttered fish (bF for short)
03:43 Ticket #1309 (c/src/lib/libbsp/powerpc/gen5200/i2c/i2c.c: questionable volatile use-case) closed by Chris Johns
wontfix: Buttered fish.
03:37 Ticket #1343 (c/src/lib/libbsp/arm/gba has private score) closed by Chris Johns
wontfix
03:36 Ticket #343 (--program-prefix) closed by Chris Johns
wontfix
03:28 Ticket #2192 (Possible signed extension on 16-bit targets in ELF loading (Coverity ...) closed by Chris Johns
fixed
03:26 Ticket #1549 (It must be easier to write tests) closed by Chris Johns
wontfix
03:16 Tickets #1185,​1186,​1200 batch updated by Chris Johns
wontfix
03:15 Ticket #1251 (fat_file_truncate) closed by Chris Johns
wontfix
03:14 Ticket #1210 (Building RTEMS without c++ installed failes on testsuites/samples) closed by Chris Johns
wontfix
02:52 Changeset in rtems [580466c]4.115 by Chris Johns <chrisj@…>
libdl: Update comment with details about the error fix. See refs #2192.

11/19/14:

23:19 Changeset in rtems [2ae58c69]4.115 by Chris Johns <chrisj@…>
libdl: Update the comments. See refs #2191.
23:18 Changeset in rtems [fc523ac8]4.115 by Chris Johns <chrisj@…>
libdl: Fix possible 16-bit overflow (Coverity 1255339) refs #2192. On a 16-bit target the section value could result in a sign-extension overflow.
23:17 Ticket #2192 (Possible signed extension on 16-bit targets in ELF loading (Coverity ...) created by Chris Johns
Coverity (defect 1255339) has indicated a possible 16-bit overflow.
21:43 Changeset in rtems [4f1bbbfc]4.115 by Chris Johns <chrisj@…>
libdl: Add a comment. See ref #2191.
21:38 Changeset in rtems [80590a8]4.115 by Chris Johns <chrisj@…>
libdl: Add a comment to the previous fix. The fix is ref #2191.
21:30 Changeset in rtems [90f65007]4.115 by Chris Johns <chrisj@…>
libdl: Fix allocator NULL check (Coverity 1255328) refs #2191 The address returned from the allocator call was not checked when zeroing the memory.
21:27 Ticket #2191 (RTL allocator does not check NULL pointer (Coverity 1255328)) created by Chris Johns
Coverity (defect 1255328) has detected a possible NULL pointer access …
21:11 NewTicket created by Amar Takhar
Stub NewTicket page (landing page for users wanting to create a ticket).
20:57 TBR/Website created by Amar Takhar
List.
20:56 TBR/UserApp created by Amar Takhar
List.
20:56 TBR edited by Amar Takhar
There was only one user page converted, remove it from the list. (diff)
20:54 TBR/Review created by Amar Takhar
List.
20:54 TBR/Delete created by Amar Takhar
List
20:53 TBR/BSP created by Amar Takhar
List.
20:50 Changeset in rtems [d4ec0a2]4.115 by Josh Oguin <josh.oguin@…>
monitor/mon-prmisc.c: Use puts() not fprintf() CodeSonar? flagged this as a case where the user could inject a format string and cause issues. Since we were not printing anything but a string, just switching to puts() rather than fprintf(stdout,...) was sufficient to make this code safer.
20:49 Changeset in rtems [8b9bc54]4.115 by Josh Oguin <josh.oguin@…>
objectgetnameasstring.c: Reformat _Objects_Get() switch to follow pattern
20:47 Changeset in rtems [c562d0c]4.115 by Josh Oguin <josh.oguin@…>
objectimpl.h: Add _Assert() to _Objects_Invalidate_Id() CodeSonar? flagged this as a possible NULL deference. This should never occur but adding the _Assert() ensures we are guarding against that.
20:46 Changeset in rtems [fbafb8f2]4.115 by Josh Oguin <josh.oguin@…>
chainimpl.h: Add _Assert() to _Chain_Initialize_empty() CodeSonar? flagged this as a potential NULL deference. That should never occur but adding the _Assert() ensures we are checking that.
20:46 TBR created by Amar Takhar
Create TBR main index.
20:44 Changeset in rtems [e106aa73]4.115 by Josh Oguin <josh.oguin@…>
cpukit/posix/src/timertsr.c: Add _Assert() CodeSonar? flagged this as an empty if body. Upon analysis, it turned out to be an error that we think should never occur but if it did, there is nothing we could do about it. It would likely just indicate the thread was deleted before we got here. Adding the _Assert() at least will flag this if it ever occurs during a debug build and we can discuss what happened.
20:42 WikiStart edited by Amar Takhar
Markup fixes, add TBR link. (diff)
20:42 Changeset in rtems [90a8e42b]4.115 by Josh Oguin <josh.oguin@…>
monitor/mon-editor.c: Use puts() and snprintf() not fprintf() or sprintf() CodeSonar? flagged this as a case where the user could inject a format string and cause issues. Since we were not printing anything but a string, just switching to puts() rather than fprintf(stdout,...) was sufficient to make this code safer. snprintf() places a limit on the length of the output from sprintf() and avoids similar buffer overrun issues.
20:40 Changeset in rtems [4862532]4.115 by Josh Oguin <josh.oguin@…>
imfs/imfs_handlers_link.c: Add _Assert for NULL pointer CodeSonar? flagged this as a possible dereference of a NULL pointer. This should never occur so adding _Assert().
20:39 Changeset in rtems [43d6a28]4.115 by Josh Oguin <josh.oguin@…>
dosfs/msdos_misc.c: Remove unnecessary operation CodeSonar? flagged the increment of this pointer as unneeded. The pointer is not used past this point.
20:38 Changeset in rtems [21c0ca8]4.115 by Josh Oguin <josh.oguin@…>
dosfs/msdos_file.c: Return an error if it occurs CodeSonar? flagged this as a case where the return value from fat_sync() was not used. Now it is used to return pass/fail to the caller.
20:36 Changeset in rtems [10f28a3a]4.115 by Josh Oguin <josh.oguin@…>
dosfs/msdos_conv.c: Remove unnecessary operations These were flagged by CodeSonar?. The assignments on variable declaration are overridden a few lines below and the other line later with name_size is where name_size was not used after this assignment.
20:34 Changeset in rtems [72f63eef]4.115 by Josh Oguin <josh.oguin@…>
libcsupport/src/newlibc_exit.c: Remove dead code This was flagged as an empty for statement by CodeSonar? but is actually unreachable code that should be removed.
20:34 Changeset in rtems [f18fd4f]4.115 by Josh Oguin <josh.oguin@…>
libcsupport/src/mount.c: Remove unnecessary operation This was flagged by CodeSonar?.
20:32 Changeset in rtems [aed6e1d]4.115 by Josh Oguin <josh.oguin@…>
libchip/serial/z85c30.c: Remove redundant assignment This was flagged by CodeSonar?.
20:28 Changeset in rtems [02958c5e]4.115 by Josh Oguin <josh.oguin@…>
libchip/serial/ns16550* and z8530*: Assert on baud number to avoid divide by 0 This was flagged by CodeSonar?. It should be impossible to get an incorrect baud number back but ensure this in debug mode. The _Assert() keeps their scanner from evaluating for divide by 0 past this point.
20:27 Changeset in rtems [724eb8c4]4.115 by Chris Johns <chrisj@…>
Fix type in MAINTAINERS.
20:26 Changeset in rtems [0ad1e80]4.115 by Josh Oguin <josh.oguin@…>
libchip/display/disp_hcms29xx.c: Remove useless variable and check This was flagged by CodeSonar?.
20:26 Changeset in rtems [61f8d668]4.115 by Josh Oguin <josh.oguin@…>
libbsp/shared/bspinit.c: Document assumption of NULL returned
20:21 Changeset in rtems [f04dff4]4.115 by Chris Johns <chrisj@…>
Update MAINTAINERS with blanket commits for Daniel and SPARC.
19:57 Changeset in rtems [163519a0]4.115 by Joel Sherrill <joel.sherrill@…>
libtests/malloctest/init.c: Fix warning posix_memalign() is prototyped to take a non-NULL parameter. But our test is deliberately passing one in. With the -Wnon-null warning flag enabled, we will always get warnings on this test unless we disable that warning for this single test case.
19:57 Changeset in rtems [a5201ea]4.115 by Joel Sherrill <joel.sherrill@…>
libdl/rtl-mdreloc-powerpc.c: Fix warnings This patch addresses the following warnings: + The variable "target" was unused. + The parentheses in the expression around line 72 were ambiguous.
18:32 Changeset in rtems [c87ff97]4.115 by Chris Johns <chrisj@…>
Update maintainers with Daniel.
18:25 Changeset in rtems [ab8a9ad]4.115 by Chris Johns <chrisj@…>
Update the maintainers list.
14:30 Changeset in rtems [50440c0]4.115 by Sebastian Huber <sebastian.huber@…>
bsps/arm: Enable L2C for Cortex-A9 MPCore BSPs
14:07 Changeset in rtems [d1eb7b1]4.115 by Sebastian Huber <sebastian.huber@…>
bsps/arm: L2C 310 drop exclusive cache support Optimize locking.
13:55 Changeset in rtems [5f4f828]4.115 by Sebastian Huber <sebastian.huber@…>
bsps/arm: L1 cache support changes
13:37 Changeset in rtems [e492e7f8]4.115 by Sebastian Huber <sebastian.huber@…>
bsps/arm: L2C 310 compile-time errata 588369
13:29 Changeset in rtems [52d24b00]4.115 by Sebastian Huber <sebastian.huber@…>
bsps/arm: L2C 310 compile-time errata 753970
13:19 Changeset in rtems [55741886]4.115 by Sebastian Huber <sebastian.huber@…>
bsps/arm: L2C 310 exclusive config is fatal
13:08 Changeset in rtems [d53de34]4.115 by Sebastian Huber <sebastian.huber@…>
bsps/arm: L2C 310 use l2c_310_* prefix throughout
13:05 Changeset in rtems [861d315]4.115 by Sebastian Huber <sebastian.huber@…>
bsps/arm: L2C 310 use L2C_310_* prefix throughout
11:24 Changeset in rtems [f2fed0c1]4.115 by Sebastian Huber <sebastian.huber@…>
bsps/arm: L2C 310 add compile time checks Simplify initialization. Replace some assert() with fatal errors.
11:23 Changeset in rtems [a9d6c20]4.115 by Sebastian Huber <sebastian.huber@…>
bsps/arm: L2C 310 simplify and remove white space
11:07 Changeset in rtems [13f1462f]4.115 by Sebastian Huber <sebastian.huber@…>
bsps/arm: L2C 310 delete invalid link
10:51 Changeset in rtems [957c075]4.115 by Sebastian Huber <sebastian.huber@…>
bsps/arm: L2C 310 rename BSP_ARM_L2CC_BASE Rename BSP_ARM_L2CC_BASE to BSP_ARM_L2C_310_BASE.
09:46 Changeset in rtems [6b4a22e3]4.115 by Sebastian Huber <sebastian.huber@…>
shell: Include <rtems/shell.h> early This avoids a conflict with the global variable defines.
09:09 Changeset in rtems [7ecd1fc]4.115 by Chris Johns <chrisj@…>
libmisc: Add the libmisc/redirector to the wrap up.

11/18/14:

20:52 WikiStart edited by Amar Takhar
Clean some markup (diff)
14:33 Changeset in rtems [8dbc612]4.115 by Sebastian Huber <sebastian.huber@…>
shell: Documentation
13:05 Changeset in rtems [3fe5d01]4.115 by Sebastian Huber <sebastian.huber@…>
shell: Add CMDLS, CMDCHOWN, CMDCHMOD commands
11:03 Changeset in rtems [478455e0]4.115 by Sebastian Huber <sebastian.huber@…>
shell: Fix help topic header
10:07 Changeset in rtems [ffd5285]4.115 by Sebastian Huber <sebastian.huber@…>
shell: Inherit UID and GID if no login check Use the UID and GID of the executing user for the real and effective UID and GID of the shell task in case no login check is present. This prevents privilege escalation via shell scripts.
09:42 Changeset in rtems [0b3fcf5]4.115 by Sebastian Huber <sebastian.huber@…>
samples/fileio: Use unlimited objects
09:42 Changeset in rtems [ab085c9]4.115 by Sebastian Huber <sebastian.huber@…>
samples/fileio: Fix warning
09:36 Changeset in rtems [5c141d6a]4.115 by Sebastian Huber <sebastian.huber@…>
shell: Add and use rtems_shell_execute_cmd()
09:13 Changeset in rtems [1227858]4.115 by Sebastian Huber <sebastian.huber@…>
shell: Make rtems_shell_main_joel() static
09:09 Changeset in rtems [66da4844]4.115 by Sebastian Huber <sebastian.huber@…>
shell: Print to stderr in TIME command
09:03 Changeset in rtems [7840b66]4.115 by Sebastian Huber <sebastian.huber@…>
shell: Add initial commands and aliases only once Make tables read-only.
06:39 Changeset in rtems [c3350e7d]4.115 by Sebastian Huber <sebastian.huber@…>
Filesystem: Typo
06:35 Changeset in rtems [7eada71]4.115 by Sebastian Huber <sebastian.huber@…>
shell: Add mode, UID and GID to shell commands Use this information to determine if a command is visible to the current user and if the current user is allowed to execute this command.

11/17/14:

14:58 Changeset in rtems [7a2c30f]4.115 by Sebastian Huber <sebastian.huber@…>
shell: Simplify rtems_shell_add_cmd_struct()
14:42 Changeset in rtems [bac3d6d]4.115 by Sebastian Huber <sebastian.huber@…>
shell: Rename HALT to SHUTDOWN command Use a normal command for shutdown via exit().
13:55 Changeset in rtems [373ccbb9]4.115 by Sebastian Huber <sebastian.huber@…>
shell: Use exiting once initialization Avoid TOCTOU issues. Avoid pull in of global buffers.
12:35 Changeset in rtems [e02d5dd9]4.115 by Sebastian Huber <sebastian.huber@…>
Ensure security of default user environment
12:00 Changeset in rtems [7bfa0970]4.115 by Sebastian Huber <sebastian.huber@…>
dosfs: Avoid MIN() re-definition
10:55 Changeset in rtems [fa028bb]4.115 by Sebastian Huber <sebastian.huber@…>
shell: Do chroot() after successful login
09:19 Changeset in rtems [065d72ce]4.115 by Sebastian Huber <sebastian.huber@…>
shell: Get supplementary group IDs in login check
08:01 Changeset in rtems [b8bd90f6]4.115 by Sebastian Huber <sebastian.huber@…>
Add supplementary groups to user environment
06:53 Changeset in rtems [ffa71f1]4.115 by Sebastian Huber <sebastian.huber@…>
libcsupport: Implement getgroups()

11/16/14:

18:54 Changeset in rtems-source-builder [3834e6a]4.104.114.95 by Jiri Gaisler <jiri@…>
bare/qemu: add patches for leon3 support.

11/14/14:

22:21 Changeset in rtems-source-builder [1a0ccb9]4.104.114.95 by Jiri Gaisler <jiri@…>
sparc-gdb: use patch for leon2/3 support to sis Also fixes the can't compute CFA problem.
22:19 Changeset in rtems-tools [af8c147a]4.104.115 by Jiri Gaisler <jiri@…>
gdb patch to add leon2/3 support to sis This fixes the commit 4bdba3e552f22bbd82ffc9ab2c915a7b4f2eadd5 which added a patch patch.
14:33 Changeset in rtems [395e5d4]4.115 by Sebastian Huber <sebastian.huber@…>
libcsupport: Use POSIX key for getgrent()
13:31 Changeset in rtems [acf9a8d]4.115 by Sebastian Huber <sebastian.huber@…>
shell: Use crypt_r() in rtems_shell_login_check() Use '*" to disable shell login instead of '!' according to the Linux man page. Use getpwnam_r() instead of getpwnam(). Do not access the user environment directly. Update the user environment only after a successful login check.
13:30 Changeset in rtems [002f351]4.115 by Sebastian Huber <sebastian.huber@…>
libcsupport: Minimal /etc/passwd and /etc/group Create a minimal /etc/passwd and /etc/group with user root and group root only with no passwords.
10:30 Changeset in rtems [6935428]4.115 by Sebastian Huber <sebastian.huber@…>
libcsupport: Avoid TOCTOU and format errors
10:09 Changeset in rtems [80055514]4.115 by Sebastian Huber <sebastian.huber@…>
libcsupport: Use pthread_once()
10:01 Changeset in rtems [b471854b]4.115 by Sebastian Huber <sebastian.huber@…>
libcsupport: Split passwd/group support
09:28 Changeset in rtems [d82f9de1]4.115 by Sebastian Huber <sebastian.huber@…>
libcsupport: Add copyrights according to rev hist
07:58 Changeset in rtems [e4d8513]4.115 by Daniel Cederman <cederman@…>
nfs: Add RPCd task affinity config option Similar to the task priority option, the new CPU affinity option is first controlled by the RPCI specific rpciodCpuset option. If that is not set, it uses the global network task config. If that is also not set, it falls back to not setting the affinity at all, using all CPUs.
07:58 Changeset in rtems [69e3f27]4.115 by Daniel Cederman <cederman@…>
net: Add network task affinity config This patch adds a default network tasks CPU affinity configuration option. The network drivers have the option to create their own daemon tasks with a custom CPU affinity set, or rely on the default set.
Note: See TracTimeline for information about the timeline view.