]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
tile: clean up active hardwalls in exit_thread
authorChris Metcalf <cmetcalf@tilera.com>
Tue, 23 Jul 2013 21:18:05 +0000 (17:18 -0400)
committerChris Metcalf <cmetcalf@tilera.com>
Tue, 23 Jul 2013 21:18:05 +0000 (17:18 -0400)
Tearing down the hardwall state in exit_thread() is a better place
than in arch_release_thread_info().

Signed-off-by: Chris Metcalf <cmetcalf@tilera.com>
arch/tile/kernel/hardwall.c
arch/tile/kernel/process.c

index 38ac189d95751a1a7d7a0fe074ad76179037f8a0..23562cbe3e8e8d68d55376100e8300fe55d66534 100644 (file)
@@ -612,7 +612,7 @@ static int hardwall_activate(struct hardwall_info *info)
 
 /*
  * Deactivate a task's hardwall.  Must hold lock for hardwall_type.
- * This method may be called from free_task(), so we don't want to
+ * This method may be called from exit_thread(), so we don't want to
  * rely on too many fields of struct task_struct still being valid.
  * We assume the cpus_allowed, pid, and comm fields are still valid.
  */
index 8ac304484f988a685118d4d4475b48cee1156060..8d6c51d557625db078e3328c8c2d8e31375932cc 100644 (file)
@@ -74,19 +74,6 @@ void arch_release_thread_info(struct thread_info *info)
 {
        struct single_step_state *step_state = info->step_state;
 
-#ifdef CONFIG_HARDWALL
-       /*
-        * We free a thread_info from the context of the task that has
-        * been scheduled next, so the original task is already dead.
-        * Calling deactivate here just frees up the data structures.
-        * If the task we're freeing held the last reference to a
-        * hardwall fd, it would have been released prior to this point
-        * anyway via exit_files(), and the hardwall_task.info pointers
-        * would be NULL by now.
-        */
-       hardwall_deactivate_all(info->task);
-#endif
-
        if (step_state) {
 
                /*
@@ -564,7 +551,15 @@ void flush_thread(void)
  */
 void exit_thread(void)
 {
-       /* Nothing */
+#ifdef CONFIG_HARDWALL
+       /*
+        * Remove the task from the list of tasks that are associated
+        * with any live hardwalls.  (If the task that is exiting held
+        * the last reference to a hardwall fd, it would already have
+        * been released and deactivated at this point.)
+        */
+       hardwall_deactivate_all(current);
+#endif
 }
 
 void show_regs(struct pt_regs *regs)