Whamcloud - gitweb
LU-2473 ldiskfs: Reorganize ldiskfs kernel patches
[fs/lustre-release.git] / ldiskfs / kernel_patches / patches / rhel6.3 / ext4-misc.patch
1 Index: linux-stage/fs/ext4/ext4.h
2 ===================================================================
3 --- linux-stage.orig/fs/ext4/ext4.h     2011-05-20 10:59:32.000000000 +0300
4 +++ linux-stage/fs/ext4/ext4.h  2011-05-20 11:01:06.000000000 +0300
5 @@ -1191,6 +1191,9 @@ EXT4_INODE_BIT_FNS(state, state_flags)
6  
7  #define NEXT_ORPHAN(inode) EXT4_I(inode)->i_dtime
8  
9 +/* Has been moved to linux/magic.h but we need it for Lustre */
10 +#define EXT4_SUPER_MAGIC       0xEF53
11 +
12  /*
13   * Codes for operating systems
14   */
15 @@ -1630,6 +1633,9 @@ extern void ext4_mb_put_buddy_cache_lock
16                                                 ext4_group_t, int);
17  extern int ext4_trim_fs(struct super_block *, struct fstrim_range *);
18  
19 +extern void ext4_mb_discard_inode_preallocations(struct inode *);
20 +
21 +
22  /* inode.c */
23  int ext4_forget(handle_t *handle, int is_metadata, struct inode *inode,
24                 struct buffer_head *bh, ext4_fsblk_t blocknr);
25 Index: linux-stage/fs/ext4/ext4_extents.h
26 ===================================================================
27 --- linux-stage.orig/fs/ext4/ext4_extents.h     2011-05-20 10:59:30.000000000 +0300
28 +++ linux-stage/fs/ext4/ext4_extents.h  2011-05-20 11:00:01.000000000 +0300
29 @@ -58,6 +58,12 @@
30   */
31  #define EXT_STATS_
32  
33 +/*
34 + * define EXT4_ALLOC_NEEDED to 0 since block bitmap, group desc. and sb
35 + * are now accounted in ext4_ext_calc_credits_for_insert()
36 + */
37 +#define EXT4_ALLOC_NEEDED 0
38 +#define HAVE_EXT_PREPARE_CB_EXTENT
39  
40  /*
41   * ext4_inode has i_block array (60 bytes total).
42 @@ -239,6 +245,8 @@ extern int ext4_extent_tree_init(handle_
43  extern int ext4_ext_calc_credits_for_single_extent(struct inode *inode,
44                                                    int num,
45                                                    struct ext4_ext_path *path);
46 +extern int ext4_ext_calc_credits_for_insert(struct inode *,
47 +                                           struct ext4_ext_path *);
48  extern int ext4_can_extents_be_merged(struct inode *inode,
49                                       struct ext4_extent *ex1,
50                                       struct ext4_extent *ex2);
51 Index: linux-stage/fs/ext4/ext4_jbd2.c
52 ===================================================================
53 --- linux-stage.orig/fs/ext4/ext4_jbd2.c        2011-05-20 10:59:29.000000000 +0300
54 +++ linux-stage/fs/ext4/ext4_jbd2.c     2011-05-20 11:00:01.000000000 +0300
55 @@ -31,6 +31,7 @@ int __ext4_journal_get_write_access(cons
56         }
57         return err;
58  }
59 +EXPORT_SYMBOL(__ext4_journal_get_write_access);
60  
61  int __ext4_journal_forget(const char *where, handle_t *handle,
62                                 struct buffer_head *bh)
63 @@ -107,3 +108,4 @@ int __ext4_handle_dirty_metadata(const c
64         }
65         return err;
66  }
67 +EXPORT_SYMBOL(__ext4_handle_dirty_metadata);
68 Index: linux-stage/fs/ext4/ext4_jbd2.h
69 ===================================================================
70 --- linux-stage.orig/fs/ext4/ext4_jbd2.h        2011-05-20 10:59:29.000000000 +0300
71 +++ linux-stage/fs/ext4/ext4_jbd2.h     2011-05-20 11:00:01.000000000 +0300
72 @@ -35,6 +35,8 @@
73         (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_EXTENTS)   \
74          ? 27U : 8U)
75  
76 +#define ext4_journal_dirty_metadata(handle, bh)  \
77 +               ext4_handle_dirty_metadata(handle, NULL, bh)
78  /* Extended attribute operations touch at most two data buffers,
79   * two bitmap buffers, and two group summaries, in addition to the inode
80   * and the superblock, which are already accounted for. */
81 Index: linux-stage/fs/ext4/extents.c
82 ===================================================================
83 --- linux-stage.orig/fs/ext4/extents.c
84 +++ linux-stage/fs/ext4/extents.c
85 @@ -2133,6 +2133,55 @@ int ext4_ext_calc_credits_for_single_ext
86  }
87  
88  /*
89 + * This routine returns max. credits extent tree can consume.
90 + * It should be OK for low-performance paths like ->writepage()
91 + * To allow many writing process to fit a single transaction,
92 + * caller should calculate credits under truncate_mutex and
93 + * pass actual path.
94 + */
95 +int ext4_ext_calc_credits_for_insert(struct inode *inode,
96 +                                    struct ext4_ext_path *path)
97 +{
98 +       int depth, needed;
99 +
100 +       if (path) {
101 +               /* probably there is space in leaf? */
102 +               depth = path->p_depth;
103 +               if (le16_to_cpu(path[depth].p_hdr->eh_entries)
104 +                               < le16_to_cpu(path[depth].p_hdr->eh_max))
105 +                       return 1;
106 +       }
107 +
108 +       /*
109 +        * given 32bit logical block (4294967296 blocks), max. tree
110 +        * can be 4 levels in depth -- 4 * 340^4 == 53453440000.
111 +        * let's also add one more level for imbalance.
112 +        */
113 +       depth = 5;
114 +
115 +       /* allocation of new data block(s) */
116 +       needed = 2;
117 +
118 +       /*
119 +        * tree can be full, so it'd need to grow in depth:
120 +        * we need one credit to modify old root, credits for
121 +        * new root will be added in split accounting
122 +        */
123 +       needed += 1;
124 +       /*
125 +        * Index split can happen, we'd need:
126 +        *    allocate intermediate indexes (bitmap + group)
127 +        *  + change two blocks at each level, but root (already included)
128 +        */
129 +       needed += (depth * 2) + (depth * 2);
130 +
131 +       /* any allocation modifies superblock */
132 +       needed += 1;
133 +
134 +       return needed;
135 +}
136 +
137 +/*
138   * How many index/leaf blocks need to change/allocate to modify nrblocks?
139   *
140   * if nrblocks are fit in a single extent (chunk flag is 1), then
141 @@ -4029,3 +4079,14 @@ int ext4_fiemap(struct inode *inode, str
142         return error;
143  }
144  
145 +EXPORT_SYMBOL(ext4_ext_store_pblock);
146 +EXPORT_SYMBOL(ext4_ext_search_right);
147 +EXPORT_SYMBOL(ext4_ext_search_left);
148 +EXPORT_SYMBOL(ext_pblock);
149 +EXPORT_SYMBOL(ext4_ext_insert_extent);
150 +EXPORT_SYMBOL(ext4_mb_new_blocks);
151 +EXPORT_SYMBOL(ext4_ext_calc_credits_for_insert);
152 +EXPORT_SYMBOL(ext4_mark_inode_dirty);
153 +EXPORT_SYMBOL(ext4_ext_walk_space);
154 +EXPORT_SYMBOL(ext4_ext_find_extent);
155 +EXPORT_SYMBOL(ext4_ext_drop_refs);
156 +
157 Index: linux-stage/fs/ext4/inode.c
158 ===================================================================
159 --- linux-stage.orig/fs/ext4/inode.c    2011-05-20 10:59:31.000000000 +0300
160 +++ linux-stage/fs/ext4/inode.c 2011-05-20 11:00:01.000000000 +0300
161 @@ -5249,6 +5249,7 @@ bad_inode:
162         iget_failed(inode);
163         return ERR_PTR(ret);
164  }
165 +EXPORT_SYMBOL(ext4_iget);
166  
167  static int ext4_inode_blocks_set(handle_t *handle,
168                                 struct ext4_inode *raw_inode,
169 Index: linux-stage/fs/ext4/mballoc.c
170 ===================================================================
171 --- linux-stage.orig/fs/ext4/mballoc.c  2011-05-20 10:59:32.000000000 +0300
172 +++ linux-stage/fs/ext4/mballoc.c       2011-05-20 11:00:01.000000000 +0300
173 @@ -4044,6 +4044,7 @@ repeat:
174         if (ac)
175                 kmem_cache_free(ext4_ac_cachep, ac);
176  }
177 +EXPORT_SYMBOL(ext4_discard_preallocations);
178  
179  /*
180   * finds all preallocated spaces and return blocks being freed to them
181 @@ -5029,3 +5030,6 @@ int ext4_trim_fs(struct super_block *sb,
182  
183         return ret;
184  }
185 +
186 +EXPORT_SYMBOL(ext4_free_blocks);
187 +
188 Index: linux-stage/fs/ext4/super.c
189 ===================================================================
190 --- linux-stage.orig/fs/ext4/super.c    2011-05-20 10:59:31.000000000 +0300
191 +++ linux-stage/fs/ext4/super.c 2011-05-20 11:00:01.000000000 +0300
192 @@ -128,6 +128,7 @@ __u32 ext4_itable_unused_count(struct su
193                 (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT ?
194                  (__u32)le16_to_cpu(bg->bg_itable_unused_hi) << 16 : 0);
195  }
196 +EXPORT_SYMBOL(ext4_itable_unused_count);
197  
198  void ext4_block_bitmap_set(struct super_block *sb,
199                            struct ext4_group_desc *bg, ext4_fsblk_t blk)
200 @@ -1500,10 +1501,12 @@ enum {
201         Opt_usrjquota, Opt_grpjquota, Opt_offusrjquota, Opt_offgrpjquota,
202         Opt_jqfmt_vfsold, Opt_jqfmt_vfsv0, Opt_jqfmt_vfsv1, Opt_quota,
203         Opt_noquota, Opt_ignore, Opt_barrier, Opt_nobarrier, Opt_err,
204 +       Opt_iopen, Opt_noiopen, Opt_iopen_nopriv,
205         Opt_resize, Opt_usrquota, Opt_grpquota, Opt_i_version,
206         Opt_stripe, Opt_delalloc, Opt_nodelalloc,
207         Opt_block_validity, Opt_noblock_validity,
208         Opt_inode_readahead_blks, Opt_journal_ioprio,
209 +       Opt_mballoc,
210         Opt_discard, Opt_nodiscard,
211         Opt_init_inode_table, Opt_noinit_inode_table,
212  };
213 @@ -1556,6 +1559,9 @@ static const match_table_t tokens = {             
214         {Opt_noquota, "noquota"},
215         {Opt_quota, "quota"},
216         {Opt_usrquota, "usrquota"},
217 +       {Opt_iopen, "iopen"},
218 +       {Opt_noiopen, "noiopen"},
219 +       {Opt_iopen_nopriv, "iopen_nopriv"},
220         {Opt_barrier, "barrier=%u"},
221         {Opt_barrier, "barrier"},
222         {Opt_nobarrier, "nobarrier"},
223 @@ -1571,6 +1577,7 @@ static const match_table_t tokens = {
224         {Opt_auto_da_alloc, "auto_da_alloc=%u"},
225         {Opt_auto_da_alloc, "auto_da_alloc"},
226         {Opt_noauto_da_alloc, "noauto_da_alloc"},
227 +       {Opt_mballoc, "mballoc"},
228         {Opt_discard, "discard"},
229         {Opt_nodiscard, "nodiscard"},
230         {Opt_err, NULL},
231 @@ -1928,6 +1935,10 @@ set_qf_format:           
232                         else
233                                 clear_opt(sbi->s_mount_opt, BARRIER);
234                         break;
235 +               case Opt_iopen:
236 +               case Opt_noiopen:
237 +               case Opt_iopen_nopriv:
238 +                       break;
239                 case Opt_ignore:
240                         break;
241                 case Opt_resize:
242 @@ -2011,6 +2022,8 @@ set_qf_format:
243                 case Opt_nodiscard:
244                         clear_opt(sbi->s_mount_opt, DISCARD);
245                         break;
246 +               case Opt_mballoc:
247 +                       break;
248                 default:
249                         ext4_msg(sb, KERN_ERR,
250                                "Unrecognized mount option \"%s\" "