2018-06-05 19:42:14 -07:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2017-03-28 14:56:37 -07:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2017 Oracle. All Rights Reserved.
|
|
|
|
* Author: Darrick J. Wong <darrick.wong@oracle.com>
|
|
|
|
*/
|
|
|
|
#ifndef __XFS_FSMAP_H__
|
|
|
|
#define __XFS_FSMAP_H__
|
|
|
|
|
|
|
|
struct fsmap;
|
2024-08-30 15:37:16 -07:00
|
|
|
struct fsmap_head;
|
2017-03-28 14:56:37 -07:00
|
|
|
|
|
|
|
/* internal fsmap representation */
|
|
|
|
struct xfs_fsmap {
|
|
|
|
dev_t fmr_device; /* device id */
|
|
|
|
uint32_t fmr_flags; /* mapping flags */
|
|
|
|
uint64_t fmr_physical; /* device offset of segment */
|
|
|
|
uint64_t fmr_owner; /* owner id */
|
|
|
|
xfs_fileoff_t fmr_offset; /* file offset of segment */
|
|
|
|
xfs_filblks_t fmr_length; /* length of segment, blocks */
|
|
|
|
};
|
|
|
|
|
|
|
|
struct xfs_fsmap_head {
|
|
|
|
uint32_t fmh_iflags; /* control flags */
|
|
|
|
uint32_t fmh_oflags; /* output flags */
|
|
|
|
unsigned int fmh_count; /* # of entries in array incl. input */
|
|
|
|
unsigned int fmh_entries; /* # of entries filled in (output). */
|
|
|
|
|
|
|
|
struct xfs_fsmap fmh_keys[2]; /* low and high keys */
|
|
|
|
};
|
|
|
|
|
2024-08-30 15:37:16 -07:00
|
|
|
int xfs_ioc_getfsmap(struct xfs_inode *ip, struct fsmap_head __user *arg);
|
2017-03-28 14:56:37 -07:00
|
|
|
|
|
|
|
#endif /* __XFS_FSMAP_H__ */
|