aboutsummaryrefslogtreecommitdiffstats
path: root/litmus/ftdev.c
Commit message (Collapse)AuthorAge
* fixed sizeof usage to conform to linux kernel coding style. so,Mitchell Jareo2009-03-01
| | | | | | | | struct x* p = kmalloc(sizeof(struct x), ....) becomes struct x* p = kmalloc(sizeof(*p), ...) for example.
* LITMUS: remove trailing whitespace for release2008.2Bjoern B. Brandenburg2008-12-01
|
* ftdev: fix disabling of eventsBjoern B. Brandenburg2008-11-10
| | | | The list traversal code was horribly broken.
* ftdev: don't lose data if task is interruptedBjoern B. Brandenburg2008-11-03
|
* ftdev: don't get stuck in endless loopBjoern B. Brandenburg2008-11-03
| | | | | This bug created unkillable tasks if the first event did not match the event that was being disabled.
* ftdev: provide a callback to test whether a device can be openedBjoern B. Brandenburg2008-10-06
| | | | This is useful to deny opening per-cpu buffers if a CPU is not online.
* ftdev: don't forget to disable eventsBjoern B. Brandenburg2008-09-17
| | | | | Otherwise required buffers may not be present anymore. This patch also fixes some minor initialization issues.
* feather-trace: introduce ftdev device driverBjoern B. Brandenburg2008-09-17
This will help to redruce code duplication in the long run.