Blame view

fs/btrfs/free-space-cache.h 4.09 KB
fa9c0d795   Chris Mason   Btrfs: rework all...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
  /*
   * Copyright (C) 2009 Oracle.  All rights reserved.
   *
   * This program is free software; you can redistribute it and/or
   * modify it under the terms of the GNU General Public
   * License v2 as published by the Free Software Foundation.
   *
   * This program is distributed in the hope that it will be useful,
   * but WITHOUT ANY WARRANTY; without even the implied warranty of
   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   * General Public License for more details.
   *
   * You should have received a copy of the GNU General Public
   * License along with this program; if not, write to the
   * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
   * Boston, MA 021110-1307, USA.
   */
  
  #ifndef __BTRFS_FREE_SPACE_CACHE
  #define __BTRFS_FREE_SPACE_CACHE
963030817   Josef Bacik   Btrfs: use hybrid...
21
22
23
24
25
26
27
  struct btrfs_free_space {
  	struct rb_node offset_index;
  	u64 offset;
  	u64 bytes;
  	unsigned long *bitmap;
  	struct list_head list;
  };
34d52cb6c   Li Zefan   Btrfs: Make free ...
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
  struct btrfs_free_space_ctl {
  	spinlock_t tree_lock;
  	struct rb_root free_space_offset;
  	u64 free_space;
  	int extents_thresh;
  	int free_extents;
  	int total_bitmaps;
  	int unit;
  	u64 start;
  	struct btrfs_free_space_op *op;
  	void *private;
  };
  
  struct btrfs_free_space_op {
  	void (*recalc_thresholds)(struct btrfs_free_space_ctl *ctl);
  	bool (*use_bitmap)(struct btrfs_free_space_ctl *ctl,
  			   struct btrfs_free_space *info);
  };
0af3d00ba   Josef Bacik   Btrfs: create spe...
46
47
48
49
50
51
52
  struct inode *lookup_free_space_inode(struct btrfs_root *root,
  				      struct btrfs_block_group_cache
  				      *block_group, struct btrfs_path *path);
  int create_free_space_inode(struct btrfs_root *root,
  			    struct btrfs_trans_handle *trans,
  			    struct btrfs_block_group_cache *block_group,
  			    struct btrfs_path *path);
0cb59c995   Josef Bacik   Btrfs: write out ...
53

0af3d00ba   Josef Bacik   Btrfs: create spe...
54
55
56
57
  int btrfs_truncate_free_space_cache(struct btrfs_root *root,
  				    struct btrfs_trans_handle *trans,
  				    struct btrfs_path *path,
  				    struct inode *inode);
9d66e233c   Josef Bacik   Btrfs: load free ...
58
59
  int load_free_space_cache(struct btrfs_fs_info *fs_info,
  			  struct btrfs_block_group_cache *block_group);
0cb59c995   Josef Bacik   Btrfs: write out ...
60
61
62
63
  int btrfs_write_out_cache(struct btrfs_root *root,
  			  struct btrfs_trans_handle *trans,
  			  struct btrfs_block_group_cache *block_group,
  			  struct btrfs_path *path);
581bb0509   Li Zefan   Btrfs: Cache free...
64

82d5902d9   Li Zefan   Btrfs: Support re...
65
66
67
68
69
70
71
72
73
74
  struct inode *lookup_free_ino_inode(struct btrfs_root *root,
  				    struct btrfs_path *path);
  int create_free_ino_inode(struct btrfs_root *root,
  			  struct btrfs_trans_handle *trans,
  			  struct btrfs_path *path);
  int load_free_ino_cache(struct btrfs_fs_info *fs_info,
  			struct btrfs_root *root);
  int btrfs_write_out_ino_cache(struct btrfs_root *root,
  			      struct btrfs_trans_handle *trans,
  			      struct btrfs_path *path);
34d52cb6c   Li Zefan   Btrfs: Make free ...
75
  void btrfs_init_free_space_ctl(struct btrfs_block_group_cache *block_group);
581bb0509   Li Zefan   Btrfs: Cache free...
76
77
78
79
80
81
82
83
84
  int __btrfs_add_free_space(struct btrfs_free_space_ctl *ctl,
  			   u64 bytenr, u64 size);
  static inline int
  btrfs_add_free_space(struct btrfs_block_group_cache *block_group,
  		     u64 bytenr, u64 size)
  {
  	return __btrfs_add_free_space(block_group->free_space_ctl,
  				      bytenr, size);
  }
fa9c0d795   Chris Mason   Btrfs: rework all...
85
86
  int btrfs_remove_free_space(struct btrfs_block_group_cache *block_group,
  			    u64 bytenr, u64 size);
581bb0509   Li Zefan   Btrfs: Cache free...
87
  void __btrfs_remove_free_space_cache(struct btrfs_free_space_ctl *ctl);
fa9c0d795   Chris Mason   Btrfs: rework all...
88
  void btrfs_remove_free_space_cache(struct btrfs_block_group_cache
581bb0509   Li Zefan   Btrfs: Cache free...
89
  				     *block_group);
fa9c0d795   Chris Mason   Btrfs: rework all...
90
91
  u64 btrfs_find_space_for_alloc(struct btrfs_block_group_cache *block_group,
  			       u64 offset, u64 bytes, u64 empty_size);
581bb0509   Li Zefan   Btrfs: Cache free...
92
  u64 btrfs_find_ino_for_alloc(struct btrfs_root *fs_root);
fa9c0d795   Chris Mason   Btrfs: rework all...
93
94
  void btrfs_dump_free_space(struct btrfs_block_group_cache *block_group,
  			   u64 bytes);
fa9c0d795   Chris Mason   Btrfs: rework all...
95
  int btrfs_find_space_cluster(struct btrfs_trans_handle *trans,
451d7585a   Chris Mason   Btrfs: add mount ...
96
  			     struct btrfs_root *root,
fa9c0d795   Chris Mason   Btrfs: rework all...
97
98
99
100
101
102
103
104
105
106
  			     struct btrfs_block_group_cache *block_group,
  			     struct btrfs_free_cluster *cluster,
  			     u64 offset, u64 bytes, u64 empty_size);
  void btrfs_init_free_cluster(struct btrfs_free_cluster *cluster);
  u64 btrfs_alloc_from_cluster(struct btrfs_block_group_cache *block_group,
  			     struct btrfs_free_cluster *cluster, u64 bytes,
  			     u64 min_start);
  int btrfs_return_cluster_to_free_space(
  			       struct btrfs_block_group_cache *block_group,
  			       struct btrfs_free_cluster *cluster);
f7039b1d5   Li Dongyang   Btrfs: add btrfs_...
107
108
  int btrfs_trim_block_group(struct btrfs_block_group_cache *block_group,
  			   u64 *trimmed, u64 start, u64 end, u64 minlen);
fa9c0d795   Chris Mason   Btrfs: rework all...
109
  #endif