Re: [PATCH v3 6/8] gzip: move output buffer into gunzip state

2024-04-29 Thread Jan Beulich
On 24.04.2024 18:34, Daniel P. Smith wrote: > --- a/xen/common/gzip/gunzip.c > +++ b/xen/common/gzip/gunzip.c > @@ -15,6 +15,8 @@ struct gunzip_state { > size_t insize; > /* Index of next byte to be processed in inbuf: */ > unsigned int inptr; > + > +unsigned long bytes_out; >

[PATCH v3 6/8] gzip: move output buffer into gunzip state

2024-04-24 Thread Daniel P. Smith
Signed-off-by: Daniel P. Smith --- xen/common/gzip/gunzip.c | 7 --- xen/common/gzip/inflate.c | 2 +- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/xen/common/gzip/gunzip.c b/xen/common/gzip/gunzip.c index 3fb9589b069e..95d924d36726 100644 --- a/xen/common/gzip/gunzip.c