summaryrefslogtreecommitdiffstats
path: root/server
diff options
context:
space:
mode:
authorAlon Levy <alevy@redhat.com>2010-11-07 19:44:39 +0200
committerAlon Levy <alevy@redhat.com>2011-02-11 15:32:21 +0200
commit53f5cf43ce6c498831014735406732c76cd80c5e (patch)
tree21ced50bc9abce8cb8c8da8cd23bd6ac3db167aa /server
parentd7521edac125cee5c95c7a1e27bf1866bdb2519d (diff)
downloadspice-53f5cf43ce6c498831014735406732c76cd80c5e.tar.gz
spice-53f5cf43ce6c498831014735406732c76cd80c5e.tar.xz
spice-53f5cf43ce6c498831014735406732c76cd80c5e.zip
server/red_worker: introduce an outgoing struct around out_bytes_counter
Diffstat (limited to 'server')
-rw-r--r--server/red_worker.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/server/red_worker.c b/server/red_worker.c
index 2cf3031a..e692e82f 100644
--- a/server/red_worker.c
+++ b/server/red_worker.c
@@ -391,7 +391,9 @@ struct RedChannel {
channel_handle_parsed_proc handle_parsed;
#ifdef RED_STATISTICS
- uint64_t *out_bytes_counter;
+ struct {
+ uint64_t *out_bytes_counter;
+ } outgoing;
#endif
};
@@ -7368,7 +7370,7 @@ static void red_send_data(RedChannel *channel)
}
} else {
channel->send_data.pos += n;
- stat_inc_counter(channel->out_bytes_counter, n);
+ stat_inc_counter(channel->outgoing.out_bytes_counter, n);
}
}
}
@@ -9498,7 +9500,7 @@ static void handle_new_display_channel(RedWorker *worker, RedsStreamContext *pee
}
#ifdef RED_STATISTICS
display_channel->stat = stat_add_node(worker->stat, "display_channel", TRUE);
- display_channel->common.base.out_bytes_counter = stat_add_counter(display_channel->stat,
+ display_channel->common.base.outgoing.out_bytes_counter = stat_add_counter(display_channel->stat,
"out_bytes", TRUE);
display_channel->cache_hits_counter = stat_add_counter(display_channel->stat,
"cache_hits", TRUE);
@@ -9624,7 +9626,7 @@ static void red_connect_cursor(RedWorker *worker, RedsStreamContext *peer, int m
}
#ifdef RED_STATISTICS
channel->stat = stat_add_node(worker->stat, "cursor_channel", TRUE);
- channel->common.base.out_bytes_counter = stat_add_counter(channel->stat, "out_bytes", TRUE);
+ channel->common.base.outgoing.out_bytes_counter = stat_add_counter(channel->stat, "out_bytes", TRUE);
#endif
ring_init(&channel->cursor_cache_lru);
channel->cursor_cache_available = CLIENT_CURSOR_CACHE_SIZE;