public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: "Petr Vandrovec" <VANDROVE@vc.cvut.cz>
To: Andrea Arcangeli <andrea@suse.de>
Cc: mathijs@knoware.nl, jgarzik@mandrakesoft.com,
	linux-kernel@vger.kernel.org, torvalds@transmeta.com,
	kuznet@ms2.inr.ac.ru, Thorsten Kukuk <kukuk@suse.de>
Subject: Re: [PATCH] fix loop with disabled tasklets
Date: Mon, 12 Nov 2001 15:33:03 MET-1	[thread overview]
Message-ID: <8F913E94424@vcnet.vc.cvut.cz> (raw)

On 12 Nov 01 at 15:20, Andrea Arcangeli wrote:

Hi Andrea,
  does it compile? It looks to me like that you are using ret_from_fork,
ret_from_smp and ret_from_smpfork interchangably in the patch. You renamed
ret_from_smpfork to ret_from_fork, changed extern ret_from_smpfork
to ret_from_smp, and you still call ret_from_smpfork ;-)

  Or do I miss something?
                                                Thanks,
                                                    Petr Vandrovec
                                                    vandrove@vc.cvut.cz
                                                    

> --- 2.4.15pre2aa1/arch/sparc/kernel/entry.S.~1~ Sat Feb 10 02:34:05 2001
> +++ 2.4.15pre2aa1/arch/sparc/kernel/entry.S Mon Nov 12 15:17:32 2001
> @@ -1466,8 +1466,7 @@
>     b   C_LABEL(ret_sys_call)
>      ld [%sp + REGWIN_SZ + PT_I0], %o0
>  
> -#ifdef CONFIG_SMP
> -   .globl  C_LABEL(ret_from_smpfork)
> +   .globl  C_LABEL(ret_from_fork)
>  C_LABEL(ret_from_smpfork):
>     wr  %l0, PSR_ET, %psr
>     WRITE_PAUSE
> @@ -1475,7 +1474,6 @@
>      mov    %g3, %o0
>     b   C_LABEL(ret_sys_call)
>      ld [%sp + REGWIN_SZ + PT_I0], %o0
> -#endif
>  
>     /* Linux native and SunOS system calls enter here... */
>     .align  4
> --- 2.4.15pre2aa1/arch/sparc/kernel/process.c.~1~   Thu Oct 11 10:41:52 2001
> +++ 2.4.15pre2aa1/arch/sparc/kernel/process.c   Mon Nov 12 15:18:21 2001
> @@ -455,11 +455,7 @@
>   *       allocate the task_struct and kernel stack in
>   *       do_fork().
>   */
> -#ifdef CONFIG_SMP
> -extern void ret_from_smpfork(void);
> -#else
> -extern void ret_from_syscall(void);
> -#endif
> +extern void ret_from_smp(void);
>  
>  int copy_thread(int nr, unsigned long clone_flags, unsigned long sp,
>         unsigned long unused,
> @@ -493,13 +489,8 @@
>     copy_regwin(new_stack, (((struct reg_window *) regs) - 1));
>  
>     p->thread.ksp = (unsigned long) new_stack;
> -#ifdef CONFIG_SMP
>     p->thread.kpc = (((unsigned long) ret_from_smpfork) - 0x8);
>     p->thread.kpsr = current->thread.fork_kpsr | PSR_PIL;
> -#else
> -   p->thread.kpc = (((unsigned long) ret_from_syscall) - 0x8);
> -   p->thread.kpsr = current->thread.fork_kpsr;
> -#endif
>     p->thread.kwim = current->thread.fork_kwim;
>  
>     /* This is used for sun4c only */

             reply	other threads:[~2001-11-12 14:33 UTC|newest]

Thread overview: 26+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2001-11-12 15:33 Petr Vandrovec [this message]
2001-11-12 14:48 ` [PATCH] fix loop with disabled tasklets Andrea Arcangeli
  -- strict thread matches above, loose matches on Subject: below --
2001-11-11 15:56 Momchil Velikov
2001-11-12  7:46 ` Mathijs Mohlmann
2001-11-12  8:00   ` David S. Miller
2001-11-12  8:07   ` Momchil Velikov
2001-11-12  9:11     ` Mathijs Mohlmann
2001-11-12  9:41       ` Momchil Velikov
2001-11-12  9:54         ` Mathijs Mohlmann
2001-11-10 12:21 Mathijs Mohlmann
2001-11-10 13:37 ` David S. Miller
2001-11-10 15:03   ` Andrea Arcangeli
2001-11-10 15:29     ` Mathijs Mohlmann
2001-11-10 16:02       ` Alan Cox
2001-11-10 16:37       ` Andrea Arcangeli
2001-11-12  1:11         ` Andrea Arcangeli
2001-11-12  7:42           ` Mathijs Mohlmann
2001-11-12  7:59             ` David S. Miller
2001-11-12 14:03               ` Andrea Arcangeli
2001-11-12 13:57             ` Andrea Arcangeli
2001-11-12  8:03           ` David S. Miller
2001-11-12 14:04             ` Andrea Arcangeli
2001-11-12 14:20               ` Andrea Arcangeli
2001-11-12 17:10                 ` Thorsten Kukuk
2001-11-12 19:03                 ` Mathijs Mohlmann
2001-11-11  2:32     ` Mathijs Mohlmann

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=8F913E94424@vcnet.vc.cvut.cz \
    --to=vandrove@vc.cvut.cz \
    --cc=andrea@suse.de \
    --cc=jgarzik@mandrakesoft.com \
    --cc=kukuk@suse.de \
    --cc=kuznet@ms2.inr.ac.ru \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mathijs@knoware.nl \
    --cc=torvalds@transmeta.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