exit: Rename complete_and_exit to kthread_complete_and_exit
authorEric W. Biederman <ebiederm@xmission.com>
Mon, 22 Nov 2021 17:15:19 +0000 (11:15 -0600)
committerEric W. Biederman <ebiederm@xmission.com>
Mon, 13 Dec 2021 18:04:45 +0000 (12:04 -0600)
Update complete_and_exit to call kthread_exit instead of do_exit.

Change the name to reflect this change in functionality.  All of the
users of complete_and_exit are causing the current kthread to exit so
this change makes it clear what is happening.

Move the implementation of kthread_complete_and_exit from
kernel/exit.c to to kernel/kthread.c.  As this function is kthread
specific it makes most sense to live with the kthread functions.

There are no functional change.

Signed-off-by: "Eric W. Biederman" <ebiederm@xmission.com>
15 files changed:
drivers/net/wireless/rsi/rsi_91x_coex.c
drivers/net/wireless/rsi/rsi_91x_main.c
drivers/net/wireless/rsi/rsi_91x_sdio_ops.c
drivers/net/wireless/rsi/rsi_91x_usb_ops.c
drivers/pnp/pnpbios/core.c
drivers/staging/rts5208/rtsx.c
drivers/usb/atm/usbatm.c
drivers/usb/gadget/function/f_mass_storage.c
fs/jffs2/background.c
include/linux/kernel.h
include/linux/kthread.h
kernel/exit.c
kernel/kthread.c
lib/kunit/try-catch.c
tools/objtool/check.c

index a0c5d02..8a3d868 100644 (file)
@@ -63,7 +63,7 @@ static void rsi_coex_scheduler_thread(struct rsi_common *common)
                rsi_coex_sched_tx_pkts(coex_cb);
        } while (atomic_read(&coex_cb->coex_tx_thread.thread_done) == 0);
 
-       complete_and_exit(&coex_cb->coex_tx_thread.completion, 0);
+       kthread_complete_and_exit(&coex_cb->coex_tx_thread.completion, 0);
 }
 
 int rsi_coex_recv_pkt(struct rsi_common *common, u8 *msg)
index f1bf71e..c7f5cec 100644 (file)
@@ -260,7 +260,7 @@ static void rsi_tx_scheduler_thread(struct rsi_common *common)
                if (common->init_done)
                        rsi_core_qos_processor(common);
        } while (atomic_read(&common->tx_thread.thread_done) == 0);
-       complete_and_exit(&common->tx_thread.completion, 0);
+       kthread_complete_and_exit(&common->tx_thread.completion, 0);
 }
 
 #ifdef CONFIG_RSI_COEX
index 8ace187..b2b47a0 100644 (file)
@@ -75,7 +75,7 @@ void rsi_sdio_rx_thread(struct rsi_common *common)
 
        rsi_dbg(INFO_ZONE, "%s: Terminated SDIO RX thread\n", __func__);
        atomic_inc(&sdev->rx_thread.thread_done);
-       complete_and_exit(&sdev->rx_thread.completion, 0);
+       kthread_complete_and_exit(&sdev->rx_thread.completion, 0);
 }
 
 /**
index 4ffcdde..5130b0e 100644 (file)
@@ -56,6 +56,6 @@ void rsi_usb_rx_thread(struct rsi_common *common)
 out:
        rsi_dbg(INFO_ZONE, "%s: Terminated thread\n", __func__);
        skb_queue_purge(&dev->rx_q);
-       complete_and_exit(&dev->rx_thread.completion, 0);
+       kthread_complete_and_exit(&dev->rx_thread.completion, 0);
 }
 
index 669ef47..f7e86ae 100644 (file)
@@ -160,7 +160,7 @@ static int pnp_dock_thread(void *unused)
                         * No dock to manage
                         */
                case PNP_FUNCTION_NOT_SUPPORTED:
-                       complete_and_exit(&unload_sem, 0);
+                       kthread_complete_and_exit(&unload_sem, 0);
                case PNP_SYSTEM_NOT_DOCKED:
                        d = 0;
                        break;
@@ -170,7 +170,7 @@ static int pnp_dock_thread(void *unused)
                default:
                        pnpbios_print_status("pnp_dock_thread", status);
                        printk(KERN_WARNING "PnPBIOS: disabling dock monitoring.\n");
-                       complete_and_exit(&unload_sem, 0);
+                       kthread_complete_and_exit(&unload_sem, 0);
                }
                if (d != docked) {
                        if (pnp_dock_event(d, &now) == 0) {
@@ -183,7 +183,7 @@ static int pnp_dock_thread(void *unused)
                        }
                }
        }
-       complete_and_exit(&unload_sem, 0);
+       kthread_complete_and_exit(&unload_sem, 0);
 }
 
 static int pnpbios_get_resources(struct pnp_dev *dev)
index 91fcf85..5a58dac 100644 (file)
@@ -450,13 +450,13 @@ skip_for_abort:
         * after the down() -- that's necessary for the thread-shutdown
         * case.
         *
-        * complete_and_exit() goes even further than this -- it is safe in
-        * the case that the thread of the caller is going away (not just
-        * the structure) -- this is necessary for the module-remove case.
-        * This is important in preemption kernels, which transfer the flow
-        * of execution immediately upon a complete().
+        * kthread_complete_and_exit() goes even further than this --
+        * it is safe in the case that the thread of the caller is going away
+        * (not just the structure) -- this is necessary for the module-remove
+        * case.  This is important in preemption kernels, which transfer the
+        * flow of execution immediately upon a complete().
         */
