From: Greg Kroah-Hartman Date: Sat, 4 Dec 2021 11:46:29 +0000 (+0100) Subject: forgot to refresh queue-5.4/fget-check-that-the-fd-still-exists-after-getting-a-ref... X-Git-Tag: v4.4.294~43 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e37252892839d4e25ca26f61dc568b90c56a7a90;p=thirdparty%2Fkernel%2Fstable-queue.git forgot to refresh queue-5.4/fget-check-that-the-fd-still-exists-after-getting-a-ref-to-it.patch --- diff --git a/queue-5.4/fget-check-that-the-fd-still-exists-after-getting-a-ref-to-it.patch b/queue-5.4/fget-check-that-the-fd-still-exists-after-getting-a-ref-to-it.patch index d3c3b79c1ff..a847c0ce9ee 100644 --- a/queue-5.4/fget-check-that-the-fd-still-exists-after-getting-a-ref-to-it.patch +++ b/queue-5.4/fget-check-that-the-fd-still-exists-after-getting-a-ref-to-it.patch @@ -54,7 +54,7 @@ Signed-off-by: Greg Kroah-Hartman file = NULL; else if (!get_file_rcu_many(file, refs)) goto loop; -+ else if (files_lookup_fd_raw(files, fd) != file) { ++ else if (__fcheck_files(files, fd) != file) { + fput_many(file, refs); + goto loop; + }