[Spice-devel] [PATCH spice-server 1/3] glz-encoder-dict: Remove useless __packed__ attribute
Frediano Ziglio
fziglio at redhat.com
Mon Jul 22 11:08:39 UTC 2019
The structure has no holes, adding this attribute could only
decrease efficiency.
Note that HashEntry structure is used for a large (8MB) array so
this won't affect much possible container size.
Signed-off-by: Frediano Ziglio <fziglio at redhat.com>
---
server/glz-encoder-priv.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/server/glz-encoder-priv.h b/server/glz-encoder-priv.h
index 08dc007ce..7757f232c 100644
--- a/server/glz-encoder-priv.h
+++ b/server/glz-encoder-priv.h
@@ -76,7 +76,7 @@ struct WindowImageSegment {
};
-struct __attribute__ ((__packed__)) HashEntry {
+struct HashEntry {
uint32_t image_seg_idx;
uint32_t ref_pix_idx;
};
--
2.20.1
More information about the Spice-devel
mailing list