]> asedeno.scripts.mit.edu Git - linux.git/blobdiff - fs/reiserfs/journal.c
Merge tag 'clk-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux
[linux.git] / fs / reiserfs / journal.c
index 36346dc4cec0ee5a144c1394850ef4f526885d47..4517a1394c6f418de001bf26ccdf7fdaab192d62 100644 (file)
@@ -94,7 +94,7 @@ static int journal_join(struct reiserfs_transaction_handle *th,
                        struct super_block *sb);
 static void release_journal_dev(struct super_block *super,
                               struct reiserfs_journal *journal);
-static int dirty_one_transaction(struct super_block *s,
+static void dirty_one_transaction(struct super_block *s,
                                 struct reiserfs_journal_list *jl);
 static void flush_async_commits(struct work_struct *work);
 static void queue_log_writer(struct super_block *s);
@@ -1682,12 +1682,11 @@ static int write_one_transaction(struct super_block *s,
 }
 
 /* used by flush_commit_list */
-static int dirty_one_transaction(struct super_block *s,
+static void dirty_one_transaction(struct super_block *s,
                                 struct reiserfs_journal_list *jl)
 {
        struct reiserfs_journal_cnode *cn;
        struct reiserfs_journal_list *pjl;
-       int ret = 0;
 
        jl->j_state |= LIST_DIRTY;
        cn = jl->j_realblock;
@@ -1716,7 +1715,6 @@ static int dirty_one_transaction(struct super_block *s,
                }
                cn = cn->next;
        }
-       return ret;
 }
 
 static int kupdate_transactions(struct super_block *s,