linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* 2.6.18-git7 freezes solid on boot
@ 2006-09-27 12:31 Alessandro Suardi
  2006-09-27 19:46 ` Andrew Morton
  0 siblings, 1 reply; 3+ messages in thread
From: Alessandro Suardi @ 2006-09-27 12:31 UTC (permalink / raw)
  To: Linux Kernel

Dell D610 running FC5, works fine with -git5, locks up
 in less than a second after selecting the GRUB entry
 for -git7, with NumLock on and nothing else working,
 SysRq included, except for the power switch (no need
 to keep it down for 10 secs though - it powers off
 right away).

Since bzdiffing patch-2.6.18-git5 and -git7 shows there
 are framebuffer changes, I'm wondering whether anyone
 had already stumbled into similar issues.

Video card is an Intel i915GM.

Thanks in advance, ciao,

--alessandro

"Well a man has two reasons for things that he does
  the first one is pride and the second one is love
  all understandings must come by this way"

     (Husker Du, 'She Floated Away')

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: 2.6.18-git7 freezes solid on boot
  2006-09-27 12:31 2.6.18-git7 freezes solid on boot Alessandro Suardi
@ 2006-09-27 19:46 ` Andrew Morton
  2006-09-28  9:40   ` Alessandro Suardi
  0 siblings, 1 reply; 3+ messages in thread
From: Andrew Morton @ 2006-09-27 19:46 UTC (permalink / raw)
  To: Alessandro Suardi; +Cc: Linux Kernel

On Wed, 27 Sep 2006 12:31:52 +0000
"Alessandro Suardi" <alessandro.suardi@gmail.com> wrote:

> Dell D610 running FC5, works fine with -git5, locks up
>  in less than a second after selecting the GRUB entry
>  for -git7, with NumLock on and nothing else working,
>  SysRq included, except for the power switch (no need
>  to keep it down for 10 secs though - it powers off
>  right away).
> 
> Since bzdiffing patch-2.6.18-git5 and -git7 shows there
>  are framebuffer changes, I'm wondering whether anyone
>  had already stumbled into similar issues.
> 
> Video card is an Intel i915GM.
> 

You probably want this..

From: Andi Kleen <ak@suse.de>

i386: Use early clobbers for semaphores now

The new code does clobber the result early, so make sure to tell
gcc to not put it into the same register as a input argument

Signed-off-by: Andi Kleen <ak@suse.de>

Index: linux/include/asm-i386/semaphore.h
===================================================================
--- linux.orig/include/asm-i386/semaphore.h
+++ linux/include/asm-i386/semaphore.h
@@ -126,7 +126,7 @@ static inline int down_interruptible(str
 		"lea %1,%%eax\n\t"
 		"call __down_failed_interruptible\n"
 		"2:"
-		:"=a" (result), "+m" (sem->count)
+		:"=&a" (result), "+m" (sem->count)
 		:
 		:"memory");
 	return result;
@@ -148,7 +148,7 @@ static inline int down_trylock(struct se
 		"lea %1,%%eax\n\t"
 		"call __down_failed_trylock\n\t"
 		"2:\n"
-		:"=a" (result), "+m" (sem->count)
+		:"=&a" (result), "+m" (sem->count)
 		:
 		:"memory");
 	return result;
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: 2.6.18-git7 freezes solid on boot
  2006-09-27 19:46 ` Andrew Morton
@ 2006-09-28  9:40   ` Alessandro Suardi
  0 siblings, 0 replies; 3+ messages in thread
From: Alessandro Suardi @ 2006-09-28  9:40 UTC (permalink / raw)
  To: Andrew Morton; +Cc: Linux Kernel

On 9/27/06, Andrew Morton <akpm@osdl.org> wrote:
> On Wed, 27 Sep 2006 12:31:52 +0000
> "Alessandro Suardi" <alessandro.suardi@gmail.com> wrote:
>
> > Dell D610 running FC5, works fine with -git5, locks up
> >  in less than a second after selecting the GRUB entry
> >  for -git7, with NumLock on and nothing else working,
> >  SysRq included, except for the power switch (no need
> >  to keep it down for 10 secs though - it powers off
> >  right away).
> >
> > Since bzdiffing patch-2.6.18-git5 and -git7 shows there
> >  are framebuffer changes, I'm wondering whether anyone
> >  had already stumbled into similar issues.
> >
> > Video card is an Intel i915GM.
> >
>
> You probably want this..
>
> From: Andi Kleen <ak@suse.de>
>
> i386: Use early clobbers for semaphores now
>
> The new code does clobber the result early, so make sure to tell
> gcc to not put it into the same register as a input argument
>
> Signed-off-by: Andi Kleen <ak@suse.de>
>
> Index: linux/include/asm-i386/semaphore.h
> ===================================================================
> --- linux.orig/include/asm-i386/semaphore.h
> +++ linux/include/asm-i386/semaphore.h
> @@ -126,7 +126,7 @@ static inline int down_interruptible(str
>                 "lea %1,%%eax\n\t"
>                 "call __down_failed_interruptible\n"
>                 "2:"
> -               :"=a" (result), "+m" (sem->count)
> +               :"=&a" (result), "+m" (sem->count)
>                 :
>                 :"memory");
>         return result;
> @@ -148,7 +148,7 @@ static inline int down_trylock(struct se
>                 "lea %1,%%eax\n\t"
>                 "call __down_failed_trylock\n\t"
>                 "2:\n"
> -               :"=a" (result), "+m" (sem->count)
> +               :"=&a" (result), "+m" (sem->count)
>                 :
>                 :"memory");
>         return result;
> -

Indeed, this brought -git7 back to life for my laptop.

Thanks Andrew ! (now going to build -git9...)

--alessandro

"Well a man has two reasons for things that he does
  the first one is pride and the second one is love
  all understandings must come by this way"

     (Husker Du, 'She Floated Away')

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2006-09-28  9:40 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-09-27 12:31 2.6.18-git7 freezes solid on boot Alessandro Suardi
2006-09-27 19:46 ` Andrew Morton
2006-09-28  9:40   ` Alessandro Suardi

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).