lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:   Wed, 04 Jan 2017 16:11:03 -0500 (EST)
From:   David Miller <davem@...emloft.net>
To:     andrew@...n.ch
Cc:     volodymyr.bendiuga@...il.com, vivien.didelot@...oirfairelinux.com,
        f.fainelli@...il.com, netdev@...r.kernel.org
Subject: Re: [PATCH repost net-next] dsa: mv88e6xxx: Optimise atu_get

From: Andrew Lunn <andrew@...n.ch>
Date: Wed,  4 Jan 2017 19:56:24 +0100

> +static inline u64 ether_addr_to_u64(const u8 *addr)
> +{
> +	u64 u = 0;
> +	int i;
> +
> +	for (i = 0; i < ETH_ALEN; i++)
> +		u = u << 8 | addr[i];
> +
> +	return u;
> +}
 ...
> +static inline void u64_to_ether_addr(u64 u, u8 *addr)
> +{
> +	int i;
> +
> +	for (i = ETH_ALEN - 1; i >= 0; i--) {
> +		addr[i] = u & 0xff;
> +		u = u >> 8;
> +	}
> +}

I think these two routines behave differently on big vs little
endian.  And I doubt this was your intention.

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