Re: [dpdk-dev] [PATCH] checkpatch: re-enable warnings about split long strings

2019-03-28 Thread Ferruh Yigit
On 3/28/2019 7:02 PM, Ferruh Yigit wrote: > On 10/3/2017 11:56 AM, adrien.mazarguil at 6wind.com (Adrien Mazarguil) wrote: >> On Tue, Oct 03, 2017 at 11:38:13AM +0100, Bruce Richardson wrote: >>> On Mon, Oct 02, 2017 at 06:21:06PM +0200, Adrien Mazarguil wrote: On Mon, Oct 02, 2017 at 02:46:24

Re: [dpdk-dev] [PATCH] checkpatch: re-enable warnings about split long strings

2019-03-28 Thread Ferruh Yigit
On 10/3/2017 11:56 AM, adrien.mazarguil at 6wind.com (Adrien Mazarguil) wrote: > On Tue, Oct 03, 2017 at 11:38:13AM +0100, Bruce Richardson wrote: >> On Mon, Oct 02, 2017 at 06:21:06PM +0200, Adrien Mazarguil wrote: >>> On Mon, Oct 02, 2017 at 02:46:24PM +0100, Bruce Richardson wrote: On Mon,

Re: [dpdk-dev] [PATCH] checkpatch: re-enable warnings about split long strings

2017-10-03 Thread Adrien Mazarguil
On Tue, Oct 03, 2017 at 11:38:13AM +0100, Bruce Richardson wrote: > On Mon, Oct 02, 2017 at 06:21:06PM +0200, Adrien Mazarguil wrote: > > On Mon, Oct 02, 2017 at 02:46:24PM +0100, Bruce Richardson wrote: > > > On Mon, Oct 02, 2017 at 01:53:17PM +0200, Adrien Mazarguil wrote: > > > > Hi Stephen, > >

Re: [dpdk-dev] [PATCH] checkpatch: re-enable warnings about split long strings

2017-10-03 Thread Bruce Richardson
On Mon, Oct 02, 2017 at 06:21:06PM +0200, Adrien Mazarguil wrote: > On Mon, Oct 02, 2017 at 02:46:24PM +0100, Bruce Richardson wrote: > > On Mon, Oct 02, 2017 at 01:53:17PM +0200, Adrien Mazarguil wrote: > > > Hi Stephen, > > > > > > On Fri, Sep 29, 2017 at 08:37:49AM -0700, Stephen Hemminger wrot

Re: [dpdk-dev] [PATCH] checkpatch: re-enable warnings about split long strings

2017-10-02 Thread Adrien Mazarguil
On Mon, Oct 02, 2017 at 02:46:24PM +0100, Bruce Richardson wrote: > On Mon, Oct 02, 2017 at 01:53:17PM +0200, Adrien Mazarguil wrote: > > Hi Stephen, > > > > On Fri, Sep 29, 2017 at 08:37:49AM -0700, Stephen Hemminger wrote: > > > The Linux kernel style policy about strings is that strings should

Re: [dpdk-dev] [PATCH] checkpatch: re-enable warnings about split long strings

2017-10-02 Thread Bruce Richardson
On Mon, Oct 02, 2017 at 01:53:17PM +0200, Adrien Mazarguil wrote: > Hi Stephen, > > On Fri, Sep 29, 2017 at 08:37:49AM -0700, Stephen Hemminger wrote: > > The Linux kernel style policy about strings is that strings should > > be always put on one line. This makes sense since a typical use case > >

Re: [dpdk-dev] [PATCH] checkpatch: re-enable warnings about split long strings

2017-10-02 Thread Adrien Mazarguil
Hi Stephen, On Fri, Sep 29, 2017 at 08:37:49AM -0700, Stephen Hemminger wrote: > The Linux kernel style policy about strings is that strings should > be always put on one line. This makes sense since a typical use > case is for a user to type the error message into a search engine > or grep, and i

Re: [dpdk-dev] [PATCH] checkpatch: re-enable warnings about split long strings

2017-10-02 Thread Luca Boccassi
On Fri, 2017-09-29 at 08:37 -0700, Stephen Hemminger wrote: > The Linux kernel style policy about strings is that strings should > be always put on one line. This makes sense since a typical use > case is for a user to type the error message into a search engine > or grep, and it won't be found if

[dpdk-dev] [PATCH] checkpatch: re-enable warnings about split long strings

2017-09-29 Thread Stephen Hemminger
The Linux kernel style policy about strings is that strings should be always put on one line. This makes sense since a typical use case is for a user to type the error message into a search engine or grep, and it won't be found if split across lines. This patch just re-enables that check. Yes, lot