Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 23519
b: refs/heads/master
c: 8d8c851
h: refs/heads/master
i:
  23517: 9ab9353
  23515: 8ed639c
  23511: 7cba90e
  23503: 0b12600
  23487: 7cdac02
v: v3
  • Loading branch information
Andrew Morton authored and Linus Torvalds committed Mar 25, 2006
1 parent 46f20ec commit 85c3b4d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: e3df18983ea090a2e00dd5c2c6167bb431a0e0a2
refs/heads/master: 8d8c85117fbcbaea7718870ad4b1ddd12940d9b0
8 changes: 4 additions & 4 deletions trunk/fs/jbd/journal.c
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,11 @@
#include <linux/mm.h>
#include <linux/suspend.h>
#include <linux/pagemap.h>
#include <linux/kthread.h>
#include <linux/proc_fs.h>

#include <asm/uaccess.h>
#include <asm/page.h>
#include <linux/proc_fs.h>

EXPORT_SYMBOL(journal_start);
EXPORT_SYMBOL(journal_restart);
Expand Down Expand Up @@ -114,8 +116,6 @@ static int kjournald(void *arg)
journal_t *journal = arg;
transaction_t *transaction;

daemonize("kjournald");

/*
* Set up an interval timer which can be used to trigger a commit wakeup
* after the commit interval expires
Expand Down Expand Up @@ -211,7 +211,7 @@ static int kjournald(void *arg)

static void journal_start_thread(journal_t *journal)
{
kernel_thread(kjournald, journal, CLONE_VM|CLONE_FS|CLONE_FILES);
kthread_run(kjournald, journal, "kjournald");
wait_event(journal->j_wait_done_commit, journal->j_task != 0);
}

Expand Down

0 comments on commit 85c3b4d

Please sign in to comment.