Commit e4e5f9c6 authored by Nikola Jelic's avatar Nikola Jelic Committed by Greg Kroah-Hartman
Browse files

staging: lustre: changed __u32 to __be32



Temporary variable is used only as __be32, for both assignments and reads,
but the type is inconsistent (__u32).

Signed-off-by: default avatarNikola Jelic <nikola.jelic83@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 78c48618
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -89,7 +89,7 @@ lnet_ipif_query(char *name, int *up, __u32 *ip, __u32 *mask)
	struct ifreq ifr;
	int nob;
	int rc;
	__u32 val;
	__be32 val;

	nob = strnlen(name, IFNAMSIZ);
	if (nob == IFNAMSIZ) {