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; > };
The conversion to unsigned long from ... > @@ -42,7 +44,6 @@ typedef unsigned long ulg; > # define Tracecv(c, x) > #endif > > -static long __initdata bytes_out; ... this originally wants justifying in the (then no longer empty) description. It's not a lot that needs saying, but such a type change cannot go entirely silently. Jan