-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Mathieu Desnoyers
authored and
Greg Kroah-Hartman
committed
Nov 29, 2011
1 parent
3605568
commit d7d4ec8
Showing
9 changed files
with
1,026 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 54a69e5511f5031d3d14e1418ef7ea2456a73684 | ||
refs/heads/master: 6857797120e99facc465a972026038199e4c2356 |
21 changes: 21 additions & 0 deletions
21
trunk/drivers/staging/lttng/ltt-ring-buffer-client-discard.c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
/* | ||
* ltt-ring-buffer-client-discard.c | ||
* | ||
* Copyright (C) 2010 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com> | ||
* | ||
* LTTng lib ring buffer client (discard mode). | ||
* | ||
* Dual LGPL v2.1/GPL v2 license. | ||
*/ | ||
|
||
#include <linux/module.h> | ||
#include "ltt-tracer.h" | ||
|
||
#define RING_BUFFER_MODE_TEMPLATE RING_BUFFER_DISCARD | ||
#define RING_BUFFER_MODE_TEMPLATE_STRING "discard" | ||
#define RING_BUFFER_OUTPUT_TEMPLATE RING_BUFFER_SPLICE | ||
#include "ltt-ring-buffer-client.h" | ||
|
||
MODULE_LICENSE("GPL and additional rights"); | ||
MODULE_AUTHOR("Mathieu Desnoyers"); | ||
MODULE_DESCRIPTION("LTTng Ring Buffer Client Discard Mode"); |
21 changes: 21 additions & 0 deletions
21
trunk/drivers/staging/lttng/ltt-ring-buffer-client-mmap-discard.c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
/* | ||
* ltt-ring-buffer-client-discard.c | ||
* | ||
* Copyright (C) 2010 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com> | ||
* | ||
* LTTng lib ring buffer client (discard mode). | ||
* | ||
* Dual LGPL v2.1/GPL v2 license. | ||
*/ | ||
|
||
#include <linux/module.h> | ||
#include "ltt-tracer.h" | ||
|
||
#define RING_BUFFER_MODE_TEMPLATE RING_BUFFER_DISCARD | ||
#define RING_BUFFER_MODE_TEMPLATE_STRING "discard-mmap" | ||
#define RING_BUFFER_OUTPUT_TEMPLATE RING_BUFFER_MMAP | ||
#include "ltt-ring-buffer-client.h" | ||
|
||
MODULE_LICENSE("GPL and additional rights"); | ||
MODULE_AUTHOR("Mathieu Desnoyers"); | ||
MODULE_DESCRIPTION("LTTng Ring Buffer Client Discard Mode"); |
21 changes: 21 additions & 0 deletions
21
trunk/drivers/staging/lttng/ltt-ring-buffer-client-mmap-overwrite.c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
/* | ||
* ltt-ring-buffer-client-overwrite.c | ||
* | ||
* Copyright (C) 2010 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com> | ||
* | ||
* LTTng lib ring buffer client (overwrite mode). | ||
* | ||
* Dual LGPL v2.1/GPL v2 license. | ||
*/ | ||
|
||
#include <linux/module.h> | ||
#include "ltt-tracer.h" | ||
|
||
#define RING_BUFFER_MODE_TEMPLATE RING_BUFFER_OVERWRITE | ||
#define RING_BUFFER_MODE_TEMPLATE_STRING "overwrite-mmap" | ||
#define RING_BUFFER_OUTPUT_TEMPLATE RING_BUFFER_MMAP | ||
#include "ltt-ring-buffer-client.h" | ||
|
||
MODULE_LICENSE("GPL and additional rights"); | ||
MODULE_AUTHOR("Mathieu Desnoyers"); | ||
MODULE_DESCRIPTION("LTTng Ring Buffer Client Overwrite Mode"); |
21 changes: 21 additions & 0 deletions
21
trunk/drivers/staging/lttng/ltt-ring-buffer-client-overwrite.c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
/* | ||
* ltt-ring-buffer-client-overwrite.c | ||
* | ||
* Copyright (C) 2010 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com> | ||
* | ||
* LTTng lib ring buffer client (overwrite mode). | ||
* | ||
* Dual LGPL v2.1/GPL v2 license. | ||
*/ | ||
|
||
#include <linux/module.h> | ||
#include "ltt-tracer.h" | ||
|
||
#define RING_BUFFER_MODE_TEMPLATE RING_BUFFER_OVERWRITE | ||
#define RING_BUFFER_MODE_TEMPLATE_STRING "overwrite" | ||
#define RING_BUFFER_OUTPUT_TEMPLATE RING_BUFFER_SPLICE | ||
#include "ltt-ring-buffer-client.h" | ||
|
||
MODULE_LICENSE("GPL and additional rights"); | ||
MODULE_AUTHOR("Mathieu Desnoyers"); | ||
MODULE_DESCRIPTION("LTTng Ring Buffer Client Overwrite Mode"); |
Oops, something went wrong.