Re: [PATCH] perf: fix typo in builtin-kmem.c

From: Li Zefan
Date: Mon Dec 21 2009 - 22:15:26 EST


Wenji Huang wrote:
> Replace bytes_req with bytes_alloc.
>

Thanks!

Reviewed-by: Li Zefan <lizf@xxxxxxxxxxxxxx>

> Signed-off-by: Wenji Huang <wenji.huang@xxxxxxxxxx>
> ---
> tools/perf/builtin-kmem.c | 4 ++--
> 1 files changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/tools/perf/builtin-kmem.c b/tools/perf/builtin-kmem.c
> index fc21ad7..7ceb741 100644
> --- a/tools/perf/builtin-kmem.c
> +++ b/tools/perf/builtin-kmem.c
> @@ -137,7 +137,7 @@ static void insert_alloc_stat(unsigned long call_site, unsigned long ptr,
> if (data && data->ptr == ptr) {
> data->hit++;
> data->bytes_req += bytes_req;
> - data->bytes_alloc += bytes_req;
> + data->bytes_alloc += bytes_alloc;
> } else {
> data = malloc(sizeof(*data));
> if (!data)
> @@ -177,7 +177,7 @@ static void insert_caller_stat(unsigned long call_site,
> if (data && data->call_site == call_site) {
> data->hit++;
> data->bytes_req += bytes_req;
> - data->bytes_alloc += bytes_req;
> + data->bytes_alloc += bytes_alloc;
> } else {
> data = malloc(sizeof(*data));
> if (!data)
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/