summaryrefslogtreecommitdiff
path: root/fs/xfs/xfs_xchgrange.h
blob: f3e411be65802d8889f2669d3507c13b8912ad06 (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
28
29
30
31
32
33
/* SPDX-License-Identifier: GPL-2.0-or-later */
/*
 * Copyright (C) 2021 Oracle.  All Rights Reserved.
 * Author: Darrick J. Wong <djwong@kernel.org>
 */
#ifndef __XFS_XCHGRANGE_H__
#define __XFS_XCHGRANGE_H__

struct xfs_swapext_req;
struct xfs_swapext_res;

void xfs_xchg_range_ilock(struct xfs_trans *tp, struct xfs_inode *ip1,
		struct xfs_inode *ip2);
void xfs_xchg_range_iunlock(struct xfs_inode *ip1, struct xfs_inode *ip2);

int xfs_xchg_range_estimate(const struct xfs_swapext_req *req,
		struct xfs_swapext_res *res);
int xfs_xchg_range_prep(struct file *file1, struct file *file2,
		struct file_xchg_range *fxr);

/* Update ip1's change and mod time. */
#define XFS_XCHG_RANGE_UPD_CMTIME1	(1 << 0)

/* Update ip2's change and mod time. */
#define XFS_XCHG_RANGE_UPD_CMTIME2	(1 << 1)

int xfs_xchg_range(struct xfs_inode *ip1, struct xfs_inode *ip2,
		const struct file_xchg_range *fxr, unsigned int private_flags);

int xfs_swapext_enable_log_assist(struct xfs_mount *mp, bool force,
		bool *enabled);

#endif /* __XFS_XCHGRANGE_H__ */