diff options
author | Eric W. Biederman | 2018-07-19 21:31:13 -0500 |
---|---|---|
committer | Eric W. Biederman | 2018-09-11 21:19:14 +0200 |
commit | 961366a01904d460066d65a609c3c2e3051c7903 (patch) | |
tree | 6b3cf4f54b5db8a8c4ac5d92456a9dac508794fc /fs/jffs2 | |
parent | b16503baa8912a5ec5f599914bfdad898588540f (diff) |
signal: Remove the siginfo paramater from kernel_dqueue_signal
None of the callers use the it so remove it.
Reviewed-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: "Eric W. Biederman" <ebiederm@xmission.com>
Diffstat (limited to 'fs/jffs2')
-rw-r--r-- | fs/jffs2/background.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/jffs2/background.c b/fs/jffs2/background.c index 453a6a1fff34..2b4d5013dc5d 100644 --- a/fs/jffs2/background.c +++ b/fs/jffs2/background.c @@ -125,7 +125,7 @@ static int jffs2_garbage_collect_thread(void *_c) if (try_to_freeze()) goto again; - signr = kernel_dequeue_signal(NULL); + signr = kernel_dequeue_signal(); switch(signr) { case SIGSTOP: |