diff options
Diffstat (limited to 'fs/fcntl.c')
| -rw-r--r-- | fs/fcntl.c | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/fs/fcntl.c b/fs/fcntl.c index 0491da3b28c3..8d78ffd7b399 100644 --- a/fs/fcntl.c +++ b/fs/fcntl.c @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0  /*   *  linux/fs/fcntl.c   * @@ -749,7 +750,7 @@ static void send_sigio_to_task(struct task_struct *p,  			 * specific si_codes.  In that case use SI_SIGIO instead  			 * to remove the ambiguity.  			 */ -			if (sig_specific_sicodes(signum)) +			if ((signum != SIGPOLL) && sig_specific_sicodes(signum))  				si.si_code = SI_SIGIO;  			/* Make sure we are called with one of the POLL_* |