Re: [PATCH] qeth: Convert use of __constant_htons to htons

2015-08-19 Thread Vaishali Thakkar
m.com, linux-s...@vger.kernel.org, Linux Kernel >> Mailing List >> Date:19/08/2015 07:02 >> Subject: Re: [PATCH] qeth: Convert use of __constant_htons to >> htons >> >> __ >> &g

Re: [PATCH] qeth: Convert use of __constant_htons to htons

2015-08-19 Thread Ursula Braun
19/08/2015 07:02 > Subject: Re: [PATCH] qeth: Convert use of __constant_htons to > htons > > __ > > > > On Fri, Jun 12, 2015 at 1:12 PM, Ursula Braun > wrote: > > Thanks Vai

Re: [PATCH] qeth: Convert use of __constant_htons to htons

2015-08-19 Thread Vaishali Thakkar
, heica...@linux.vnet.ibm.com, linux-s...@vger.kernel.org, Linux Kernel Mailing List linux-kernel@vger.kernel.org Date:19/08/2015 07:02 Subject:Re: [PATCH] qeth: Convert use of __constant_htons to htons

Re: [PATCH] qeth: Convert use of __constant_htons to htons

2015-08-19 Thread Ursula Braun
Mailing List linux-kernel@vger.kernel.org Date:19/08/2015 07:02 Subject:Re: [PATCH] qeth: Convert use of __constant_htons to htons __ On Fri, Jun 12, 2015 at 1:12 PM, Ursula Braun ubr

Re: [PATCH] qeth: Convert use of __constant_htons to htons

2015-08-18 Thread Vaishali Thakkar
On Fri, Jun 12, 2015 at 1:12 PM, Ursula Braun wrote: > Thanks Vaishali. I have added your patch to our local kernel git, and > will submit it within a following upstream shipment. Hi Ursula, Can you please tell me when this patch is going to be added in linux-next? I don't see them in

Re: [PATCH] qeth: Convert use of __constant_htons to htons

2015-08-18 Thread Vaishali Thakkar
On Fri, Jun 12, 2015 at 1:12 PM, Ursula Braun ubr...@linux.vnet.ibm.com wrote: Thanks Vaishali. I have added your patch to our local kernel git, and will submit it within a following upstream shipment. Hi Ursula, Can you please tell me when this patch is going to be added in linux-next? I

Re: [PATCH] qeth: Convert use of __constant_htons to htons

2015-06-12 Thread Ursula Braun
Thanks Vaishali. I have added your patch to our local kernel git, and will submit it within a following upstream shipment. Regards, Ursula Braun On Wed, 2015-06-10 at 16:22 +0530, Vaishali Thakkar wrote: > In little endian cases, the macro htons unfolds to __swab16 which > provides special case

Re: [PATCH] qeth: Convert use of __constant_htons to htons

2015-06-12 Thread Ursula Braun
Thanks Vaishali. I have added your patch to our local kernel git, and will submit it within a following upstream shipment. Regards, Ursula Braun On Wed, 2015-06-10 at 16:22 +0530, Vaishali Thakkar wrote: In little endian cases, the macro htons unfolds to __swab16 which provides special case

[PATCH] qeth: Convert use of __constant_htons to htons

2015-06-10 Thread Vaishali Thakkar
In little endian cases, the macro htons unfolds to __swab16 which provides special case for constants. In big endian cases, __constant_htons and htons expand directly to the same expression. So, replace __constant_htons with htons with the goal of getting rid of the definition of __constant_htons

[PATCH] qeth: Convert use of __constant_htons to htons

2015-06-10 Thread Vaishali Thakkar
In little endian cases, the macro htons unfolds to __swab16 which provides special case for constants. In big endian cases, __constant_htons and htons expand directly to the same expression. So, replace __constant_htons with htons with the goal of getting rid of the definition of __constant_htons