mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 08:43:19 -04:00
Notable upstream pull request merges:
#12022 Fix endianness issues with zstd
#12319 Extend zpool-iostat to account for ZIO_PRIORITY_REBUILD
#12458 Add hole punching support on FreeBSD version 1400032
#12473 Initialize parity blocks before RAID-Z reconstruction benchmarking
#12511 Make 'zpool labelclear -f' work on offlined disks
#12514 FreeBSD: Don't remove SA xattr if not SA znode
Obtained from: OpenZFS
OpenZFS commit: 3b89d9518d
11 lines
227 B
C
11 lines
227 B
C
#ifdef __sparc__
|
|
#include <stdint.h>
|
|
#include <sys/byteorder.h>
|
|
#include "include/sparc_compat.h"
|
|
uint64_t __bswapdi2(uint64_t in) {
|
|
return (BSWAP_64(in));
|
|
}
|
|
uint32_t __bswapsi2(uint32_t in) {
|
|
return (BSWAP_32(in));
|
|
}
|
|
#endif
|