[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH 5/5] trace: Update docs to use example events that e
From: |
Stefan Hajnoczi |
Subject: |
[Qemu-devel] [PATCH 5/5] trace: Update docs to use example events that exist |
Date: |
Wed, 21 Sep 2011 11:36:37 +0100 |
From: Lluís Vilanova <address@hidden>
The events 'qemu_malloc' and 'qemu_free' used in the examples no longer exist,
so use 'qemu_vmalloc' and 'qemu_vfree' instead.
Signed-off-by: Lluís Vilanova <address@hidden>
Signed-off-by: Stefan Hajnoczi <address@hidden>
---
docs/tracing.txt | 16 +++++++++-------
1 files changed, 9 insertions(+), 7 deletions(-)
diff --git a/docs/tracing.txt b/docs/tracing.txt
index 2c33a62..95ca16c 100644
--- a/docs/tracing.txt
+++ b/docs/tracing.txt
@@ -31,8 +31,8 @@ There is a set of static trace events declared in the
"trace-events" source
file. Each trace event declaration names the event, its arguments, and the
format string which can be used for pretty-printing:
- qemu_malloc(size_t size, void *ptr) "size %zu ptr %p"
- qemu_free(void *ptr) "ptr %p"
+ qemu_vmalloc(size_t size, void *ptr) "size %zu ptr %p"
+ qemu_vfree(void *ptr) "ptr %p"
The "trace-events" file is processed by the "tracetool" script during build to
generate code for the trace events. Trace events are invoked directly from
@@ -40,14 +40,16 @@ source code like this:
#include "trace.h" /* needed for trace event prototype */
- void *qemu_malloc(size_t size)
+ void *qemu_vmalloc(size_t size)
{
void *ptr;
- if (!size && !allow_zero_malloc()) {
- abort();
+ size_t align = QEMU_VMALLOC_ALIGN;
+
+ if (size < align) {
+ align = getpagesize();
}
- ptr = oom_check(malloc(size ? size : 1));
- trace_qemu_malloc(size, ptr); /* <-- trace event */
+ ptr = qemu_memalign(align, size);
+ trace_qemu_vmalloc(size, ptr);
return ptr;
}
--
1.7.5.4
- [Qemu-devel] [PULL 0/5] Tracing patches, Stefan Hajnoczi, 2011/09/21
- [Qemu-devel] [PATCH 1/5] trace: allow trace events with string arguments, Stefan Hajnoczi, 2011/09/21
- [Qemu-devel] [PATCH 2/5] MAINTAINERS: add tracing subsystem, Stefan Hajnoczi, 2011/09/21
- [Qemu-devel] [PATCH 3/5] trace: portable simple trace backend using glib, Stefan Hajnoczi, 2011/09/21
- [Qemu-devel] [PATCH 4/5] trace: use binary file open mode in simpletrace, Stefan Hajnoczi, 2011/09/21
- [Qemu-devel] [PATCH 5/5] trace: Update docs to use example events that exist,
Stefan Hajnoczi <=
- Re: [Qemu-devel] [PULL 0/5] Tracing patches, Anthony Liguori, 2011/09/22