From: Vaishali Thakkar Date: Wed, 10 Jun 2015 14:45:29 +0000 (+0530) Subject: NFS: Convert use of __constant_htonl to htonl X-Git-Tag: omap-for-v4.2/fixes-rc1^2~39^2~37 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4ed0d83d057c16efeca4210ba8fb2b5029333fb3;p=pandora-kernel.git NFS: Convert use of __constant_htonl to htonl In little endian cases, the macro htonl unfolds to __swab32 which provides special case for constants. In big endian cases, __constant_htonl and htonl expand directly to the same expression. So, replace __constant_htonl with htonl with the goal of getting rid of the definition of __constant_htonl completely. The semantic patch that performs this transformation is as follows: @@expression x;@@ - __constant_htonl(x) + htonl(x) Signed-off-by: Vaishali Thakkar Signed-off-by: Trond Myklebust --- Reading git-diff-tree failed