Re: [Qemu-devel] [PATCH v3 0/4] trace-events: print 0x before hex numbers

2017-08-01 Thread Stefan Hajnoczi
On Mon, Jul 31, 2017 at 07:01:31PM +0300, Vladimir Sementsov-Ogievskiy wrote: > Hi all! > > It is hard to read logs, when there are hex and dec numbers in one line, when > hex number doesn't contain any letters and don't have '0x' prefix. > > So, here is a complete solution for the problem: > >

Re: [Qemu-devel] [PATCH v3 0/4] trace-events: print 0x before hex numbers

2017-07-31 Thread no-reply
Hi, This series seems to have some coding style problems. See output below for more information: Subject: [Qemu-devel] [PATCH v3 0/4] trace-events: print 0x before hex numbers Message-id: 20170731160135.12101-1-vsement...@virtuozzo.com Type: series === TEST SCRIPT BEGIN === #!/bin/bash BASE

[Qemu-devel] [PATCH v3 0/4] trace-events: print 0x before hex numbers

2017-07-31 Thread Vladimir Sementsov-Ogievskiy
Hi all! It is hard to read logs, when there are hex and dec numbers in one line, when hex number doesn't contain any letters and don't have '0x' prefix. So, here is a complete solution for the problem: - add information into CODING_STYLE - add a check into checkpatch.pl - fix current state The