Re: [PATCH v3 4/8] gzip: move window pointer into gunzip state

2024-04-29 Thread Jan Beulich
On 24.04.2024 18:34, Daniel P. Smith wrote: > Move the window pointer, outcnt/wp, into struct gunzip_data. It was > erroneously > labeled as outcnt and then define aliased to wp, this eliminates the aliasing > and only refers to as wp, the window pointer. > > Signed-off-by: Daniel P. Smith

[PATCH v3 4/8] gzip: move window pointer into gunzip state

2024-04-24 Thread Daniel P. Smith
Move the window pointer, outcnt/wp, into struct gunzip_data. It was erroneously labeled as outcnt and then define aliased to wp, this eliminates the aliasing and only refers to as wp, the window pointer. Signed-off-by: Daniel P. Smith --- xen/common/gzip/gunzip.c | 11 +--