summaryrefslogtreecommitdiffstats
path: root/loop_file_fmt_qcow_cluster.h
blob: d62e3318f6ce419d99f743fc6f8a9142954ffa20 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* SPDX-License-Identifier: GPL-2.0 */
/*
 * loop_file_fmt_qcow_cluster.h
 *
 * Ported QCOW2 implementation of the QEMU project (GPL-2.0):
 * Cluster calculation and lookup for the QCOW2 format.
 *
 * The copyright (C) 2004-2006 of the original code is owned by Fabrice Bellard.
 *
 * Copyright (C) 2019 Manuel Bentele <development@manuel-bentele.de>
 */

#ifndef _LINUX_LOOP_FILE_FMT_QCOW_CLUSTER_H
#define _LINUX_LOOP_FILE_FMT_QCOW_CLUSTER_H

#include "loop_file_fmt.h"

extern int loop_file_fmt_qcow_cluster_get_offset(struct loop_file_fmt *lo_fmt,
						 u64 offset,
						 unsigned int *bytes,
						 u64 *cluster_offset);

#endif