Whamcloud - gitweb
Branch HEAD
[fs/lustre-release.git] / lustre / kernel_patches / patches / jbd-journal-chksum-2.6.18-vanilla.patch
1 Index: linux-2.6.18.8/fs/jbd/commit.c
2 ===================================================================
3 --- linux-2.6.18.8.orig/fs/jbd/commit.c
4 +++ linux-2.6.18.8/fs/jbd/commit.c
5 @@ -22,6 +22,7 @@
6  #include <linux/mm.h>
7  #include <linux/pagemap.h>
8  #include <linux/smp_lock.h>
9 +#include <linux/crc32.h>
10  
11  
12  /*
13 @@ -95,19 +96,23 @@ static int inverted_lock(journal_t *jour
14         return 1;
15  }
16  
17 -/* Done it all: now write the commit record.  We should have
18 +/*
19 + * Done it all: now submit the commit record.  We should have
20   * cleaned up our previous buffers by now, so if we are in abort
21   * mode we can now just skip the rest of the journal write
22   * entirely.
23   *
24   * Returns 1 if the journal needs to be aborted or 0 on success
25   */
26 -static int journal_write_commit_record(journal_t *journal,
27 -                                       transaction_t *commit_transaction)
28 +static int journal_submit_commit_record(journal_t *journal,
29 +                                       transaction_t *commit_transaction,
30 +                                       struct buffer_head **cbh,
31 +                                       __u32 crc32_sum)
32  {
33         struct journal_head *descriptor;
34 +       struct commit_header *tmp;
35         struct buffer_head *bh;
36 -       int i, ret;
37 +       int ret;
38         int barrier_done = 0;
39  
40         if (is_journal_aborted(journal))
41 @@ -119,21 +124,35 @@ static int journal_write_commit_record(j
42  
43         bh = jh2bh(descriptor);
44  
45 -       /* AKPM: buglet - add `i' to tmp! */
46 -       for (i = 0; i < bh->b_size; i += 512) {
47 -               journal_header_t *tmp = (journal_header_t*)bh->b_data;
48 -               tmp->h_magic = cpu_to_be32(JFS_MAGIC_NUMBER);
49 -               tmp->h_blocktype = cpu_to_be32(JFS_COMMIT_BLOCK);
50 -               tmp->h_sequence = cpu_to_be32(commit_transaction->t_tid);
51 +       tmp = (struct commit_header *)bh->b_data;
52 +       tmp->h_magic = cpu_to_be32(JFS_MAGIC_NUMBER);
53 +       tmp->h_blocktype = cpu_to_be32(JFS_COMMIT_BLOCK);
54 +       tmp->h_sequence = cpu_to_be32(commit_transaction->t_tid);
55 +                               
56 +       if (JFS_HAS_COMPAT_FEATURE(journal,
57 +                               JFS_FEATURE_COMPAT_CHECKSUM)) {
58 +               tmp->h_chksum_type      = JFS_CRC32_CHKSUM;
59 +               tmp->h_chksum_size      = JFS_CRC32_CHKSUM_SIZE;
60 +               tmp->h_chksum[0]        = cpu_to_be32(crc32_sum);
61         }
62  
63 -       JBUFFER_TRACE(descriptor, "write commit block");
64 +       JBUFFER_TRACE(descriptor, "submit commit block");
65 +       lock_buffer(bh);
66 +       get_bh(bh);
67 +
68         set_buffer_dirty(bh);
69 -       if (journal->j_flags & JFS_BARRIER) {
70 +       set_buffer_uptodate(bh);
71 +       bh->b_end_io = journal_end_buffer_io_sync;
72 +
73 +       if (journal->j_flags & JFS_BARRIER &&
74 +               !JFS_HAS_INCOMPAT_FEATURE(journal,
75 +                                        JFS_FEATURE_INCOMPAT_ASYNC_COMMIT)) {
76 +
77                 set_buffer_ordered(bh);
78                 barrier_done = 1;
79         }
80 -       ret = sync_dirty_buffer(bh);
81 +       ret = submit_bh(WRITE, bh);
82 +
83         /* is it possible for another commit to fail at roughly
84          * the same time as this one?  If so, we don't want to
85          * trust the barrier flag in the super, but instead want
86 @@ -154,12 +173,70 @@ static int journal_write_commit_record(j
87                 clear_buffer_ordered(bh);
88                 set_buffer_uptodate(bh);
89                 set_buffer_dirty(bh);
90 -               ret = sync_dirty_buffer(bh);
91 +               ret = submit_bh(WRITE, bh);
92         }
93 -       put_bh(bh);             /* One for getblk() */
94 -       journal_put_journal_head(descriptor);
95 +       *cbh = bh;
96 +       return ret;
97 +}
98 +
99 +/*
100 + * This function along with journal_submit_commit_record
101 + * allows to write the commit record asynchronously.
102 + */
103 +static int journal_wait_on_commit_record(struct buffer_head *bh)
104 +{
105 +       int ret = 0;
106 +
107 +       clear_buffer_dirty(bh);
108 +       wait_on_buffer(bh);
109 +       
110 +       if (unlikely(!buffer_uptodate(bh)))
111 +               ret = -EIO;
112 +       put_bh(bh);            /* One for getblk() */
113 +       journal_put_journal_head(bh2jh(bh));
114 +       
115 +       return ret;
116 +}
117 +
118 +/*
119 + * Wait for all submitted IO to complete.
120 + */
121 +static int journal_wait_on_locked_list(journal_t *journal,
122 +                                      transaction_t *commit_transaction)
123 +{
124 +       int ret = 0;
125 +       struct journal_head *jh;
126  
127 -       return (ret == -EIO);
128 +       while (commit_transaction->t_locked_list) {
129 +               struct buffer_head *bh;
130 +
131 +               jh = commit_transaction->t_locked_list->b_tprev;
132 +               bh = jh2bh(jh);
133 +               get_bh(bh);
134 +               if (buffer_locked(bh)) {
135 +                       spin_unlock(&journal->j_list_lock);
136 +                       wait_on_buffer(bh);
137 +                       if (unlikely(!buffer_uptodate(bh)))
138 +                               ret = -EIO;
139 +                       spin_lock(&journal->j_list_lock);
140 +               }
141 +               if (!inverted_lock(journal, bh)) {
142 +                       put_bh(bh);
143 +                       spin_lock(&journal->j_list_lock);
144 +                       continue;
145 +               }
146 +               if (buffer_jbd(bh) && jh->b_jlist == BJ_Locked) {
147 +                       __journal_unfile_buffer(jh);
148 +                       jbd_unlock_bh_state(bh);
149 +                       journal_remove_journal_head(bh);
150 +                       put_bh(bh);
151 +               } else {
152 +                       jbd_unlock_bh_state(bh);
153 +               }
154 +               put_bh(bh);
155 +               cond_resched_lock(&journal->j_list_lock);
156 +       }
157 +       return ret;
158  }
159  
160  void journal_do_submit_data(struct buffer_head **wbuf, int bufs)
161 @@ -273,6 +350,20 @@ write_out_data:
162         journal_do_submit_data(wbuf, bufs);
163  }
164  
165 +static inline __u32 jbd_checksum_data(__u32 crc32_sum, struct buffer_head *bh)
166 +{
167 +       struct page *page = bh->b_page;
168 +       char *addr;
169 +       __u32 checksum;
170 +
171 +       addr = kmap_atomic(page, KM_USER0);
172 +       checksum = crc32_be(crc32_sum,
173 +                           (void *)(addr + offset_in_page(bh->b_data)),
174 +                           bh->b_size);
175 +       kunmap_atomic(addr, KM_USER0);
176 +       return checksum;
177 +}
178 +
179  /*
180   * journal_commit_transaction
181   *
182 @@ -296,6 +387,8 @@ void journal_commit_transaction(journal_
183         int first_tag = 0;
184         int tag_flag;
185         int i;
186 +       struct buffer_head *cbh = NULL; /* For transactional checksums */
187 +       __u32 crc32_sum = ~0;
188  
189         /*
190          * First job: lock down the current transaction and wait for
191 @@ -439,38 +532,14 @@ void journal_commit_transaction(journal_
192         journal_submit_data_buffers(journal, commit_transaction);
193  
194         /*
195 -        * Wait for all previously submitted IO to complete.
196 +        * Wait for all previously submitted IO to complete if commit
197 +        * record is to be written synchronously.
198          */
199         spin_lock(&journal->j_list_lock);
200 -       while (commit_transaction->t_locked_list) {
201 -               struct buffer_head *bh;
202 -
203 -               jh = commit_transaction->t_locked_list->b_tprev;
204 -               bh = jh2bh(jh);
205 -               get_bh(bh);
206 -               if (buffer_locked(bh)) {
207 -                       spin_unlock(&journal->j_list_lock);
208 -                       wait_on_buffer(bh);
209 -                       if (unlikely(!buffer_uptodate(bh)))
210 -                               err = -EIO;
211 -                       spin_lock(&journal->j_list_lock);
212 -               }
213 -               if (!inverted_lock(journal, bh)) {
214 -                       put_bh(bh);
215 -                       spin_lock(&journal->j_list_lock);
216 -                       continue;
217 -               }
218 -               if (buffer_jbd(bh) && jh->b_jlist == BJ_Locked) {
219 -                       __journal_unfile_buffer(jh);
220 -                       jbd_unlock_bh_state(bh);
221 -                       journal_remove_journal_head(bh);
222 -                       put_bh(bh);
223 -               } else {
224 -                       jbd_unlock_bh_state(bh);
225 -               }
226 -               put_bh(bh);
227 -               cond_resched_lock(&journal->j_list_lock);
228 -       }
229 +       if (!JFS_HAS_INCOMPAT_FEATURE(journal,
230 +               JFS_FEATURE_INCOMPAT_ASYNC_COMMIT))
231 +               err = journal_wait_on_locked_list(journal,
232 +                                                 commit_transaction);
233         spin_unlock(&journal->j_list_lock);
234  
235         if (err)
236 @@ -643,6 +712,16 @@ void journal_commit_transaction(journal_
237  start_journal_io:
238                         for (i = 0; i < bufs; i++) {
239                                 struct buffer_head *bh = wbuf[i];
240 +                               /*
241 +                                * Compute checksum.
242 +                                */
243 +                               if (JFS_HAS_COMPAT_FEATURE(journal,
244 +                                       JFS_FEATURE_COMPAT_CHECKSUM)) {
245 +                                       crc32_sum =
246 +                                               jbd_checksum_data(crc32_sum,
247 +                                                                  bh);
248 +                               }
249 +
250                                 lock_buffer(bh);
251                                 clear_buffer_dirty(bh);
252                                 set_buffer_uptodate(bh);
253 @@ -659,6 +738,23 @@ start_journal_io:
254                 }
255         }
256  
257 +       /* Done it all: now write the commit record asynchronously. */
258 +
259 +       if (JFS_HAS_INCOMPAT_FEATURE(journal,
260 +               JFS_FEATURE_INCOMPAT_ASYNC_COMMIT)) {
261 +               err = journal_submit_commit_record(journal, commit_transaction,
262 +                                                &cbh, crc32_sum);
263 +               if (err)
264 +                       __journal_abort_hard(journal);
265 +
266 +               spin_lock(&journal->j_list_lock);
267 +               err = journal_wait_on_locked_list(journal,
268 +                                               commit_transaction);
269 +               spin_unlock(&journal->j_list_lock);
270 +               if (err)
271 +                       __journal_abort_hard(journal);
272 +       }
273 +
274         /* Lo and behold: we have just managed to send a transaction to
275             the log.  Before we can commit it, wait for the IO so far to
276             complete.  Control buffers being written are on the
277 @@ -757,9 +853,15 @@ wait_for_iobuf:
278         }
279  
280         jbd_debug(3, "JBD: commit phase 6\n");
281 -
282 -       if (journal_write_commit_record(journal, commit_transaction))
283 -               err = -EIO;
284 +               
285 +       if (!JFS_HAS_INCOMPAT_FEATURE(journal,
286 +               JFS_FEATURE_INCOMPAT_ASYNC_COMMIT)) {
287 +               err = journal_submit_commit_record(journal, commit_transaction,
288 +                                               &cbh, crc32_sum);
289 +               if (err)
290 +                       __journal_abort_hard(journal);
291 +       }
292 +       err = journal_wait_on_commit_record(cbh);
293  
294         if (err)
295                 __journal_abort_hard(journal);
296 Index: linux-2.6.18.8/include/linux/jbd.h
297 ===================================================================
298 --- linux-2.6.18.8.orig/include/linux/jbd.h
299 +++ linux-2.6.18.8/include/linux/jbd.h
300 @@ -148,6 +148,29 @@ typedef struct journal_header_s
301         __be32          h_sequence;
302  } journal_header_t;
303  
304 +/*
305 + * Checksum types.
306 + */
307 +#define JFS_CRC32_CHKSUM   1
308 +#define JFS_MD5_CHKSUM     2
309 +#define JFS_SHA1_CHKSUM    3
310 +
311 +#define JFS_CRC32_CHKSUM_SIZE 4
312 +
313 +#define JFS_CHECKSUM_BYTES (32 / sizeof(u32))
314 +/*
315 + * Commit block header for storing transactional checksums:
316 + */
317 +struct commit_header
318 +{
319 +       __be32          h_magic;
320 +       __be32          h_blocktype;
321 +       __be32          h_sequence;
322 +       unsigned char   h_chksum_type;
323 +       unsigned char   h_chksum_size;
324 +       unsigned char   h_padding[2];
325 +       __be32          h_chksum[JFS_CHECKSUM_BYTES];
326 +};
327  
328  /* 
329   * The block tag: used to describe a single buffer in the journal 
330 @@ -234,12 +257,16 @@ typedef struct journal_superblock_s
331         ((j)->j_format_version >= 2 &&                                  \
332          ((j)->j_superblock->s_feature_incompat & cpu_to_be32((mask))))
333  
334 -#define JFS_FEATURE_INCOMPAT_REVOKE    0x00000001
335 +#define JFS_FEATURE_COMPAT_CHECKSUM    0x00000001
336 +
337 +#define JFS_FEATURE_INCOMPAT_REVOKE            0x00000001
338 +#define JFS_FEATURE_INCOMPAT_ASYNC_COMMIT      0x00000004
339  
340  /* Features known to this kernel version: */
341 -#define JFS_KNOWN_COMPAT_FEATURES      0
342 +#define JFS_KNOWN_COMPAT_FEATURES      JFS_FEATURE_COMPAT_CHECKSUM
343  #define JFS_KNOWN_ROCOMPAT_FEATURES    0
344 -#define JFS_KNOWN_INCOMPAT_FEATURES    JFS_FEATURE_INCOMPAT_REVOKE
345 +#define JFS_KNOWN_INCOMPAT_FEATURES    (JFS_FEATURE_INCOMPAT_REVOKE | \
346 +                                       JFS_FEATURE_INCOMPAT_ASYNC_COMMIT)
347  
348  #ifdef __KERNEL__
349  
350 @@ -1053,6 +1080,8 @@ extern int           journal_check_available_fe
351                    (journal_t *, unsigned long, unsigned long, unsigned long);
352  extern int        journal_set_features 
353                    (journal_t *, unsigned long, unsigned long, unsigned long);
354 +extern int        journal_clear_features
355 +                  (journal_t *, unsigned long, unsigned long, unsigned long);
356  extern int        journal_create     (journal_t *);
357  extern int        journal_load       (journal_t *journal);
358  extern void       journal_destroy    (journal_t *);
359 Index: linux-2.6.18.8/fs/jbd/recovery.c
360 ===================================================================
361 --- linux-2.6.18.8.orig/fs/jbd/recovery.c
362 +++ linux-2.6.18.8/fs/jbd/recovery.c
363 @@ -21,6 +21,7 @@
364  #include <linux/jbd.h>
365  #include <linux/errno.h>
366  #include <linux/slab.h>
367 +#include <linux/crc32.h>
368  #endif
369  
370  /*
371 @@ -307,6 +308,37 @@ int journal_skip_recovery(journal_t *jou
372         return err;
373  }
374  
375 +/*
376 + * calc_chksums calculates the checksums for the blocks described in the
377 + * descriptor block.
378 + */
379 +static int calc_chksums(journal_t *journal, struct buffer_head *bh,
380 +                      unsigned long *next_log_block, __u32 *crc32_sum)
381 +{
382 +       int i, num_blks, err;
383 +       unsigned long io_block;
384 +       struct buffer_head *obh;
385 +
386 +       num_blks = count_tags(bh, journal->j_blocksize);
387 +       /* Calculate checksum of the descriptor block. */
388 +       *crc32_sum = crc32_be(*crc32_sum, (void *)bh->b_data, bh->b_size);
389 +
390 +       for (i = 0; i < num_blks; i++) {
391 +               io_block = (*next_log_block)++;
392 +               wrap(journal, *next_log_block);
393 +               err = jread(&obh, journal, io_block);
394 +               if (err) {
395 +                       printk(KERN_ERR "JBD: IO error %d recovering block "
396 +                               "%lu in log\n", err, io_block);
397 +                       return 1;
398 +               } else {
399 +                       *crc32_sum = crc32_be(*crc32_sum, (void *)obh->b_data,
400 +                                    obh->b_size);
401 +               }
402 +       }
403 +       return 0;
404 +}
405 +
406  static int do_one_pass(journal_t *journal,
407                         struct recovery_info *info, enum passtype pass)
408  {
409 @@ -318,6 +350,7 @@ static int do_one_pass(journal_t *journa
410         struct buffer_head *    bh;
411         unsigned int            sequence;
412         int                     blocktype;
413 +       __u32                   crc32_sum = ~0; /* Transactional Checksums */
414  
415         /* Precompute the maximum metadata descriptors in a descriptor block */
416         int                     MAX_BLOCKS_PER_DESC;
417 @@ -409,9 +442,24 @@ static int do_one_pass(journal_t *journa
418                 switch(blocktype) {
419                 case JFS_DESCRIPTOR_BLOCK:
420                         /* If it is a valid descriptor block, replay it
421 -                        * in pass REPLAY; otherwise, just skip over the
422 -                        * blocks it describes. */
423 +                        * in pass REPLAY; if journal_checksums enabled, then
424 +                        * calculate checksums in PASS_SCAN, otherwise,
425 +                        * just skip over the blocks it describes. */
426                         if (pass != PASS_REPLAY) {
427 +                               if (pass == PASS_SCAN &&
428 +                                   JFS_HAS_COMPAT_FEATURE(journal,
429 +                                           JFS_FEATURE_COMPAT_CHECKSUM) &&
430 +                                   !info->end_transaction) {
431 +                                       if (calc_chksums(journal, bh,
432 +                                                       &next_log_block,
433 +                                                       &crc32_sum)) {
434 +                                               put_bh(bh);
435 +                                               break;
436 +                                       }
437 +                                       put_bh(bh);
438 +                                       continue;
439 +                               }
440 +
441                                 next_log_block +=
442                                         count_tags(bh, journal->j_blocksize);
443                                 wrap(journal, next_log_block);
444 @@ -506,9 +554,97 @@ static int do_one_pass(journal_t *journa
445                         continue;
446  
447                 case JFS_COMMIT_BLOCK:
448 -                       /* Found an expected commit block: not much to
449 -                        * do other than move on to the next sequence
450 +                       /*     How to differentiate between interrupted commit
451 +                        *               and journal corruption ?
452 +                        *
453 +                        * {nth transaction}
454 +                        *        Checksum Verification Failed
455 +                        *                       |
456 +                        *               ____________________
457 +                        *              |                    |
458 +                        *      async_commit             sync_commit
459 +                        *              |                    |
460 +                        *              | GO TO NEXT    "Journal Corruption"
461 +                        *              | TRANSACTION
462 +                        *              |
463 +                        * {(n+1)th transanction}
464 +                        *              |
465 +                        *       _______|______________
466 +                        *      |                     |
467 +                        * Commit block found   Commit block not found
468 +                        *      |                     |
469 +                        * "Journal Corruption"       |
470 +                        *               _____________|__________
471 +                        *              |                       |
472 +                        *      nth trans corrupt       OR   nth trans
473 +                        *      and (n+1)th interrupted     interrupted 
474 +                        *      before commit block
475 +                        *      could reach the disk.
476 +                        *      (Cannot find the difference in above
477 +                        *       mentioned conditions. Hence assume
478 +                        *       "Interrupted Commit".)
479 +                        */
480 +
481 +                       /* Found an expected commit block: if checksums
482 +                        * are present verify them in PASS_SCAN; else not
483 +                        * much to do other than move on to the next sequence
484                          * number. */
485 +                       if (pass == PASS_SCAN &&
486 +                           JFS_HAS_COMPAT_FEATURE(journal,
487 +                                   JFS_FEATURE_COMPAT_CHECKSUM)) {
488 +                               int chksum_err, chksum_seen;
489 +                               struct commit_header *cbh =
490 +                                       (struct commit_header *)bh->b_data;
491 +                               unsigned found_chksum =
492 +                                               be32_to_cpu(cbh->h_chksum[0]);
493 +
494 +                               chksum_err = chksum_seen = 0;
495 +
496 +                               if (info->end_transaction) {
497 +                                       printk(KERN_ERR "JBD: Transaction %u "
498 +                                               "found to be corrupt.\n",
499 +                                               next_commit_ID - 1);
500 +                                       brelse(bh);
501 +                                       break;
502 +                               }
503 +
504 +                               if (crc32_sum == found_chksum &&
505 +                                   cbh->h_chksum_type == JFS_CRC32_CHKSUM &&
506 +                                   cbh->h_chksum_size ==
507 +                                               JFS_CRC32_CHKSUM_SIZE) {
508 +                                      chksum_seen = 1;
509 +                               } else if (!(cbh->h_chksum_type == 0 &&
510 +                                            cbh->h_chksum_size == 0 &&
511 +                                            found_chksum == 0 &&
512 +                                            !chksum_seen)) {
513 +                               /*
514 +                                * If fs is mounted using an old kernel and then
515 +                                * kernel with journal_chksum is used then we
516 +                                * get a situation where the journal flag has
517 +                                * checksum flag set but checksums are not
518 +                                * present i.e chksum = 0, in the individual
519 +                                * commit blocks.
520 +                                * Hence to avoid checksum failures, in this
521 +                                * situation, this extra check is added.
522 +                                */
523 +                                               chksum_err = 1;
524 +                               }
525 +
526 +                               if (chksum_err) {
527 +                                       info->end_transaction = next_commit_ID;
528 +
529 +                                       if (!JFS_HAS_INCOMPAT_FEATURE(journal,
530 +                                           JFS_FEATURE_INCOMPAT_ASYNC_COMMIT)){
531 +                                               printk(KERN_ERR
532 +                                                      "JBD: Transaction %u "
533 +                                                      "found to be corrupt.\n",
534 +                                                      next_commit_ID);
535 +                                               brelse(bh);
536 +                                               break;
537 +                                       }
538 +                               }
539 +                               crc32_sum = ~0;
540 +                       }
541                         brelse(bh);
542                         next_commit_ID++;
543                         continue;
544 @@ -544,9 +680,10 @@ static int do_one_pass(journal_t *journa
545          * transaction marks the end of the valid log.
546          */
547  
548 -       if (pass == PASS_SCAN)
549 -               info->end_transaction = next_commit_ID;
550 -       else {
551 +       if (pass == PASS_SCAN) {
552 +               if (!info->end_transaction)
553 +                       info->end_transaction = next_commit_ID;
554 +       } else {
555                 /* It's really bad news if different passes end up at
556                  * different places (but possible due to IO errors). */
557                 if (info->end_transaction != next_commit_ID) {
558 Index: linux-2.6.18.8/fs/jbd/journal.c
559 ===================================================================
560 --- linux-2.6.18.8.orig/fs/jbd/journal.c
561 +++ linux-2.6.18.8/fs/jbd/journal.c
562 @@ -67,6 +67,7 @@ EXPORT_SYMBOL(journal_update_format);
563  EXPORT_SYMBOL(journal_check_used_features);
564  EXPORT_SYMBOL(journal_check_available_features);
565  EXPORT_SYMBOL(journal_set_features);
566 +EXPORT_SYMBOL(journal_clear_features);
567  EXPORT_SYMBOL(journal_create);
568  EXPORT_SYMBOL(journal_load);
569  EXPORT_SYMBOL(journal_destroy);
570 @@ -1573,6 +1574,33 @@ int journal_set_features (journal_t *jou
571         return 1;
572  }
573  
574 +/**
575 + * int journal_clear_features () - Clear a given journal feature in the superblock
576 + * @journal: Journal to act on.
577 + * @compat: bitmask of compatible features
578 + * @ro: bitmask of features that force read-only mount
579 + * @incompat: bitmask of incompatible features
580 + *
581 + * Clear a given journal feature as present on the
582 + * superblock.  Returns true if the requested features could be reset.
583 + *
584 + */
585 +int journal_clear_features (journal_t *journal, unsigned long compat,
586 +                         unsigned long ro, unsigned long incompat)
587 +{
588 +       journal_superblock_t *sb;
589 +
590 +       jbd_debug(1, "Clear features 0x%lx/0x%lx/0x%lx\n",
591 +                 compat, ro, incompat);
592 +
593 +       sb = journal->j_superblock;
594 +
595 +       sb->s_feature_compat    &= ~cpu_to_be32(compat);
596 +       sb->s_feature_ro_compat &= ~cpu_to_be32(ro);
597 +       sb->s_feature_incompat  &= ~cpu_to_be32(incompat);
598 +
599 +       return 1;
600 +}
601  
602  /**
603   * int journal_update_format () - Update on-disk journal structure.
604 Index: linux-2.6.18.8/fs/Kconfig
605 ===================================================================
606 --- linux-2.6.18.8.orig/fs/Kconfig
607 +++ linux-2.6.18.8/fs/Kconfig
608 @@ -140,6 +140,7 @@ config EXT3_FS_SECURITY
609  
610  config JBD
611         tristate
612 +       select CRC32
613         help
614           This is a generic journaling layer for block devices.  It is
615           currently used by the ext3 and OCFS2 file systems, but it could
616 Index: linux-2.6.18.8/Documentation/filesystems/ext3.txt
617 ===================================================================
618 --- linux-2.6.18.8.orig/Documentation/filesystems/ext3.txt
619 +++ linux-2.6.18.8/Documentation/filesystems/ext3.txt
620 @@ -14,6 +14,16 @@ Options
621  When mounting an ext3 filesystem, the following option are accepted:
622  (*) == default
623  
624 +journal_checksum       Enable checksumming of the journal transactions.
625 +                       This will allow the recovery code in e2fsck and the
626 +                       kernel to detect corruption in the kernel.  It is a
627 +                       compatible change and will be ignored by older kernels.
628 +
629 +journal_async_commit   Commit block can be written to disk without waiting
630 +                       for descriptor blocks. If enabled older kernels cannot
631 +                       mount the device. This will enable 'journal_checksum'
632 +                       internally.
633 +
634  journal=update         Update the ext3 file system's journal to the current
635                         format.
636