summaryrefslogtreecommitdiffstats
path: root/cpukit (unfollow)
Commit message (Collapse)AuthorFilesLines
2018-04-24drvmgr: Really fix API mutex usageSebastian Huber1-2/+2
2018-04-24drvmgr: Use API mutex usageSebastian Huber1-4/+8
The driver manager lock may be used before the executing thread is initialized.
2018-04-20sparc: Move irq_asm.SSebastian Huber2-0/+904
This file is BSP-independent. This patch is a part of the BSP source reorganization. Update #3285.
2018-04-20sparc: Move _CPU_Trap_slot_templateSebastian Huber1-0/+16
The definition of _CPU_Trap_slot_template is BSP-independent. A potential para-virtualization support may use <rtems/score/paravirt.h>. This patch is a part of the BSP source reorganization. Update #3285.
2018-04-20drvmgr: Remove bsp_driver_level_hook()Sebastian Huber2-15/+0
Use RTEMS_SYSINIT_ITEM() instead. Update #2408.
2018-04-16Remove register keyword from public header filesSebastian Huber11-52/+52
The following code void f(void) { register int i; } gives a warning with GCC and -std=c++17 test.cc: In function ‘void f()’: test.cc:3:15: warning: ISO C++1z does not allow ‘register’ storage class specifier [-Wregister] register int i; ^ and clang with -std=c++14 test.cc:3:3: warning: 'register' storage class specifier is deprecated and incompatible with C++1z [-Wdeprecated-register] register int i; ^~~~~~~~~ 1 warning generated. Remove the use of the register keyword at least in the public header files for C++ compatibility. Close #3397.
2018-04-12libdl: Remove _t from all structures as this is reserved for the standardsChris Johns46-1124/+1123
2018-04-12libdl: RAP format fixes.Chris Johns1-8/+10
- Do not error if a RAP section is not found. - Free a symbol table via the RTL allocator interface. - Add the symbols to the global symbol table. Update #2769
2018-04-12NFS: Remove support for cexpSebastian Huber7-912/+9
Avoid use of RTEMS_RELLDFLAGS. Close #3390.
2018-04-12build: Add support for automake's silent build support.Chris Johns1-9/+9
2018-04-11build: Fix make clean.Chris Johns1-1/+2
Update #3254.
2018-04-11cpukit/mttpd: Add a callback to generate a per file HTTP etagChris Johns2-6/+26
Close #3323.
2018-04-11Fill in the correct d_off in rtems_rfs_dir_read.Fan Deng1-1/+1
rtems_rfs_dir_read searches the directory inode's entries list starting at the specified offset until an empty entry (last entry) is encountered. It fills in a struct dirent with the name of the entry, length of the name, ino of the entry, and the absolute offset of the entry in the parent directory's entries list. Unfortunately, the stock implementation of rtems_rfs_dir_read returns a somewhat arbitrary offset (as dirent::d_off), while rtems_rfs_dir_lookup_ino always returns the correct offset. This change fixes that logic so the returned offset is accurate. Tested by comparing the offset returned in dirent with the result of rtems_rfs_dir_lookup_ino.
2018-04-11Fixes bitmap allocation accounting logic in rtems-rfs-bitmaps.cFan Deng1-18/+47
The bitmap allocation accounting logic in rtems-rfs-bitmaps.c is flawed around control->free. Specifically: In rtems_rfs_bitmap_map_set(): control->free is only decremented when its corresponding search bit is toggled. This is wrong and will miss on average 31/32 set updates. In rtems_rfs_bitmap_map_clear(): control->free is incremented unconditionally. The correct behavior is: When updating the map, check if the bit is already set/clear. Only update control->free when the bit is toggled. This change enforced the correct behavior. Tested by inspecting the internal data structure.
2018-04-11Reset free count properly in rtems_rfs_bitmap_map_clear_all().Fan Deng1-1/+1
In rtems_rfs_bitmap_map_clear_all(), control->free is set to 'elements', which is the number of elements in the bitmap. This is incorrect, as control->free should contain the number of free bits, not elements. This change fixes the logic and resets control->free to a correct value.
2018-04-11Make bit addressing consistent in rtems_rfs_group.cFan Deng1-1/+12
This change fixes https://devel.rtems.org/ticket/3089. Briefly, rtems_rfs_group.c contains conflicting conversions between block numbers and group number and bit offset pairs. This caused the actual bit stored on the bitmask to be one bit displaced from its intended location. For more details, please see the associated ticket. Tested by inspecting the written bitmasks with and without this change.
2018-04-09build: Remove DISTCLEANFILESSebastian Huber4-4/+0
A "make distclean" is not supported. So, it makes no sense to have pure "make distclean" related stuff in the Makefile.am.
2018-04-04build: Remove EXTRA_DISTSebastian Huber13-44/+0
A "make dist" is not supported. So, it makes no sense to have pure "make dist" related stuff in the Makefile.am.
2018-03-27Remove unused POSIX_NOT_IMPLEMENTED() declarationSebastian Huber1-5/+0
2018-03-22mpci: Fix _MPCI_Enqueue_callout()Sebastian Huber1-1/+2
Update #3117. Update #3182.
2018-03-22config: Fix re-definition warningSebastian Huber1-14/+3
2018-03-22mpci: Update due to thread queue API changesSebastian Huber1-6/+7
Update #3117. Update #3182.
2018-03-16i386/smp: Export _CPU_SMP_Prepare_start_multitasking as a functionAmaan Cheval1-2/+1
When it's a macro, a function declaration causes a compiler error due to the macro being expanded. Partial log showing error: https://gist.github.com/AmaanC/ab3521141479aa6f61ea25f5d74ebb4d Closes #3331
2018-03-16i386/smp: Define CPU_Interrupt_frame as non-void structAmaan Cheval1-1/+15
This change, excluding the #error directive, lets us make progress towards compiling i386 targets with --enable-smp. The #error directive needs to be there since the CPU_Interrupt_frame is used by the SMP context switching code, and this placeholder struct, if used, would only lead to more subtle bugs and errors. With the directive, the SMP context switching code can be improved separately. Updates #3331
2018-03-16rtems/bfin/bf533.h: Eliminate redefinition warning and add sanity checkJoel Sherrill1-0/+9
Closes #3346.
2018-03-16imfs: Use most efficient way to get the timeSebastian Huber1-18/+17
As a side-effect, this fixes some warnings. Close #3350.
2018-03-13Add PowerPC paravirtualization supportJoel Sherrill4-0/+94
Cannot read or write MSR when executing in user mode. This is used when RTEMS_PARAVIRT is defined. Provide alternate methods to disable/enable interrupts Closes #3306.
2018-03-13Add ARM Paravirtualization supportJoel Sherrill4-3/+90
Closes #3305.
2018-03-13Rework i386 Paravirtualization to have paravirt.hJoel Sherrill5-3/+70
2018-03-13sparc64: Move libcpu content to cpukitSebastian Huber5-5/+906
This patch is a part of the BSP source reorganization. Update #3285.
2018-03-13sparc: Move libcpu content to cpukitSebastian Huber8-4/+756
This patch is a part of the BSP source reorganization. Update #3285.
2018-03-12sparc/include/rtems/score/types.h: Eliminate this fileJoel Sherrill4-56/+5
Updates #3327.
2018-03-12sparc64/include/rtems/score/types.h: Eliminate this fileJoel Sherrill3-47/+4
Updates #3327.
2018-03-12powerpc/include/rtems/score/types.h: Eliminate this fileJoel Sherrill4-63/+5
Updates #3327.
2018-03-12m68k/include/rtems/score/types.h: Eliminate this fileJoel Sherrill3-45/+3
Updates #3327.
2018-03-12riscv/include/rtems/score/types.h: Eliminate this fileJoel Sherrill3-72/+4
Updates #3327.
2018-03-12arm/include/rtems/score/types.h: Eliminate this fileJoel Sherrill3-53/+4
Updates #3327.
2018-03-12v850/include/rtems/score/types.h: Eliminate this fileJoel Sherrill3-45/+4
Updates #3327.
2018-03-12no_cpu/include/rtems/score/types.h: Eliminate this fileJoel Sherrill3-45/+5
Updates #3327.
2018-03-12or1k/include/rtems/score/types.h: Eliminate this fileJoel Sherrill3-55/+4
Updates #3327.
2018-03-12m32c/include/rtems/score/types.h: Eliminate this fileJoel Sherrill3-51/+4
Updates #3327.
2018-03-12moxie/include/rtems/score/types.h: Eliminate this fileJoel Sherrill3-58/+4
Updates #3327.
2018-03-12sh/include/rtems/score/types.h: Eliminate this fileJoel Sherrill3-58/+8
Updates #3327.
2018-03-12nios2/include/rtems/score/types.h: Eliminate this fileJoel Sherrill3-48/+4
Updates #3327.
2018-03-12epiphany/include/rtems/score/types.h: Eliminate this fileJoel Sherrill3-69/+4
Updates #3327.
2018-03-12lm32/include/rtems/score/types.h: Eliminate this fileJoel Sherrill3-48/+4
Updates #3327.
2018-03-12i386/include/rtems/score/types.h: Eliminate this fileJoel Sherrill4-49/+4
Updates #3327.
2018-03-12mips/include/rtems/score/types.h: Eliminate this fileJoel Sherrill3-60/+4
Updates #3327.
2018-03-12bfin/include/rtems/score/types.h: Eliminate this fileJoel Sherrill3-51/+4
Updates #3327.
2018-03-12shell: Fix rtems_shell_init_env()Sebastian Huber1-1/+1
Do not discard a user provided task name in rtems_shell_init_env().