[Spice-devel] [PATCH spice-gtk] If replace me, should not do refcount plus one
Christophe Fergeau
cfergeau at redhat.com
Tue Jul 17 10:07:23 UTC 2018
On Tue, Jul 17, 2018 at 08:17:53AM +0100, Frediano Ziglio wrote:
> From: 乐义华 <yueyihua at os-easy.com>
>
> When an image with SPICE_IMAGE_FLAGS_CACHE_REPLACE_ME is received the
> reference counter should stay the same to avoid the cache to grow
> continously.
>
> This fixes https://gitlab.freedesktop.org/spice/spice-gtk/issues/72
Can you reword the shortlog a bit?
Christophe
>
> Signed-off-by: 乐义华 <yueyihua at os-easy.com>
> Signed-off-by: Frediano Ziglio <fziglio at redhat.com>
> ---
> src/channel-display.c | 5 ++++-
> src/spice-channel-cache.h | 17 +++++++++++++++++
> 2 files changed, 21 insertions(+), 1 deletion(-)
>
> diff --git a/src/channel-display.c b/src/channel-display.c
> index 44ba0439..138cd8ce 100644
> --- a/src/channel-display.c
> +++ b/src/channel-display.c
> @@ -788,7 +788,10 @@ static void image_put_lossy(SpiceImageCache *cache, uint64_t id,
> static void image_replace_lossy(SpiceImageCache *cache, uint64_t id,
> pixman_image_t *surface)
> {
> - image_put(cache, id, surface);
> + SpiceDisplayChannelPrivate *c =
> + SPICE_CONTAINEROF(cache, SpiceDisplayChannelPrivate, image_cache);
> +
> + cache_replace_lossy(c->images, id, pixman_image_ref(surface), FALSE);
> }
>
> static pixman_image_t* image_get_lossless(SpiceImageCache *cache, uint64_t id)
> diff --git a/src/spice-channel-cache.h b/src/spice-channel-cache.h
> index 75cc2cd8..fc25c354 100644
> --- a/src/spice-channel-cache.h
> +++ b/src/spice-channel-cache.h
> @@ -101,6 +101,23 @@ static inline void cache_add_lossy(display_cache *cache, uint64_t id,
> g_hash_table_replace(cache->table, item, value);
> }
>
> +static inline void cache_replace_lossy(display_cache *cache, uint64_t id,
> + gpointer value, gboolean lossy)
> +{
> + display_cache_item *item = cache_item_new(id, lossy);
> +
> + // If image is currently in the table consider its reference count before replacing it
> + if (cache->ref_counted) {
> + display_cache_item *current_item;
> + gpointer current_image;
> + if (g_hash_table_lookup_extended(cache->table, &id, (gpointer*) ¤t_item,
> + ¤t_image)) {
> + item->ref_count = current_item->ref_count;
> + }
> + }
> + g_hash_table_replace(cache->table, item, value);
> +}
> +
> static inline void cache_add(display_cache *cache, uint64_t id, gpointer value)
> {
> cache_add_lossy(cache, id, value, FALSE);
> --
> 2.17.1
>
> _______________________________________________
> Spice-devel mailing list
> Spice-devel at lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/spice-devel
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 833 bytes
Desc: not available
URL: <https://lists.freedesktop.org/archives/spice-devel/attachments/20180717/aa88e53a/attachment.sig>
More information about the Spice-devel
mailing list