Commit 5dfa776c authored by Dave Kleikamp's avatar Dave Kleikamp

JFS: recalc_sigpending has no argument

I've got to keep my 2.4 and 2.5 patches straight!
parent 136582b0
...@@ -2168,7 +2168,7 @@ int jfsIOWait(void *arg) ...@@ -2168,7 +2168,7 @@ int jfsIOWait(void *arg)
spin_lock_irq(&current->sigmask_lock); spin_lock_irq(&current->sigmask_lock);
sigfillset(&current->blocked); sigfillset(&current->blocked);
recalc_sigpending(current); recalc_sigpending();
spin_unlock_irq(&current->sigmask_lock); spin_unlock_irq(&current->sigmask_lock);
complete(&jfsIOwait); complete(&jfsIOwait);
......
...@@ -2786,7 +2786,7 @@ int jfs_lazycommit(void) ...@@ -2786,7 +2786,7 @@ int jfs_lazycommit(void)
spin_lock_irq(&current->sigmask_lock); spin_lock_irq(&current->sigmask_lock);
sigfillset(&current->blocked); sigfillset(&current->blocked);
recalc_sigpending(current); recalc_sigpending();
spin_unlock_irq(&current->sigmask_lock); spin_unlock_irq(&current->sigmask_lock);
LAZY_LOCK_INIT(); LAZY_LOCK_INIT();
...@@ -2912,7 +2912,7 @@ int jfs_sync(void) ...@@ -2912,7 +2912,7 @@ int jfs_sync(void)
spin_lock_irq(&current->sigmask_lock); spin_lock_irq(&current->sigmask_lock);
sigfillset(&current->blocked); sigfillset(&current->blocked);
recalc_sigpending(current); recalc_sigpending();
spin_unlock_irq(&current->sigmask_lock); spin_unlock_irq(&current->sigmask_lock);
complete(&jfsIOwait); complete(&jfsIOwait);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment