From: Rasmus Villemoes Date: Sat, 7 Feb 2015 02:17:31 +0000 (+0100) Subject: vxlan: Wrong type passed to %pIS X-Git-Tag: omap-for-v4.1/prcm-dts-mfd-syscon-fix~134^2~3^2~4 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a4870f79c228d109c1e51df4a899394515271604;p=pandora-kernel.git vxlan: Wrong type passed to %pIS src_ip is a pointer to a union vxlan_addr, one member of which is a struct sockaddr. Passing a pointer to src_ip is wrong; one should pass the value of src_ip itself. Since %pIS formally expects something of type struct sockaddr*, let's pass a pointer to the appropriate union member, though this of course doesn't change the generated code. Fixes: e4c7ed415387 ("vxlan: add ipv6 support") Signed-off-by: Rasmus Villemoes Acked-by: Cong Wang Signed-off-by: David S. Miller --- Reading git-diff-tree failed