Skip to content

Commit 72cd7b4

Browse files
Leonidas Da Silva Barbosaherbertx
authored andcommitted
powerpc: Uncomment and make enable_kernel_vsx() routine available
enable_kernel_vsx() function was commented since anything was using it. However, vmx-crypto driver uses VSX instructions which are only available if VSX is enable. Otherwise it rises an exception oops. This patch uncomment enable_kernel_vsx() routine and makes it available. Signed-off-by: Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
1 parent 1f644a7 commit 72cd7b4

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

arch/powerpc/include/asm/switch_to.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ static inline void save_early_sprs(struct thread_struct *prev) {}
2929

3030
extern void enable_kernel_fp(void);
3131
extern void enable_kernel_altivec(void);
32+
extern void enable_kernel_vsx(void);
3233
extern int emulate_altivec(struct pt_regs *);
3334
extern void __giveup_vsx(struct task_struct *);
3435
extern void giveup_vsx(struct task_struct *);

arch/powerpc/kernel/process.c

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -204,8 +204,6 @@ EXPORT_SYMBOL_GPL(flush_altivec_to_thread);
204204
#endif /* CONFIG_ALTIVEC */
205205

206206
#ifdef CONFIG_VSX
207-
#if 0
208-
/* not currently used, but some crazy RAID module might want to later */
209207
void enable_kernel_vsx(void)
210208
{
211209
WARN_ON(preemptible());
@@ -220,7 +218,6 @@ void enable_kernel_vsx(void)
220218
#endif /* CONFIG_SMP */
221219
}
222220
EXPORT_SYMBOL(enable_kernel_vsx);
223-
#endif
224221

225222
void giveup_vsx(struct task_struct *tsk)
226223
{

0 commit comments

Comments
 (0)