| Commit message (Collapse) | Author | Age |
| |
|
|
|
|
|
| |
This fixes a problem on a 48-core platform where tasks couldn't be
migrated to certain cores.
|
|
|
|
| |
This change should be transparent to clients of the library.
|
| |
|
|
|
|
| |
These are provided elsewhere, we don't need to reimplement them.
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
| |
Add an option that, together with -v (verbose), makes rtspin print
interrupt information from its control page.
|
| |
|
|
|
|
|
| |
Thanks to Geoffrey Tran <gtran@isi.edu> for reporting the outdated
information.
|
| |
|
|
|
|
| |
Signed-off-by: Bjoern Brandenburg <bbb@mpi-sws.org>
|
|
|
|
| |
Triggers a BUG_ON() in the old kernel.
|
|
|
|
|
| |
Logging PIDs makes finding the right message in kernel debug traces
easier...
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
| |
The -r flag allows specifying a "virtual CPU" (in addition to a
physcial CPU to migrate to) that may be interpreted by a scheduler
plugin to refer to a reservation to which the task should be added.
The -v flag causes rtspin to output timing information on stdout and
can be useful for early-stage plugin debugging (to see that something
is happening at all).
|
| |
|
|
|
|
|
| |
With the addition of SCHED_DEADLINE in mainline Linux, we have to
adjust the ID of SCHED_LITMUS.
|
| |
|
|
|
|
|
|
|
| |
This patch fixes a bug in read_mapping(), which is used for
reading CPU and cluster (domain) mappings. read_mapping()
did not account for the case when NR_CPUS is not evenly
divisible by 32 (quite common when NR_CPUS < 32).
|
|
|
|
|
| |
Patch cleans up an error message to match the
migrate-to-domain API.
|
|
|
|
|
|
|
| |
This patch removes unneeded code from be_migrate_thread_to_domain().
This function no longer needs to check the number of online
CPUs since the CPU mask for a given domain is now returned directly
from read_mapping().
|
|
|
|
|
|
|
| |
Switch rt_launch to use a more modern way to launch real-time tasks.
This makes rt_launch more flexible, makes it more similar to rtspin,
and also allows to let us get rid of a chunk of old, inflexible code
in liblitmus that wasn't really serving any useful purpose anymore.
|
|
|
|
| |
Don't override the defaults unless required.
|
|
|
|
|
| |
This patch adds S_IRUSR as the third parameter to open()
in the DFLP locking unit test.
|
|
|
|
|
|
|
|
|
|
|
|
| |
This patch improves the cpu bit map parsing used to determine
CPU/cluster mapping. Namely, it supports clusters with more
than 32 CPUs. Prior to this patch, mapping would fail due to
unexpected commas in bitfield data read from /proc (groups
of 32 CPUs are separated by commas).
NOTE: Bug could still be encountered if NR_CPUS > 32.
New CPU limit: 4096.
|
|
|
|
|
|
|
|
| |
The LITMUS^RT kernel was changed to no longer test for "invalid" CPU
paramters to allow reuse of the CPU parameter to denote virtual CPUs,
reservations, etc.
This patch removes the corresponding test.
|
| |
|
|
|
|
| |
Just add the ID and symbol.
|
|
|
|
|
|
| |
Make sure new default parameters such as the deadline are taken care
of in the old task creation routines. This fixes a problem with
rt_launch.
|
|
|
|
|
| |
This crashes old versions of the kernel. Kernel patches fixing the
various panics have been merged into the kernel staging tree.
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This patch replaces the algorithm used to compute CPU affinity masks.
The old algorithm was fragile and would break on systems with multiple
levels of shared caches. (As found on some older Intel chips, and as
one would probably find on a system with hyper-threading enabled.) The
bug stems from fact that Linux enumerates consecutive CPUs in a way
that distributes them across the physical system, thereby reducing
contention resources (e.g., cache).
Cluster size no longer needs to be provided now that cluster/CPU
mappings are explicit in /proc/litmus/domains/.
This keeps the following migration functions, but marks them as
deprecated:
- be_migrate_to_cluster()
- cluster_to_first_cpu()
- partition_to_cpu()
Although the deprecated interfaces are supported, the implementations
for these functions call the new be_migrate_to_domain() and
domain_to_first_cpu() functions.
[bbb: resolved several merge conflicts]
|
|
|
|
| |
Also adjust 'make clean' and .gitignore.
|
| |
|
|
|
|
|
|
| |
Fixed build on ARMv7
Signed-off-by: Roy Spliet <rspliet@mpi-sws.org>
|
|
|
|
|
|
|
| |
Renames the 'namespace' parameter to litmus_open_lock() forard
declaration in litmus.h to 'name_space'. This allows litmus.h
to be compiled by a C++ compiler. (Note: Using 'extern "C" {}'
does not work as an alternative solution.)
|
|
|
|
| |
This matches the corresponding change in the kernel.
|
|
|
|
|
|
|
|
|
|
|
| |
The userspace versions of unistd.h have moved to include/uapi/asm in
recent kernel versions; we need to adjust the liblitmus Makefile
accordingly.
Further, on x86, the unistd_32.h and unistd_64.h files are now
actually being auto-generated; this also forced adjustments.
This patch is required for liblitmus to compile against Linux 3.10.
|
|
|
|
| |
The string 'NO_CPU' needs to fit into the buffer.
|
|
|
|
|
| |
Complements the prior test for suspended tasks. All plugins currently
pass this test.
|
|
|
|
|
|
| |
The kernel needs to be able to deal with tasks that do not make
themselves a real-time task, but get configured by some other task
instead.
|
|
|
|
|
| |
A recent patch changed the name of the constant in the kernel. Update
liblitmus accordingly.
|
|
|
|
|
|
|
|
| |
My version of gcc would complain about "dereferencing pointer does
break strict-aliasing rules" because of a (harmless) pointer cast.
This patch adds a helper void pointer to make the assignment explicit,
which avoids the cast and hence silences the warning.
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
The sproadic_*() macros have become unwieldy. This patch
replaces those convenience macros for global, clustered,
and partitioned scheduling. A part of this API change
is the explicit use of nanosecond time-values. Prior APIs
have used lt_t (litmus time), which had an implied time
scale of nanoseconds.
/bin apps and test suite also updated to use revised API.
Modifications to the test suite are mostly centered around
using nanoseconds instead of milliseconds.
|
|
|
|
|
| |
Adds init_rt_task_param(). Facilitates setting up default
real-time task attributes that cannot be set by memset(0).
|