aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--fs/fcntl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/fcntl.c b/fs/fcntl.c
index ae413086db97..50a988993262 100644
--- a/fs/fcntl.c
+++ b/fs/fcntl.c
@@ -461,11 +461,11 @@ static void send_sigio_to_task(struct task_struct *p,
461 else 461 else
462 si.si_band = band_table[reason - POLL_IN]; 462 si.si_band = band_table[reason - POLL_IN];
463 si.si_fd = fd; 463 si.si_fd = fd;
464 if (!group_send_sig_info(signum, &si, p)) 464 if (!do_send_sig_info(signum, &si, p, true))
465 break; 465 break;
466 /* fall-through: fall back on the old plain SIGIO signal */ 466 /* fall-through: fall back on the old plain SIGIO signal */
467 case 0: 467 case 0:
468 group_send_sig_info(SIGIO, SEND_SIG_PRIV, p); 468 do_send_sig_info(SIGIO, SEND_SIG_PRIV, p, true);
469 } 469 }
470} 470}
471 471