From: Vaishali Thakkar Date: Fri, 31 Oct 2014 02:26:29 +0000 (+0530) Subject: Staging: lustre: Use put_unaligned_le64 X-Git-Tag: omap-for-v3.19/fixes-rc1~73^2~500 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8c4f13649731576d5f82dfffff465041feae8d60;p=pandora-kernel.git Staging: lustre: Use put_unaligned_le64 This patch introduces the use of function put_unaligned_le64. This is done using Coccinelle and semantic patch used is as follows: @@ identifier tmp; expression ptr; expression y,e; type T; @@ - tmp = cpu_to_le64(y); <+... when != tmp - memcpy(ptr, (T)&tmp, ...); + put_unaligned_le64(y,ptr); ...+> ? tmp = e @@ type T; identifier tmp; @@ - T tmp; ...when != tmp Signed-off-by: Vaishali Thakkar Signed-off-by: Greg Kroah-Hartman --- Reading git-diff-tree failed