repo.or.cz
/
zfs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fix generation of kernel uevents for snapshot rename on linux
[zfs.git]
/
module
/
zstd
/
zstd_sparc.c
blob
463df99bd7e39fff67fd27a30df0f359d4687110
1
#ifdef __sparc__
2
#include <stdint.h>
3
#include <sys/byteorder.h>
4
#include
"include/sparc_compat.h"
5
uint64_t
__bswapdi2
(
uint64_t
in
) {
6
return
(
BSWAP_64
(
in
));
7
}
8
uint32_t
__bswapsi2
(
uint32_t
in
) {
9
return
(
BSWAP_32
(
in
));
10
}
11
#endif