Staging
v0.5.1
swh:1:snp:a902887e4be9191b7c6c4406aa06b31c1ce2c7cc
Raw File
Tip revision: 33d930e59a98fa10a0db9f56c7fa2f21a4aef9b9 authored by Linus Torvalds on 16 October 2017, 01:01:12 UTC
Linux 4.14-rc5
Tip revision: 33d930e
bswapdi.c
#include <linux/export.h>
#include <linux/compiler.h>

unsigned long long notrace __bswapdi2(unsigned long long u)
{
	return (((u) & 0xff00000000000000ull) >> 56) |
	       (((u) & 0x00ff000000000000ull) >> 40) |
	       (((u) & 0x0000ff0000000000ull) >> 24) |
	       (((u) & 0x000000ff00000000ull) >>  8) |
	       (((u) & 0x00000000ff000000ull) <<  8) |
	       (((u) & 0x0000000000ff0000ull) << 24) |
	       (((u) & 0x000000000000ff00ull) << 40) |
	       (((u) & 0x00000000000000ffull) << 56);
}

EXPORT_SYMBOL(__bswapdi2);
back to top