btrfs-progs: kerncompat: introduce put_unaligned_x helpers
Signed-off-by: David Sterba <dsterba@suse.com>
This commit is contained in:
parent
7ce43670da
commit
1c47e5b039
|
@ -337,15 +337,19 @@ struct __una_u64 { __le64 x; } __attribute__((__packed__));
|
|||
#define get_unaligned_le8(p) (*((u8 *)(p)))
|
||||
#define get_unaligned_8(p) (*((u8 *)(p)))
|
||||
#define put_unaligned_le8(val,p) ((*((u8 *)(p))) = (val))
|
||||
#define put_unaligned_8(val,p) ((*((u8 *)(p))) = (val))
|
||||
#define get_unaligned_le16(p) le16_to_cpu(((const struct __una_u16 *)(p))->x)
|
||||
#define get_unaligned_16(p) (((const struct __una_u16 *)(p))->x)
|
||||
#define put_unaligned_le16(val,p) (((struct __una_u16 *)(p))->x = cpu_to_le16(val))
|
||||
#define put_unaligned_16(val,p) (((struct __una_u16 *)(p))->x = (val))
|
||||
#define get_unaligned_le32(p) le32_to_cpu(((const struct __una_u32 *)(p))->x)
|
||||
#define get_unaligned_32(p) (((const struct __una_u32 *)(p))->x)
|
||||
#define put_unaligned_le32(val,p) (((struct __una_u32 *)(p))->x = cpu_to_le32(val))
|
||||
#define put_unaligned_32(val,p) (((struct __una_u32 *)(p))->x = (val))
|
||||
#define get_unaligned_le64(p) le64_to_cpu(((const struct __una_u64 *)(p))->x)
|
||||
#define get_unaligned_64(p) (((const struct __una_u64 *)(p))->x)
|
||||
#define put_unaligned_le64(val,p) (((struct __una_u64 *)(p))->x = cpu_to_le64(val))
|
||||
#define put_unaligned_64(val,p) (((struct __una_u64 *)(p))->x = (val))
|
||||
|
||||
#ifndef true
|
||||
#define true 1
|
||||
|
|
Loading…
Reference in New Issue