]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
powerpc/ps3: Add missing set_freezable() for ps3_probe_thread()
authorKevin Hao <haokexin@gmail.com>
Thu, 21 Dec 2023 04:45:10 +0000 (12:45 +0800)
committerMichael Ellerman <mpe@ellerman.id.au>
Thu, 21 Dec 2023 11:10:20 +0000 (22:10 +1100)
The kernel thread function ps3_probe_thread() invokes the try_to_freeze()
in its loop. But all the kernel threads are non-freezable by default.
So if we want to make a kernel thread to be freezable, we have to invoke
set_freezable() explicitly.

Signed-off-by: Kevin Hao <haokexin@gmail.com>
Acked-by: Geoff Levand <geoff@infradead.org>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Link: https://msgid.link/20231221044510.1802429-4-haokexin@gmail.com
arch/powerpc/platforms/ps3/device-init.c

index e87360a0fb40dcefc77e3d61f7fa178d56b53cdf..878bc160246e203cc83a885a1079943764a46457 100644 (file)
@@ -827,6 +827,7 @@ static int ps3_probe_thread(void *data)
        if (res)
                goto fail_free_irq;
 
+       set_freezable();
        /* Loop here processing the requested notification events. */
        do {
                try_to_freeze();