On 22.11.2021 10:28, Oleksandr Andrushchenko wrote: > --- a/xen/include/xen/rangeset.h > +++ b/xen/include/xen/rangeset.h > @@ -51,6 +51,9 @@ void rangeset_limit( > /* Pretty-print range limits in hexadecimal. */ > #define _RANGESETF_prettyprint_hex 0 > #define RANGESETF_prettyprint_hex (1U << _RANGESETF_prettyprint_hex) > +/* Do not print entries marked with this flag. */ > +#define _RANGESETF_no_print 1
There's no need for this, so I'd like to ask that you add ... > +#define RANGESETF_no_print (1U << _RANGESETF_no_print) ... just this. In due course we should do away with _RANGESETF_prettyprint_hex as well (unless you want to do so right at this occasion). Jan
