summaryrefslogtreecommitdiff
path: root/fs/bcachefs/extents_types.h
blob: 27b2bde85e5c0d7684b04edc8db705769dfb7833 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef _BCACHEFS_EXTENTS_TYPES_H
#define _BCACHEFS_EXTENTS_TYPES_H

#include "bcachefs_format.h"

struct bch_extent_crc_unpacked {
	u8			csum_type;
	u8			compression_type;

	u16			compressed_size;
	u16			uncompressed_size;

	u16			offset;
	u16			live_size;

	u16			nonce;

	struct bch_csum		csum;
};

struct extent_pick_ptr {
	struct bch_extent_ptr		ptr;
	struct bch_extent_crc_unpacked	crc;
};

#endif /* _BCACHEFS_EXTENTS_TYPES_H */