~ubuntu-branches/ubuntu/quantal/linux-ti-omap4/quantal-proposed

« back to all changes in this revision

Viewing changes to fs/ext4/super.c

  • Committer: Package Import Robot
  • Author(s): Brad Figg, Brad Figg
  • Date: 2013-06-08 09:09:23 UTC
  • Revision ID: package-import@ubuntu.com-20130608090923-ibtnp6edtrn3sxik
Tags: 3.5.0-226.39
[ Brad Figg ]

UBUNTU: Fixup missing abi files causing FTBS

Show diffs side-by-side

added added

removed removed

Lines of Context:
480
480
        struct super_block              *sb = journal->j_private;
481
481
        struct ext4_sb_info             *sbi = EXT4_SB(sb);
482
482
        int                             error = is_journal_aborted(journal);
483
 
        struct ext4_journal_cb_entry    *jce, *tmp;
 
483
        struct ext4_journal_cb_entry    *jce;
484
484
 
 
485
        BUG_ON(txn->t_state == T_FINISHED);
485
486
        spin_lock(&sbi->s_md_lock);
486
 
        list_for_each_entry_safe(jce, tmp, &txn->t_private_list, jce_list) {
 
487
        while (!list_empty(&txn->t_private_list)) {
 
488
                jce = list_entry(txn->t_private_list.next,
 
489
                                 struct ext4_journal_cb_entry, jce_list);
487
490
                list_del_init(&jce->jce_list);
488
491
                spin_unlock(&sbi->s_md_lock);
489
492
                jce->jce_func(sb, jce, error);