Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 116194
b: refs/heads/master
c: a70948b
h: refs/heads/master
v: v3
  • Loading branch information
Julien Brunel authored and Artem Bityutskiy committed Sep 30, 2008
1 parent 9ed1499 commit 5140664
Show file tree
Hide file tree
Showing 2 changed files with 1 addition 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: 746103aca2ae2b044e32a6ab06a6536652124c99
refs/heads/master: a70948b564e9f6cb81115c606d46f5b74a77b7c2
4 changes: 0 additions & 4 deletions trunk/fs/ubifs/super.c
Original file line number Diff line number Diff line change
Expand Up @@ -1032,8 +1032,6 @@ static int mount_ubifs(struct ubifs_info *c)

/* Create background thread */
c->bgt = kthread_create(ubifs_bg_thread, c, c->bgt_name);
if (!c->bgt)
c->bgt = ERR_PTR(-EINVAL);
if (IS_ERR(c->bgt)) {
err = PTR_ERR(c->bgt);
c->bgt = NULL;
Expand Down Expand Up @@ -1347,8 +1345,6 @@ static int ubifs_remount_rw(struct ubifs_info *c)

/* Create background thread */
c->bgt = kthread_create(ubifs_bg_thread, c, c->bgt_name);
if (!c->bgt)
c->bgt = ERR_PTR(-EINVAL);
if (IS_ERR(c->bgt)) {
err = PTR_ERR(c->bgt);
c->bgt = NULL;
Expand Down

0 comments on commit 5140664

Please sign in to comment.