| To: | linux-mips@linux-mips.org |
|---|---|
| Subject: | [PATCH v99,07/13] MIPS: microMIPS: Add vdso support. |
| From: | "Steven J. Hill" <sjhill@mips.com> |
| Date: | Thu, 6 Dec 2012 23:05:31 -0600 |
| Cc: | Douglas Leung <douglas@mips.com>, ralf@linux-mips.org, "Steven J. Hill" <sjhill@mips.com> |
| In-reply-to: | <1354856737-28678-1-git-send-email-sjhill@mips.com> |
| List-archive: | <http://www.linux-mips.org/archives/linux-mips/> |
| List-help: | <mailto:ecartis@linux-mips.org?Subject=help> |
| List-id: | linux-mips <linux-mips.eddie.linux-mips.org> |
| List-owner: | <mailto:ralf@linux-mips.org> |
| List-post: | <mailto:linux-mips@linux-mips.org> |
| List-software: | Ecartis version 1.0.0 |
| List-subscribe: | <mailto:ecartis@linux-mips.org?subject=subscribe%20linux-mips> |
| List-unsubscribe: | <mailto:ecartis@linux-mips.org?subject=unsubscribe%20linux-mips> |
| References: | <1354856737-28678-1-git-send-email-sjhill@mips.com> |
| Sender: | linux-mips-bounce@linux-mips.org |
From: Douglas Leung <douglas@mips.com>
Support vdso in microMIPS mode.
Signed-off-by: Steven J. Hill <sjhill@mips.com>
---
arch/mips/kernel/signal.c | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/arch/mips/kernel/signal.c b/arch/mips/kernel/signal.c
index b6aa770..3dc23cd 100644
--- a/arch/mips/kernel/signal.c
+++ b/arch/mips/kernel/signal.c
@@ -35,6 +35,7 @@
#include <asm/war.h>
#include <asm/vdso.h>
#include <asm/dsp.h>
+#include <asm/inst.h>
#include "signal-common.h"
@@ -518,7 +519,12 @@ static void handle_signal(unsigned long sig, siginfo_t
*info,
sigset_t *oldset = sigmask_to_save();
int ret;
struct mips_abi *abi = current->thread.abi;
+#ifdef CONFIG_CPU_MICROMIPS
+ void *vdso = (void *)
+ ((unsigned int)current->mm->context.vdso | MIPS_ISA_MODE);
+#else
void *vdso = current->mm->context.vdso;
+#endif
if (regs->regs[0]) {
switch(regs->regs[2]) {
--
1.7.9.5
|
| Previous by Date: | [PATCH v99,05/13] MIPS: microMIPS: Support handling of delay slots., Steven J. Hill |
|---|---|
| Next by Date: | [PATCH v99,06/13] MIPS: microMIPS: Add unaligned access support., Steven J. Hill |
| Previous by Thread: | [PATCH v99,05/13] MIPS: microMIPS: Support handling of delay slots., Steven J. Hill |
| Next by Thread: | [PATCH v99,06/13] MIPS: microMIPS: Add unaligned access support., Steven J. Hill |
| Indexes: | [Date] [Thread] [Top] [All Lists] |