From: Aaron Taylor Date: Thu, 6 May 2021 00:45:14 +0000 (-0700) Subject: Updated micscif/micscif_select.c references from wait_queue_t to wait_queue_entry_t. X-Git-Tag: first-build~2 X-Git-Url: https://git.subgeniuskitty.com/xeon-phi-kernel-module/.git/commitdiff_plain/5707b46f03b04855c75724f93634f20a5fac1cdd Updated micscif/micscif_select.c references from wait_queue_t to wait_queue_entry_t. See also: - https://github.com/torvalds/linux/commit/ac6424b981bce1c4bc55675c6ce11bfe1bbfa64f --- diff --git a/micscif/micscif_select.c b/micscif/micscif_select.c index c6f125f..9957d05 100644 --- a/micscif/micscif_select.c +++ b/micscif/micscif_select.c @@ -191,7 +191,7 @@ static struct poll_table_entry *poll_get_entry(struct poll_wqueues *p) return table->entry++; } -static int __pollwake(wait_queue_t *wait, unsigned mode, int sync, void *key) +static int __pollwake(wait_queue_entry_t *wait, unsigned mode, int sync, void *key) { struct poll_wqueues *pwq = wait->private; DECLARE_WAITQUEUE(dummy_wait, pwq->polling_task); @@ -217,7 +217,7 @@ static int __pollwake(wait_queue_t *wait, unsigned mode, int sync, void *key) return default_wake_function(&dummy_wait, mode, sync, key); } -static int pollwake(wait_queue_t *wait, unsigned mode, int sync, void *key) +static int pollwake(wait_queue_entry_t *wait, unsigned mode, int sync, void *key) { struct poll_table_entry *entry;