Re: [PATCH v2 2/2] hexdump: Allow skipping identical lines

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On Fri, 17 Jan 2025 17:27:26 +0100
Petr Mladek <pmladek@xxxxxxxx> wrote:

...
> IMHO, it is perfectly fine to add support for skipping identical lines
> only to print_hex_dump(). And I would go even further and replace
> 
> void print_hex_dump(const char *level, const char *prefix_str, int prefix_type,
> 		    int rowsize, int groupsize,
> 		    const void *buf, size_t len, bool ascii)
> 
> with
> 
> void print_hex_dump(const char *level, const char *prefix_str,
> 		    enum hex_dump_type,
> 		    int rowsize, int groupsize,
> 		    const void *buf, size_t len)
> 
> and combine all the flags into the one enum:
> 
> enum hex_dump_type {
> 	DUMP_HEX_ONLY = 0,
> 	DUMP_HEX_AND_ASCII = BIT(1),
> 	DUMP_PREFIX_ADDRESS = BIT(2),
> 	DUMP_PREFIX_OFFSET = BIT(3),
> 	DUMP_SKIP_IDENTICAL_LINES = BIT(4),
> };
> 
> How does that sound, please?

Rename it as (say) print_hex() and add wrappers for the existing callers?

	David

> 
> Best Regards,
> Petr
> 





[Index of Archives]     [Kernel Newbies]     [Security]     [Netfilter]     [Bugtraq]     [Linux FS]     [Yosemite Forum]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]     [Samba]     [Video 4 Linux]     [Device Mapper]     [Linux Resources]

  Powered by Linux