Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | fixed sizeof usage to conform to linux kernel coding style. so, | Mitchell Jareo | 2009-03-01 |
| | | | | | | | | struct x* p = kmalloc(sizeof(struct x), ....) becomes struct x* p = kmalloc(sizeof(*p), ...) for example. | ||
* | LITMUS: remove trailing whitespace for release2008.2 | Bjoern B. Brandenburg | 2008-12-01 |
| | |||
* | ftdev: fix disabling of events | Bjoern B. Brandenburg | 2008-11-10 |
| | | | | The list traversal code was horribly broken. | ||
* | ftdev: don't lose data if task is interrupted | Bjoern B. Brandenburg | 2008-11-03 |
| | |||
* | ftdev: don't get stuck in endless loop | Bjoern B. Brandenburg | 2008-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 opened | Bjoern B. Brandenburg | 2008-10-06 |
| | | | | This is useful to deny opening per-cpu buffers if a CPU is not online. | ||
* | ftdev: don't forget to disable events | Bjoern B. Brandenburg | 2008-09-17 |
| | | | | | Otherwise required buffers may not be present anymore. This patch also fixes some minor initialization issues. | ||
* | feather-trace: introduce ftdev device driver | Bjoern B. Brandenburg | 2008-09-17 |
This will help to redruce code duplication in the long run. |