public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* 2.6.7-np2
@ 2004-06-28 12:27 Nick Piggin
  2004-06-28 15:34 ` 2.6.7-np2 Norberto Bensa
                   ` (2 more replies)
  0 siblings, 3 replies; 7+ messages in thread
From: Nick Piggin @ 2004-06-28 12:27 UTC (permalink / raw)
  To: linux-kernel

http://www.kerneltrap.org/~npiggin/2.6.7-np2.gz

This is against 2.6.7-mm3. I can do one against -bk if anyone would
like.

It should fix scheduler problems and compile problems in 2.6.7-np1.

It contains my CPU scheduler and memory management stuff. If anyone
is having swapping or interactivity problems, please try it out.

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

* Re: 2.6.7-np2
  2004-06-28 12:27 2.6.7-np2 Nick Piggin
@ 2004-06-28 15:34 ` Norberto Bensa
  2004-06-29  4:29   ` 2.6.7-np2 Nick Piggin
  2004-06-28 18:32 ` 2.6.7-np2 Markus Hästbacka
  2004-06-30 22:59 ` 2.6.7-np2 Frieder Buerzele
  2 siblings, 1 reply; 7+ messages in thread
From: Norberto Bensa @ 2004-06-28 15:34 UTC (permalink / raw)
  To: linux-kernel; +Cc: Nick Piggin

Nick Piggin wrote:
> http://www.kerneltrap.org/~npiggin/2.6.7-np2.gz
>
> This is against 2.6.7-mm3.


Does it fix mm3's NFS breakage?

Thanks,
Norberto

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

* Re: 2.6.7-np2
  2004-06-28 12:27 2.6.7-np2 Nick Piggin
  2004-06-28 15:34 ` 2.6.7-np2 Norberto Bensa
@ 2004-06-28 18:32 ` Markus Hästbacka
  2004-06-29  4:28   ` 2.6.7-np2 Nick Piggin
  2004-06-30 22:59 ` 2.6.7-np2 Frieder Buerzele
  2 siblings, 1 reply; 7+ messages in thread
From: Markus Hästbacka @ 2004-06-28 18:32 UTC (permalink / raw)
  To: Nick Piggin; +Cc: linux-kernel

On Mon, 28 Jun 2004, Nick Piggin wrote:

> http://www.kerneltrap.org/~npiggin/2.6.7-np2.gz
>
> This is against 2.6.7-mm3. I can do one against -bk if anyone would
> like.
>
I would like.

 	Markus

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

* Re: 2.6.7-np2
  2004-06-28 18:32 ` 2.6.7-np2 Markus Hästbacka
@ 2004-06-29  4:28   ` Nick Piggin
  0 siblings, 0 replies; 7+ messages in thread
From: Nick Piggin @ 2004-06-29  4:28 UTC (permalink / raw)
  To: linux-kernel; +Cc: Markus Hästbacka, Martin Schlemmer

Markus Hästbacka wrote:
> On Mon, 28 Jun 2004, Nick Piggin wrote:
> 
>> http://www.kerneltrap.org/~npiggin/2.6.7-np2.gz
>>
>> This is against 2.6.7-mm3. I can do one against -bk if anyone would
>> like.
>>
> I would like.
> 

OK, this one is basically the same -np2, but for -bk11.

http://www.kerneltrap.org/~npiggin/2.6.7-np2.1.gz

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

* Re: 2.6.7-np2
  2004-06-28 15:34 ` 2.6.7-np2 Norberto Bensa
@ 2004-06-29  4:29   ` Nick Piggin
  0 siblings, 0 replies; 7+ messages in thread
From: Nick Piggin @ 2004-06-29  4:29 UTC (permalink / raw)
  To: Norberto Bensa; +Cc: linux-kernel

Norberto Bensa wrote:
> Nick Piggin wrote:
> 
>>http://www.kerneltrap.org/~npiggin/2.6.7-np2.gz
>>
>>This is against 2.6.7-mm3.
> 
> 
> 
> Does it fix mm3's NFS breakage?
> 

No, this is just a few of my own patches.

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

* Re: 2.6.7-np2
  2004-06-28 12:27 2.6.7-np2 Nick Piggin
  2004-06-28 15:34 ` 2.6.7-np2 Norberto Bensa
  2004-06-28 18:32 ` 2.6.7-np2 Markus Hästbacka
@ 2004-06-30 22:59 ` Frieder Buerzele
  2004-07-01  5:53   ` 2.6.7-np2 Nick Piggin
  2 siblings, 1 reply; 7+ messages in thread
From: Frieder Buerzele @ 2004-06-30 22:59 UTC (permalink / raw)
  To: Nick Piggin; +Cc: linux-kernel

must I still renice X to get your patch run without responsive-lose 
during I/O e.g with cdparanoia?
thx

I had to edit fs/hfsplus/inode.c to get it compile properly

--- fs/hfsplus/inode.c.orig     2004-07-01 00:51:52.347198744 +0200
+++ fs/hfsplus/inode.c  2004-07-01 00:42:00.685145048 +0200
@@ -72,7 +72,7 @@
                                res = 0;
                        else for (i = 0; i < tree->pages_per_bnode; i++) {
                                if (PageActiveMapped(node->page[i]) ||
-                                       
PageActiveUnmapped(node->page[i]))) {
+                                       PageActiveUnmapped(node->page[i])) {
                                        res = 0;
                                        break;


Nick Piggin wrote:

> http://www.kerneltrap.org/~npiggin/2.6.7-np2.gz
>
> This is against 2.6.7-mm3. I can do one against -bk if anyone would
> like.
>
> It should fix scheduler problems and compile problems in 2.6.7-np1.
>
> It contains my CPU scheduler and memory management stuff. If anyone
> is having swapping or interactivity problems, please try it out.


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

* Re: 2.6.7-np2
  2004-06-30 22:59 ` 2.6.7-np2 Frieder Buerzele
@ 2004-07-01  5:53   ` Nick Piggin
  0 siblings, 0 replies; 7+ messages in thread
From: Nick Piggin @ 2004-07-01  5:53 UTC (permalink / raw)
  To: Frieder Buerzele; +Cc: linux-kernel

Frieder Buerzele wrote:
> must I still renice X to get your patch run without responsive-lose 
> during I/O e.g with cdparanoia?

It would help if X were reniced, yes. Try it and see though.

> thx
> 
> I had to edit fs/hfsplus/inode.c to get it compile properly
> 

Thanks.

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

end of thread, other threads:[~2004-07-01  5:53 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-06-28 12:27 2.6.7-np2 Nick Piggin
2004-06-28 15:34 ` 2.6.7-np2 Norberto Bensa
2004-06-29  4:29   ` 2.6.7-np2 Nick Piggin
2004-06-28 18:32 ` 2.6.7-np2 Markus Hästbacka
2004-06-29  4:28   ` 2.6.7-np2 Nick Piggin
2004-06-30 22:59 ` 2.6.7-np2 Frieder Buerzele
2004-07-01  5:53   ` 2.6.7-np2 Nick Piggin

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox