blob: 6b7596c4f0dc12d580c071a335f25360673b7eba [file] [log] [blame]
Josef Bacik59b818e2022-10-26 15:08:25 -04001/* SPDX-License-Identifier: GPL-2.0 */
2
3#ifndef BTRFS_DEFRAG_H
4#define BTRFS_DEFRAG_H
5
David Sterba22b46bd2024-01-27 00:53:06 +01006#include <linux/types.h>
7#include <linux/compiler_types.h>
8
9struct inode;
10struct file_ra_state;
11struct btrfs_fs_info;
12struct btrfs_root;
13struct btrfs_trans_handle;
14struct btrfs_ioctl_defrag_range_args;
15
Josef Bacik59b818e2022-10-26 15:08:25 -040016int btrfs_defrag_file(struct inode *inode, struct file_ra_state *ra,
17 struct btrfs_ioctl_defrag_range_args *range,
18 u64 newer_than, unsigned long max_to_defrag);
19int __init btrfs_auto_defrag_init(void);
20void __cold btrfs_auto_defrag_exit(void);
David Sterba11e31072024-08-27 04:13:44 +020021void btrfs_add_inode_defrag(struct btrfs_inode *inode, u32 extent_thresh);
Josef Bacik59b818e2022-10-26 15:08:25 -040022int btrfs_run_defrag_inodes(struct btrfs_fs_info *fs_info);
23void btrfs_cleanup_defrag_inodes(struct btrfs_fs_info *fs_info);
Filipe Manana17232702023-09-22 11:37:56 +010024int btrfs_defrag_root(struct btrfs_root *root);
Josef Bacik59b818e2022-10-26 15:08:25 -040025
26static inline int btrfs_defrag_cancelled(struct btrfs_fs_info *fs_info)
27{
28 return signal_pending(current);
29}
30
31#endif