-       complete_and_exit(&dev->control_exit, 0);
+       kthread_complete_and_exit(&dev->control_exit, 0);
 }
 
 static int rtsx_polling_thread(void *__dev)
@@ -501,7 +501,7 @@ static int rtsx_polling_thread(void *__dev)
                mutex_unlock(&dev->dev_mutex);
        }
 
-       complete_and_exit(&dev->polling_exit, 0);
+       kthread_complete_and_exit(&dev->polling_exit, 0);
 }
 
 /*
@@ -682,7 +682,7 @@ static int rtsx_scan_thread(void *__dev)
                /* Should we unbind if no devices were detected? */
        }
 
-       complete_and_exit(&dev->scanning_done, 0);
+       kthread_complete_and_exit(&dev->scanning_done, 0);
 }
 
 static void rtsx_init_options(struct rtsx_chip *chip)
index da17be1..e3a49d8 100644 (file)
@@ -969,7 +969,7 @@ static int usbatm_do_heavy_init(void *arg)
        instance->thread = NULL;
        mutex_unlock(&instance->serialize);
 
-       complete_and_exit(&instance->thread_exited, ret);
+       kthread_complete_and_exit(&instance->thread_exited, ret);
 }
 
 static int usbatm_heavy_init(struct usbatm_data *instance)
index 7524396..46dd11d 100644 (file)
@@ -2547,7 +2547,7 @@ static int fsg_main_thread(void *common_)
        up_write(&common->filesem);
 
        /* Let fsg_unbind() know the thread has exited */
-       complete_and_exit(&common->thread_notifier, 0);
+       kthread_complete_and_exit(&common->thread_notifier, 0);
 }
 
 
index 2b4d501..6da92ec 100644 (file)
@@ -161,5 +161,5 @@ static int jffs2_garbage_collect_thread(void *_c)
        spin_lock(&c->erase_completion_lock);
        c->gc_task = NULL;
        spin_unlock(&c->erase_completion_lock);
-       complete_and_exit(&c->gc_thread_exit, 0);
+       kthread_complete_and_exit(&c->gc_thread_exit, 0);
 }
index 77755ac..055eb20 100644 (file)
@@ -187,7 +187,6 @@ static inline void might_fault(void) { }
 #endif
 
 void do_exit(long error_code) __noreturn;
-void complete_and_exit(struct completion *, long) __noreturn;
 
 extern int num_to_str(char *buf, int size,
                      unsigned long long num, unsigned int width);
index 22c43d4..d86a7e3 100644 (file)
@@ -71,6 +71,7 @@ int kthread_park(struct task_struct *k);
 void kthread_unpark(struct task_struct *k);
 void kthread_parkme(void);
 void kthread_exit(long result) __noreturn;
+void kthread_complete_and_exit(struct completion *, long) __noreturn;
 
 int kthreadd(void *unused);
 extern struct task_struct *kthreadd_task;
index 57afac8..6c4b045 100644 (file)
@@ -891,15 +891,6 @@ void __noreturn make_task_dead(int signr)
        do_exit(signr);
 }
 
-void complete_and_exit(struct completion *comp, long code)
-{
-       if (comp)
-               complete(comp);
-
-       do_exit(code);
-}
-EXPORT_SYMBOL(complete_and_exit);
-
 SYSCALL_DEFINE1(exit, int, error_code)
 {
        do_exit((error_code&0xff)<<8);
index 77b7c3f..4388d66 100644 (file)
@@ -283,6 +283,27 @@ void __noreturn kthread_exit(long result)
        do_exit(result);
 }
 
+/**
+ * kthread_complete_and exit - Exit the current kthread.
+ * @comp: Completion to complete
+ * @code: The integer value to return to kthread_stop().
+ *
+ * If present complete @comp and the reuturn code to kthread_stop().
+ *
+ * A kernel thread whose module may be removed after the completion of
+ * @comp can use this function exit safely.
+ *
+ * Does not return.
+ */
+void __noreturn kthread_complete_and_exit(struct completion *comp, long code)
+{
+       if (comp)
+               complete(comp);
+
+       kthread_exit(code);
+}
+EXPORT_SYMBOL(kthread_complete_and_exit);
+
 static int kthread(void *_create)
 {
        static const struct sched_param param = { .sched_priority = 0 };
index 0dd434e..be38a2c 100644 (file)
@@ -17,7 +17,7 @@
 void __noreturn kunit_try_catch_throw(struct kunit_try_catch *try_catch)
 {
        try_catch->try_result = -EFAULT;
-       complete_and_exit(try_catch->try_completion, -EFAULT);
+       kthread_complete_and_exit(try_catch->try_completion, -EFAULT);
 }
 EXPORT_SYMBOL_GPL(kunit_try_catch_throw);
 
@@ -27,7 +27,7 @@ static int kunit_generic_run_threadfn_adapter(void *data)
 
        try_catch->try(try_catch->context);
 
-       complete_and_exit(try_catch->try_completion, 0);
+       kthread_complete_and_exit(try_catch->try_completion, 0);
 }
 
 static unsigned long kunit_test_timeout(void)
index 120e959..282273a 100644 (file)
@@ -171,7 +171,7 @@ static bool __dead_end_function(struct objtool_file *file, struct symbol *func,
                "kthread_exit",
                "make_task_dead",
                "__module_put_and_kthread_exit",
-               "complete_and_exit",
+               "kthread_complete_and_exit",
                "__reiserfs_panic",
                "lbug_with_loc",
                "fortify_panic",