Whamcloud - gitweb
eb817a32e1fb354f112c739b321a0b677a7870ee
[fs/lustre-release.git] / ldiskfs / kernel_patches / patches / ext4-misc-sles11.patch
1 Index: linux-2.6.27.21-0.1/fs/ext4/ext4_jbd2.h
2 ===================================================================
3 --- linux-2.6.27.21-0.1.orig/fs/ext4/ext4_jbd2.h        2009-07-07 14:47:19.000000000 +0530
4 +++ linux-2.6.27.21-0.1/fs/ext4/ext4_jbd2.h     2009-07-07 14:47:22.000000000 +0530
5 @@ -35,6 +35,9 @@
6         (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_EXTENTS)   \
7                 || test_opt(sb, EXTENTS) ? 27U : 8U)
8  
9 +/* Indicate that EXT4_SINGLEDATA_TRANS_BLOCKS takes the sb as argument */
10 +#define EXT4_SINGLEDATA_TRANS_BLOCKS_HAS_SB
11 +
12  /* Extended attribute operations touch at most two data buffers,
13   * two bitmap buffers, and two group summaries, in addition to the inode
14   * and the superblock, which are already accounted for. */
15 Index: linux-2.6.27.21-0.1/fs/ext4/extents.c
16 ===================================================================
17 --- linux-2.6.27.21-0.1.orig/fs/ext4/extents.c  2009-07-07 14:47:19.000000000 +0530
18 +++ linux-2.6.27.21-0.1/fs/ext4/extents.c       2009-07-07 14:48:03.000000000 +0530
19 @@ -48,7 +48,7 @@
20   * ext_pblock:
21   * combine low and high parts of physical block number into ext4_fsblk_t
22   */
23 -static ext4_fsblk_t ext_pblock(struct ext4_extent *ex)
24 +ext4_fsblk_t ext_pblock(struct ext4_extent *ex)
25  {
26         ext4_fsblk_t block;
27  
28 @@ -58,6 +58,17 @@
29  }
30  
31  /*
32 + * ext4_ext_store_pblock:
33 + * stores a large physical block number into an extent struct,
34 + * breaking it into parts
35 + */
36 +void ext4_ext_store_pblock(struct ext4_extent *ex, ext4_fsblk_t pb)
37 +{
38 +       ex->ee_start_lo = cpu_to_le32((unsigned long) (pb & 0xffffffff));
39 +       ex->ee_start_hi = cpu_to_le16((unsigned long) ((pb >> 31) >> 1) & 0xffff);
40 +}
41 +
42 +/*
43   * idx_pblock:
44   * combine low and high parts of a leaf physical block number into ext4_fsblk_t
45   */
46 @@ -71,17 +82,6 @@
47  }
48  
49  /*
50 - * ext4_ext_store_pblock:
51 - * stores a large physical block number into an extent struct,
52 - * breaking it into parts
53 - */
54 -void ext4_ext_store_pblock(struct ext4_extent *ex, ext4_fsblk_t pb)
55 -{
56 -       ex->ee_start_lo = cpu_to_le32((unsigned long) (pb & 0xffffffff));
57 -       ex->ee_start_hi = cpu_to_le16((unsigned long) ((pb >> 31) >> 1) & 0xffff);
58 -}
59 -
60 -/*
61   * ext4_idx_store_pblock:
62   * stores a large physical block number into an index struct,
63   * breaking it into parts
64 @@ -1852,6 +1852,56 @@
65  }
66  
67  /*
68 + * This routine returns max. credits extent tree can consume.
69 + * It should be OK for low-performance paths like ->writepage()
70 + * To allow many writing process to fit a single transaction,
71 + * caller should calculate credits under truncate_mutex and
72 + * pass actual path.
73 + */
74 +int ext4_ext_calc_credits_for_insert(struct inode *inode,
75 +                                   struct ext4_ext_path *path)
76 +{
77 +       int depth, needed;
78 +
79 +       if (path) {
80 +               /* probably there is space in leaf? */
81 +               depth = ext_depth(inode);
82 +               if (le16_to_cpu(path[depth].p_hdr->eh_entries)
83 +                               < le16_to_cpu(path[depth].p_hdr->eh_max))
84 +                       return 1;
85 +       }
86 +
87 +       /*
88 +        * given 32bit logical block (4294967296 blocks), max. tree
89 +        * can be 4 levels in depth -- 4 * 340^4 == 53453440000.
90 +        * let's also add one more level for imbalance.
91 +        */
92 +       depth = 5;
93 +
94 +       /* allocation of new data block(s) */
95 +       needed = 2;
96 +
97 +       /*
98 +        * tree can be full, so it'd need to grow in depth:
99 +        * we need one credit to modify old root, credits for
100 +        * new root will be added in split accounting
101 +        */
102 +       needed += 1;
103 +
104 +       /*
105 +        * Index split can happen, we'd need:
106 +        *    allocate intermediate indexes (bitmap + group)
107 +        *  + change two blocks at each level, but root (already included)
108 +        */
109 +       needed += (depth * 2) + (depth * 2);
110 +
111 +       /* any allocation modifies superblock */
112 +       needed += 1;
113 +
114 +       return needed;
115 +}
116 +
117 +/*
118   * ext4_ext_calc_credits_for_single_extent:
119   * This routine returns max. credits that needed to insert an extent
120   * to the extent tree.
121 @@ -3171,3 +3221,13 @@
122  
123         return error;
124  }
125 +
126 +EXPORT_SYMBOL(ext4_ext_store_pblock);
127 +EXPORT_SYMBOL(ext4_ext_search_right);
128 +EXPORT_SYMBOL(ext4_ext_search_left);
129 +EXPORT_SYMBOL(ext_pblock);
130 +EXPORT_SYMBOL(ext4_ext_insert_extent);
131 +EXPORT_SYMBOL(ext4_mb_new_blocks);
132 +EXPORT_SYMBOL(ext4_ext_calc_credits_for_insert);
133 +EXPORT_SYMBOL(ext4_mark_inode_dirty);
134 +
135 Index: linux-2.6.27.21-0.1/fs/ext4/ext4_extents.h
136 ===================================================================
137 --- linux-2.6.27.21-0.1.orig/fs/ext4/ext4_extents.h     2009-07-07 14:47:19.000000000 +0530
138 +++ linux-2.6.27.21-0.1/fs/ext4/ext4_extents.h  2009-07-07 14:47:22.000000000 +0530
139 @@ -59,6 +59,11 @@
140   */
141  #define EXT_STATS_
142  
143 +/*
144 + * define EXT4_ALLOC_NEEDED to 0 since block bitmap, group desc. and sb
145 + * are now accounted in ext4_ext_calc_credits_for_insert()
146 + */
147 +#define EXT4_ALLOC_NEEDED 0
148  
149  /*
150   * ext4_inode has i_block array (60 bytes total).
151 @@ -124,6 +129,7 @@
152  #define EXT4_EXT_CACHE_GAP     1
153  #define EXT4_EXT_CACHE_EXTENT  2
154  
155 +#define EXT4_EXT_HAS_NO_TREE  /* ext4_extents_tree struct is not used*/
156  
157  #define EXT_MAX_BLOCK  0xffffffff
158  
159 @@ -223,10 +229,14 @@
160                 (le16_to_cpu(ext->ee_len) - EXT_INIT_MAX_LEN));
161  }
162  
163 +extern ext4_fsblk_t ext_pblock(struct ext4_extent *ex);
164 +extern void ext4_ext_store_pblock(struct ext4_extent *ex, ext4_fsblk_t pb);
165  extern int ext4_ext_calc_metadata_amount(struct inode *inode, int blocks);
166  extern ext4_fsblk_t idx_pblock(struct ext4_extent_idx *);
167  extern void ext4_ext_store_pblock(struct ext4_extent *, ext4_fsblk_t);
168  extern int ext4_extent_tree_init(handle_t *, struct inode *);
169 +extern int ext4_ext_calc_credits_for_insert(struct inode *,
170 +                                           struct ext4_ext_path *);
171  extern int ext4_ext_calc_credits_for_single_extent(struct inode *inode,
172                                                    int num,
173                                                    struct ext4_ext_path *path);
174 Index: linux-2.6.27.21-0.1/fs/ext4/mballoc.c
175 ===================================================================
176 --- linux-2.6.27.21-0.1.orig/fs/ext4/mballoc.c  2009-07-07 14:47:19.000000000 +0530
177 +++ linux-2.6.27.21-0.1/fs/ext4/mballoc.c       2009-07-07 14:47:22.000000000 +0530
178 @@ -4355,6 +4355,7 @@
179                 kmem_cache_free(ext4_ac_cachep, ac);
180  }
181 +EXPORT_SYMBOL(ext4_discard_preallocations);
182  
183  /*
184   * finds all preallocated spaces and return blocks being freed to them
185   * if preallocated space becomes full (no block is used from the space)
186 @@ -5177,3 +5184,6 @@
187                 kmem_cache_free(ext4_ac_cachep, ac);
188         return;
189  }
190 +
191 +EXPORT_SYMBOL(ext4_free_blocks);
192 +
193 Index: linux-2.6.27.21-0.1/fs/ext4/super.c
194 ===================================================================
195 --- linux-2.6.27.21-0.1.orig/fs/ext4/super.c    2009-07-07 14:47:19.000000000 +0530
196 +++ linux-2.6.27.21-0.1/fs/ext4/super.c 2009-07-07 14:48:53.000000000 +0530
197 @@ -91,6 +91,7 @@
198                 (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT ?
199                 (ext4_fsblk_t)le32_to_cpu(bg->bg_inode_bitmap_hi) << 32 : 0);
200  }
201 +EXPORT_SYMBOL(ext4_inode_bitmap);
202  
203  ext4_fsblk_t ext4_inode_table(struct super_block *sb,
204                               struct ext4_group_desc *bg)
205 @@ -1286,6 +1287,7 @@
206         Opt_jqfmt_vfsold, Opt_jqfmt_vfsv0, Opt_quota, Opt_noquota,
207         Opt_ignore, Opt_barrier, Opt_err, Opt_resize, Opt_usrquota,
208         Opt_grpquota, Opt_extents, Opt_noextents, Opt_i_version,
209 +       Opt_mballoc,
210         Opt_stripe, Opt_delalloc, Opt_nodelalloc,
211         Opt_inode_readahead_blks, Opt_bigendian_extents,
212         Opt_iopen, Opt_noiopen, Opt_iopen_nopriv,
213 @@ -1346,6 +1348,7 @@
214         {Opt_i_version, "i_version"},
215         {Opt_stripe, "stripe=%u"},
216         {Opt_resize, "resize"},
217 +       {Opt_mballoc, "mballoc"},
218         {Opt_delalloc, "delalloc"},
219         {Opt_nodelalloc, "nodelalloc"},
220         {Opt_inode_readahead_blks, "inode_readahead_blks=%u"},
221 @@ -1768,6 +1771,8 @@
222                 case Opt_bigendian_extents:
223                         bigendian_extents = 1;
224                         break;
225 +               case Opt_mballoc:
226 +                       break;
227                 default:
228                         printk(KERN_ERR
229                                "EXT4-fs: Unrecognized mount option \"%s\" "
230 @@ -4094,7 +4099,7 @@
231         .kill_sb        = kill_block_super,
232         .fs_flags       = FS_REQUIRES_DEV,
233  };
234 -MODULE_ALIAS("ext4dev");
235 +MODULE_ALIAS("ext4");
236  
237  static int __init init_ext4_fs(void)
238  {
239 Index: linux-2.6.27.21-0.1/fs/ext4/ext4_jbd2.c
240 ===================================================================
241 --- linux-2.6.27.21-0.1.orig/fs/ext4/ext4_jbd2.c        2009-07-07 14:47:19.000000000 +0530
242 +++ linux-2.6.27.21-0.1/fs/ext4/ext4_jbd2.c     2009-07-07 14:47:22.000000000 +0530
243 @@ -21,6 +21,7 @@
244                 ext4_journal_abort_handle(where, __func__, bh, handle, err);
245         return err;
246  }
247 +EXPORT_SYMBOL(__ext4_journal_get_write_access);
248  
249  int __ext4_journal_forget(const char *where, handle_t *handle,
250                                 struct buffer_head *bh)
251 @@ -57,3 +58,4 @@
252                 ext4_journal_abort_handle(where, __func__, bh, handle, err);
253         return err;
254  }
255 +EXPORT_SYMBOL(__ext4_journal_dirty_metadata);
256 Index: linux-2.6.27.21-0.1/fs/ext4/ext4.h
257 ===================================================================
258 --- linux-2.6.27.21-0.1.orig/fs/ext4/ext4.h     2009-07-07 14:47:19.000000000 +0530
259 +++ linux-2.6.27.21-0.1/fs/ext4/ext4.h  2009-07-07 14:47:22.000000000 +0530
260 @@ -26,6 +26,9 @@
261   * The fourth extended filesystem constants/structures
262   */
263  
264 +/* Has been moved to linux/magic.h but we need it for Lustre */
265 +#define EXT4_SUPER_MAGIC       0xEF53
266 +
267  /*
268   * Define EXT4FS_DEBUG to produce debug messages
269   */
270 @@ -400,6 +403,8 @@
271         __le32  i_version_hi;   /* high 32 bits for 64-bit version */
272  };
273  
274 +/* SLES11 kernel already has 64-bit inode->i_version field */
275 +#define HAVE_DISK_INODE_VERSION
276  
277  #define EXT4_EPOCH_BITS 2
278  #define EXT4_EPOCH_MASK ((1 << EXT4_EPOCH_BITS) - 1)
279 @@ -1123,6 +1128,8 @@
280  extern int ext4_mb_get_buddy_cache_lock(struct super_block *, ext4_group_t);
281  extern void ext4_mb_put_buddy_cache_lock(struct super_block *,
282                                                 ext4_group_t, int);
283 +extern void ext4_mb_discard_inode_preallocations(struct inode *);
284 +
285  /* inode.c */
286  int ext4_forget(handle_t *handle, int is_metadata, struct inode *inode,
287                 struct buffer_head *bh, ext4_fsblk_t blocknr);
288 Index: linux-2.6.27.21-0.1/fs/ext4/inode.c
289 ===================================================================
290 --- linux-2.6.27.21-0.1.orig/fs/ext4/inode.c    2009-07-07 14:47:19.000000000 +0530
291 +++ linux-2.6.27.21-0.1/fs/ext4/inode.c 2009-07-07 14:47:22.000000000 +0530
292 @@ -4240,6 +4240,7 @@
293         iget_failed(inode);
294         return ERR_PTR(ret);
295  }
296 +EXPORT_SYMBOL(ext4_iget);
297  
298  static int ext4_inode_blocks_set(handle_t *handle,
299                                 struct ext4_inode *raw_inode,