xref: /openbmc/linux/fs/ocfs2/alloc.h (revision ba492615)
1ccd979bdSMark Fasheh /* -*- mode: c; c-basic-offset: 8; -*-
2ccd979bdSMark Fasheh  * vim: noexpandtab sw=8 ts=8 sts=0:
3ccd979bdSMark Fasheh  *
4ccd979bdSMark Fasheh  * alloc.h
5ccd979bdSMark Fasheh  *
6ccd979bdSMark Fasheh  * Function prototypes
7ccd979bdSMark Fasheh  *
8ccd979bdSMark Fasheh  * Copyright (C) 2002, 2004 Oracle.  All rights reserved.
9ccd979bdSMark Fasheh  *
10ccd979bdSMark Fasheh  * This program is free software; you can redistribute it and/or
11ccd979bdSMark Fasheh  * modify it under the terms of the GNU General Public
12ccd979bdSMark Fasheh  * License as published by the Free Software Foundation; either
13ccd979bdSMark Fasheh  * version 2 of the License, or (at your option) any later version.
14ccd979bdSMark Fasheh  *
15ccd979bdSMark Fasheh  * This program is distributed in the hope that it will be useful,
16ccd979bdSMark Fasheh  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17ccd979bdSMark Fasheh  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18ccd979bdSMark Fasheh  * General Public License for more details.
19ccd979bdSMark Fasheh  *
20ccd979bdSMark Fasheh  * You should have received a copy of the GNU General Public
21ccd979bdSMark Fasheh  * License along with this program; if not, write to the
22ccd979bdSMark Fasheh  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23ccd979bdSMark Fasheh  * Boston, MA 021110-1307, USA.
24ccd979bdSMark Fasheh  */
25ccd979bdSMark Fasheh 
26ccd979bdSMark Fasheh #ifndef OCFS2_ALLOC_H
27ccd979bdSMark Fasheh #define OCFS2_ALLOC_H
28ccd979bdSMark Fasheh 
29e7d4cb6bSTao Ma enum ocfs2_extent_tree_type {
30e7d4cb6bSTao Ma 	OCFS2_DINODE_EXTENT = 0,
31f56654c4STao Ma 	OCFS2_XATTR_VALUE_EXTENT,
32ba492615STao Ma 	OCFS2_XATTR_TREE_EXTENT,
33e7d4cb6bSTao Ma };
34e7d4cb6bSTao Ma 
35ccd979bdSMark Fasheh struct ocfs2_alloc_context;
36f56654c4STao Ma int ocfs2_dinode_insert_extent(struct ocfs2_super *osb,
37f56654c4STao Ma 			       handle_t *handle,
38f56654c4STao Ma 			       struct inode *inode,
39f56654c4STao Ma 			       struct buffer_head *root_bh,
40f56654c4STao Ma 			       u32 cpos,
41f56654c4STao Ma 			       u64 start_blk,
42f56654c4STao Ma 			       u32 new_clusters,
43f56654c4STao Ma 			       u8 flags,
44f56654c4STao Ma 			       struct ocfs2_alloc_context *meta_ac);
45f56654c4STao Ma int ocfs2_xattr_value_insert_extent(struct ocfs2_super *osb,
461fabe148SMark Fasheh 				    handle_t *handle,
47ccd979bdSMark Fasheh 				    struct inode *inode,
48e7d4cb6bSTao Ma 				    struct buffer_head *root_bh,
49dcd0538fSMark Fasheh 				    u32 cpos,
50dcd0538fSMark Fasheh 				    u64 start_blk,
51ccd979bdSMark Fasheh 				    u32 new_clusters,
522ae99a60SMark Fasheh 				    u8 flags,
53e7d4cb6bSTao Ma 				    struct ocfs2_alloc_context *meta_ac,
54f56654c4STao Ma 				    void *private);
55ba492615STao Ma int ocfs2_xattr_tree_insert_extent(struct ocfs2_super *osb,
56ba492615STao Ma 				   handle_t *handle,
57ba492615STao Ma 				   struct inode *inode,
58ba492615STao Ma 				   struct buffer_head *root_bh,
59ba492615STao Ma 				   u32 cpos,
60ba492615STao Ma 				   u64 start_blk,
61ba492615STao Ma 				   u32 new_clusters,
62ba492615STao Ma 				   u8 flags,
63ba492615STao Ma 				   struct ocfs2_alloc_context *meta_ac);
640eb8d47eSTao Ma enum ocfs2_alloc_restarted {
650eb8d47eSTao Ma 	RESTART_NONE = 0,
660eb8d47eSTao Ma 	RESTART_TRANS,
670eb8d47eSTao Ma 	RESTART_META
680eb8d47eSTao Ma };
690eb8d47eSTao Ma int ocfs2_add_clusters_in_btree(struct ocfs2_super *osb,
700eb8d47eSTao Ma 				struct inode *inode,
710eb8d47eSTao Ma 				u32 *logical_offset,
720eb8d47eSTao Ma 				u32 clusters_to_add,
730eb8d47eSTao Ma 				int mark_unwritten,
740eb8d47eSTao Ma 				struct buffer_head *root_bh,
750eb8d47eSTao Ma 				struct ocfs2_extent_list *root_el,
760eb8d47eSTao Ma 				handle_t *handle,
770eb8d47eSTao Ma 				struct ocfs2_alloc_context *data_ac,
780eb8d47eSTao Ma 				struct ocfs2_alloc_context *meta_ac,
790eb8d47eSTao Ma 				enum ocfs2_alloc_restarted *reason_ret,
80f56654c4STao Ma 				enum ocfs2_extent_tree_type type,
81f56654c4STao Ma 				void *private);
82328d5752SMark Fasheh struct ocfs2_cached_dealloc_ctxt;
83e7d4cb6bSTao Ma int ocfs2_mark_extent_written(struct inode *inode, struct buffer_head *root_bh,
84328d5752SMark Fasheh 			      handle_t *handle, u32 cpos, u32 len, u32 phys,
85328d5752SMark Fasheh 			      struct ocfs2_alloc_context *meta_ac,
86e7d4cb6bSTao Ma 			      struct ocfs2_cached_dealloc_ctxt *dealloc,
87f56654c4STao Ma 			      enum ocfs2_extent_tree_type et_type,
88f56654c4STao Ma 			      void *private);
89e7d4cb6bSTao Ma int ocfs2_remove_extent(struct inode *inode, struct buffer_head *root_bh,
90063c4561SMark Fasheh 			u32 cpos, u32 len, handle_t *handle,
91063c4561SMark Fasheh 			struct ocfs2_alloc_context *meta_ac,
92e7d4cb6bSTao Ma 			struct ocfs2_cached_dealloc_ctxt *dealloc,
93f56654c4STao Ma 			enum ocfs2_extent_tree_type et_type,
94f56654c4STao Ma 			void *private);
95ccd979bdSMark Fasheh int ocfs2_num_free_extents(struct ocfs2_super *osb,
96ccd979bdSMark Fasheh 			   struct inode *inode,
97e7d4cb6bSTao Ma 			   struct buffer_head *root_bh,
98f56654c4STao Ma 			   enum ocfs2_extent_tree_type et_type,
99f56654c4STao Ma 			   void *private);
100e7d4cb6bSTao Ma 
101811f933dSTao Ma /*
102811f933dSTao Ma  * how many new metadata chunks would an allocation need at maximum?
103811f933dSTao Ma  *
104811f933dSTao Ma  * Please note that the caller must make sure that root_el is the root
105811f933dSTao Ma  * of extent tree. So for an inode, it should be &fe->id2.i_list. Otherwise
106811f933dSTao Ma  * the result may be wrong.
107811f933dSTao Ma  */
108811f933dSTao Ma static inline int ocfs2_extend_meta_needed(struct ocfs2_extent_list *root_el)
109ccd979bdSMark Fasheh {
110ccd979bdSMark Fasheh 	/*
111ccd979bdSMark Fasheh 	 * Rather than do all the work of determining how much we need
112ccd979bdSMark Fasheh 	 * (involves a ton of reads and locks), just ask for the
113ccd979bdSMark Fasheh 	 * maximal limit.  That's a tree depth shift.  So, one block for
114ccd979bdSMark Fasheh 	 * level of the tree (current l_tree_depth), one block for the
115ccd979bdSMark Fasheh 	 * new tree_depth==0 extent_block, and one block at the new
116ccd979bdSMark Fasheh 	 * top-of-the tree.
117ccd979bdSMark Fasheh 	 */
118811f933dSTao Ma 	return le16_to_cpu(root_el->l_tree_depth) + 2;
119ccd979bdSMark Fasheh }
120ccd979bdSMark Fasheh 
1215b6a3a2bSMark Fasheh void ocfs2_dinode_new_extent_list(struct inode *inode, struct ocfs2_dinode *di);
1221afc32b9SMark Fasheh void ocfs2_set_inode_data_inline(struct inode *inode, struct ocfs2_dinode *di);
1231afc32b9SMark Fasheh int ocfs2_convert_inline_data_to_extents(struct inode *inode,
1241afc32b9SMark Fasheh 					 struct buffer_head *di_bh);
1251afc32b9SMark Fasheh 
126ccd979bdSMark Fasheh int ocfs2_truncate_log_init(struct ocfs2_super *osb);
127ccd979bdSMark Fasheh void ocfs2_truncate_log_shutdown(struct ocfs2_super *osb);
128ccd979bdSMark Fasheh void ocfs2_schedule_truncate_log_flush(struct ocfs2_super *osb,
129ccd979bdSMark Fasheh 				       int cancel);
130ccd979bdSMark Fasheh int ocfs2_flush_truncate_log(struct ocfs2_super *osb);
131ccd979bdSMark Fasheh int ocfs2_begin_truncate_log_recovery(struct ocfs2_super *osb,
132ccd979bdSMark Fasheh 				      int slot_num,
133ccd979bdSMark Fasheh 				      struct ocfs2_dinode **tl_copy);
134ccd979bdSMark Fasheh int ocfs2_complete_truncate_log_recovery(struct ocfs2_super *osb,
135ccd979bdSMark Fasheh 					 struct ocfs2_dinode *tl_copy);
136063c4561SMark Fasheh int ocfs2_truncate_log_needs_flush(struct ocfs2_super *osb);
137063c4561SMark Fasheh int ocfs2_truncate_log_append(struct ocfs2_super *osb,
138063c4561SMark Fasheh 			      handle_t *handle,
139063c4561SMark Fasheh 			      u64 start_blk,
140063c4561SMark Fasheh 			      unsigned int num_clusters);
141063c4561SMark Fasheh int __ocfs2_flush_truncate_log(struct ocfs2_super *osb);
142ccd979bdSMark Fasheh 
1432b604351SMark Fasheh /*
1442b604351SMark Fasheh  * Process local structure which describes the block unlinks done
1452b604351SMark Fasheh  * during an operation. This is populated via
1462b604351SMark Fasheh  * ocfs2_cache_block_dealloc().
1472b604351SMark Fasheh  *
1482b604351SMark Fasheh  * ocfs2_run_deallocs() should be called after the potentially
1492b604351SMark Fasheh  * de-allocating routines. No journal handles should be open, and most
1502b604351SMark Fasheh  * locks should have been dropped.
1512b604351SMark Fasheh  */
1522b604351SMark Fasheh struct ocfs2_cached_dealloc_ctxt {
1532b604351SMark Fasheh 	struct ocfs2_per_slot_free_list		*c_first_suballocator;
1542b604351SMark Fasheh };
1552b604351SMark Fasheh static inline void ocfs2_init_dealloc_ctxt(struct ocfs2_cached_dealloc_ctxt *c)
1562b604351SMark Fasheh {
1572b604351SMark Fasheh 	c->c_first_suballocator = NULL;
1582b604351SMark Fasheh }
1592b604351SMark Fasheh int ocfs2_run_deallocs(struct ocfs2_super *osb,
1602b604351SMark Fasheh 		       struct ocfs2_cached_dealloc_ctxt *ctxt);
1612b604351SMark Fasheh 
162ccd979bdSMark Fasheh struct ocfs2_truncate_context {
16359a5e416SMark Fasheh 	struct ocfs2_cached_dealloc_ctxt tc_dealloc;
164ccd979bdSMark Fasheh 	int tc_ext_alloc_locked; /* is it cluster locked? */
165ccd979bdSMark Fasheh 	/* these get destroyed once it's passed to ocfs2_commit_truncate. */
166ccd979bdSMark Fasheh 	struct buffer_head *tc_last_eb_bh;
167ccd979bdSMark Fasheh };
168ccd979bdSMark Fasheh 
16935edec1dSMark Fasheh int ocfs2_zero_range_for_truncate(struct inode *inode, handle_t *handle,
17035edec1dSMark Fasheh 				  u64 range_start, u64 range_end);
171ccd979bdSMark Fasheh int ocfs2_prepare_truncate(struct ocfs2_super *osb,
172ccd979bdSMark Fasheh 			   struct inode *inode,
173ccd979bdSMark Fasheh 			   struct buffer_head *fe_bh,
174ccd979bdSMark Fasheh 			   struct ocfs2_truncate_context **tc);
175ccd979bdSMark Fasheh int ocfs2_commit_truncate(struct ocfs2_super *osb,
176ccd979bdSMark Fasheh 			  struct inode *inode,
177ccd979bdSMark Fasheh 			  struct buffer_head *fe_bh,
178ccd979bdSMark Fasheh 			  struct ocfs2_truncate_context *tc);
1791afc32b9SMark Fasheh int ocfs2_truncate_inline(struct inode *inode, struct buffer_head *di_bh,
1801afc32b9SMark Fasheh 			  unsigned int start, unsigned int end, int trunc);
181ccd979bdSMark Fasheh 
182363041a5SMark Fasheh int ocfs2_find_leaf(struct inode *inode, struct ocfs2_extent_list *root_el,
183363041a5SMark Fasheh 		    u32 cpos, struct buffer_head **leaf_bh);
184328d5752SMark Fasheh int ocfs2_search_extent_list(struct ocfs2_extent_list *el, u32 v_cluster);
185363041a5SMark Fasheh 
186e48edee2SMark Fasheh /*
187e48edee2SMark Fasheh  * Helper function to look at the # of clusters in an extent record.
188e48edee2SMark Fasheh  */
189e48edee2SMark Fasheh static inline unsigned int ocfs2_rec_clusters(struct ocfs2_extent_list *el,
190e48edee2SMark Fasheh 					      struct ocfs2_extent_rec *rec)
191e48edee2SMark Fasheh {
192e48edee2SMark Fasheh 	/*
193e48edee2SMark Fasheh 	 * Cluster count in extent records is slightly different
194e48edee2SMark Fasheh 	 * between interior nodes and leaf nodes. This is to support
195e48edee2SMark Fasheh 	 * unwritten extents which need a flags field in leaf node
196e48edee2SMark Fasheh 	 * records, thus shrinking the available space for a clusters
197e48edee2SMark Fasheh 	 * field.
198e48edee2SMark Fasheh 	 */
199e48edee2SMark Fasheh 	if (el->l_tree_depth)
200e48edee2SMark Fasheh 		return le32_to_cpu(rec->e_int_clusters);
201e48edee2SMark Fasheh 	else
202e48edee2SMark Fasheh 		return le16_to_cpu(rec->e_leaf_clusters);
203e48edee2SMark Fasheh }
204e48edee2SMark Fasheh 
20500dc417fSMark Fasheh /*
20600dc417fSMark Fasheh  * This is only valid for leaf nodes, which are the only ones that can
20700dc417fSMark Fasheh  * have empty extents anyway.
20800dc417fSMark Fasheh  */
20900dc417fSMark Fasheh static inline int ocfs2_is_empty_extent(struct ocfs2_extent_rec *rec)
21000dc417fSMark Fasheh {
21100dc417fSMark Fasheh 	return !rec->e_leaf_clusters;
21200dc417fSMark Fasheh }
21300dc417fSMark Fasheh 
214ccd979bdSMark Fasheh #endif /* OCFS2_ALLOC_H */
215