Linux MIPS Architecture development
 help / color / mirror / Atom feed
From: Ryan Martindale <ryan@qsicorp.com>
To: Ralf Baechle <ralf@oss.sgi.com>
Cc: linux-mips@oss.sgi.com
Subject: Re: Problem with gp
Date: Wed, 31 Jul 2002 17:04:38 -0700	[thread overview]
Message-ID: <3D487B16.C164C22E@qsicorp.com> (raw)
In-Reply-To: 20020731210423.E4892@dea.linux-mips.net

Ralf Baechle wrote:
> 
> On Wed, Jul 31, 2002 at 11:44:03AM -0700, Ryan Martindale wrote:
> 
> > I seem to be having troubles getting the CVS snapshot up and running.
> > I've debugged it, and it seems that the problem stems from the fact that
> > $28 (gp) is modified in the SAVE_SOME macro to point to somewhere on the
> > stack (not sure why this occurs). Anyways, when I get my first system
> > timetick interrupt, the update_process_times function fails to get the a
> > valid task structure pointer and wipes out. Why are we adjusting gp
> > here, since it is explicitly expected to hold only current_thread_info?
> 
> Are you using 2.5 by chance?  2.5.x is currently pretty unstable as I'm
> porting all the major changes in the upstream sources to MIPS.  I recommend
> to stick with 2.4 for now.
> 
>   Ralf

Check this patch for the current CVS, please. It seems to solve some of
my problems. The related problem mentionned above was because I adjusted
the KERNEL_STACK_SIZE temporarily to twice its given size. Maybe a
comment that you shouldn't adjust that size in stackframe.h is
appropriate?

Yes, I am using the latest from the CVS tree (2.5).  Is everybody
developing with 2.4. Also how quickly are the 2.5 changes going to be
merged into the tree (I understand it is progressing already)?

Index: arch/mips/kernel/process.c
===================================================================
RCS file: /cvs/linux/arch/mips/kernel/process.c,v
retrieving revision 1.41
diff -r1.41 process.c
78c78
< 	childksp = (unsigned long)p + KERNEL_STACK_SIZE - 32;
---
> 	childksp = (unsigned long)ti + KERNEL_STACK_SIZE - 32;
100c100
< 		childregs->regs[28] = (unsigned long) p;
---
> 		childregs->regs[28] = (unsigned long) ti;


Ryan

      reply	other threads:[~2002-07-31 23:03 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2002-07-31 18:44 Problem with gp Ryan Martindale
2002-07-31 19:04 ` Ralf Baechle
2002-08-01  0:04   ` Ryan Martindale [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=3D487B16.C164C22E@qsicorp.com \
    --to=ryan@qsicorp.com \
    --cc=linux-mips@oss.sgi.com \
    --cc=ralf@oss.sgi.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox