diff options
author | Chris Metcalf <cmetcalf@tilera.com> | 2013-07-23 17:18:05 -0400 |
---|---|---|
committer | Chris Metcalf <cmetcalf@tilera.com> | 2013-07-31 11:49:48 -0400 |
commit | 7d937719e3c5c6c9ad00584f6b62230d2ef7f9f1 (patch) | |
tree | 93b965e43300b1f0a0538c924a3a9b43a371a299 /arch/tile/kernel/process.c | |
parent | 8e42e211e4fef2b2026c7f99092542f00dd817f3 (diff) |
tile: various minor cleanups to hardwall subsystem
First, clean up active hardwalls in exit_thread(). This is a better
place than in arch_release_thread_info().
Second, mask out any non-online cpus from the cpumask after
validating any required semantics of the cpu set.
Signed-off-by: Chris Metcalf <cmetcalf@tilera.com>
Diffstat (limited to 'arch/tile/kernel/process.c')
-rw-r--r-- | arch/tile/kernel/process.c | 23 |
1 files changed, 9 insertions, 14 deletions
diff --git a/arch/tile/kernel/process.c b/arch/tile/kernel/process.c index 8ac304484f98..8d6c51d55762 100644 --- a/arch/tile/kernel/process.c +++ b/arch/tile/kernel/process.c | |||
@@ -74,19 +74,6 @@ void arch_release_thread_info(struct thread_info *info) | |||
74 | { | 74 | { |
75 | struct single_step_state *step_state = info->step_state; | 75 | struct single_step_state *step_state = info->step_state; |
76 | 76 | ||
77 | #ifdef CONFIG_HARDWALL | ||
78 | /* | ||
79 | * We free a thread_info from the context of the task that has | ||
80 | * been scheduled next, so the original task is already dead. | ||
81 | * Calling deactivate here just frees up the data structures. | ||
82 | * If the task we're freeing held the last reference to a | ||
83 | * hardwall fd, it would have been released prior to this point | ||
84 | * anyway via exit_files(), and the hardwall_task.info pointers | ||
85 | * would be NULL by now. | ||
86 | */ | ||
87 | hardwall_deactivate_all(info->task); | ||
88 | #endif | ||
89 | |||
90 | if (step_state) { | 77 | if (step_state) { |
91 | 78 | ||
92 | /* | 79 | /* |
@@ -564,7 +551,15 @@ void flush_thread(void) | |||
564 | */ | 551 | */ |
565 | void exit_thread(void) | 552 | void exit_thread(void) |
566 | { | 553 | { |
567 | /* Nothing */ | 554 | #ifdef CONFIG_HARDWALL |
555 | /* | ||
556 | * Remove the task from the list of tasks that are associated | ||
557 | * with any live hardwalls. (If the task that is exiting held | ||
558 | * the last reference to a hardwall fd, it would already have | ||
559 | * been released and deactivated at this point.) | ||
560 | */ | ||
561 | hardwall_deactivate_all(current); | ||
562 | #endif | ||
568 | } | 563 | } |
569 | 564 | ||
570 | void show_regs(struct pt_regs *regs) | 565 | void show_regs(struct pt_regs *regs) |