* Re: [ANNOUNCE] 2.4.18-pre8-mjc
2002-02-07 9:17 [ANNOUNCE] 2.4.18-pre8-mjc Michael Cohen
@ 2002-02-07 10:03 ` Tarkan Erimer
2002-02-07 10:14 ` Michael Cohen
2002-02-07 10:28 ` Lionel Bouton
` (3 subsequent siblings)
4 siblings, 1 reply; 8+ messages in thread
From: Tarkan Erimer @ 2002-02-07 10:03 UTC (permalink / raw)
To: linux-kernel
Hi Michael,
Your patch list is very nice. Is there any chance to add XFS patch, also?
If so, it would be wonderful for me and the others , I think, who uses XFS
and want to use these patches, too. Because, if i patch my kernel with XFS,
i can't add other patches, like yours.
thnx
----- Original Message -----
From: Michael Cohen <lkml@ohdarn.net>
To: <linux-kernel@vger.kernel.org>
Sent: Thursday, February 07, 2002 11:17 AM
Subject: [ANNOUNCE] 2.4.18-pre8-mjc
> The latest version of the -mjc branch has been released. It is
> available at:
>
ftp://ftp.kernel.org/pub/linux/kernel/people/mjc/linux-2.4/patch-2.4.18-pre8
-mjc.bz2
>
^ permalink raw reply [flat|nested] 8+ messages in thread* Re: [ANNOUNCE] 2.4.18-pre8-mjc
2002-02-07 10:03 ` Tarkan Erimer
@ 2002-02-07 10:14 ` Michael Cohen
2002-02-11 19:08 ` Bill Davidsen
0 siblings, 1 reply; 8+ messages in thread
From: Michael Cohen @ 2002-02-07 10:14 UTC (permalink / raw)
To: LKML
On 2/7/02 5:03 AM, "Tarkan Erimer" <tarkane@solmaz.com.tr> wrote:
> Your patch list is very nice. Is there any chance to add XFS patch, also?
Shawn Starr has been working on this.
> If so, it would be wonderful for me and the others , I think, who uses XFS
> and want to use these patches, too. Because, if i patch my kernel with XFS,
> i can't add other patches, like yours.
Personally I think XFS ought to stay in fs/xfs already and stop encroaching
on the rest of the kernel. It's also HUGE. But hey, if Shawn wants to do
it, let him do it.
------
Michael Cohen
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [ANNOUNCE] 2.4.18-pre8-mjc
2002-02-07 10:14 ` Michael Cohen
@ 2002-02-11 19:08 ` Bill Davidsen
0 siblings, 0 replies; 8+ messages in thread
From: Bill Davidsen @ 2002-02-11 19:08 UTC (permalink / raw)
To: Michael Cohen; +Cc: LKML
On Thu, 7 Feb 2002, Michael Cohen wrote:
> On 2/7/02 5:03 AM, "Tarkan Erimer" <tarkane@solmaz.com.tr> wrote:
>
> > Your patch list is very nice. Is there any chance to add XFS patch, also?
>
> Shawn Starr has been working on this.
>
> > If so, it would be wonderful for me and the others , I think, who uses XFS
> > and want to use these patches, too. Because, if i patch my kernel with XFS,
> > i can't add other patches, like yours.
>
> Personally I think XFS ought to stay in fs/xfs already and stop encroaching
> on the rest of the kernel. It's also HUGE. But hey, if Shawn wants to do
> it, let him do it.
The size is less an issue than having hooks all over the kernel, where
other features can/will break and be broken.
--
bill davidsen <davidsen@tmr.com>
CTO, TMR Associates, Inc
Doing interesting things with little computers since 1979.
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [ANNOUNCE] 2.4.18-pre8-mjc
2002-02-07 9:17 [ANNOUNCE] 2.4.18-pre8-mjc Michael Cohen
2002-02-07 10:03 ` Tarkan Erimer
@ 2002-02-07 10:28 ` Lionel Bouton
2002-02-07 15:56 ` Thibaut Laurent
` (2 subsequent siblings)
4 siblings, 0 replies; 8+ messages in thread
From: Lionel Bouton @ 2002-02-07 10:28 UTC (permalink / raw)
To: Michael Cohen; +Cc: linux-kernel
On Thu, Feb 07, 2002 at 04:17:54AM -0500, Michael Cohen wrote:
> SiS5513 updates (?)
Lionel Bouton <Lionel.Bouton@inet6.fr>
Which patch did you take in ?
Post 20020110_1 patches add support to old chipsets (pre-ATA66) but are known to
have buggy chipset detection code.
I've just received a new ECS K7S5AL (old one broken) so I'll be able to test the code myself
again (currently memtest86 testing).
Expect debugged code next week.
Full patch history available at:
http://inet6.dyn.dhs.org/sponsoring/sis5513/index.html
LB.
^ permalink raw reply [flat|nested] 8+ messages in thread* Re: [ANNOUNCE] 2.4.18-pre8-mjc
2002-02-07 9:17 [ANNOUNCE] 2.4.18-pre8-mjc Michael Cohen
2002-02-07 10:03 ` Tarkan Erimer
2002-02-07 10:28 ` Lionel Bouton
@ 2002-02-07 15:56 ` Thibaut Laurent
2002-02-07 18:24 ` [ANNOUNCE] 2.4.18-pre8-mjc: compile errors Brian Strand
2002-02-07 18:46 ` [ANNOUNCE] 2.4.18-pre8-mjc Paul P Komkoff Jr
4 siblings, 0 replies; 8+ messages in thread
From: Thibaut Laurent @ 2002-02-07 15:56 UTC (permalink / raw)
To: Michael Cohen; +Cc: linux-kernel
On 07 Feb 2002 04:17:54 -0500
Michael Cohen <lkml@ohdarn.net> wrote:
| Volatile xtime (MV)
The change in include/sched.h seems to miss its counter-part in kernel/timer.c, hence a type mismatch leading to a compilation failure.
--- linux/kernel/timer.c Thu Feb 7 23:44:00 2002
+++ linux/kernel/timer.c~ Thu Feb 7 23:27:47 2002
@@ -34,7 +34,7 @@
long tick = (1000000 + HZ/2) / HZ; /* timer interrupt period */
/* The current time */
-struct timeval xtime __attribute__ ((aligned (16)));
+volatile struct timeval xtime __attribute__ ((aligned (16)));
/* Don't completely fail for HZ > 500. */
int tickadj = 500/HZ ? : 1; /* microsecs */
Regards,
Thibaut
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [ANNOUNCE] 2.4.18-pre8-mjc: compile errors
2002-02-07 9:17 [ANNOUNCE] 2.4.18-pre8-mjc Michael Cohen
` (2 preceding siblings ...)
2002-02-07 15:56 ` Thibaut Laurent
@ 2002-02-07 18:24 ` Brian Strand
2002-02-07 18:46 ` [ANNOUNCE] 2.4.18-pre8-mjc Paul P Komkoff Jr
4 siblings, 0 replies; 8+ messages in thread
From: Brian Strand @ 2002-02-07 18:24 UTC (permalink / raw)
To: Michael Cohen; +Cc: lkml
I got some miscellaneous errors/warnings upon compiling (this is with an
SMP build, .config is available if needed). I don't need these modules
(I was just doing my standard "compile as much as possible" routine), so
I just disabled them and continued on my way.
gcc -D__KERNEL__ -I/home/bstrand/src/linux-2.4.17/include -Wall
-Wstrict-prototypes -Wno-trigraphs -O2
-fomit-frame-pointeri2c-tsunami.c:35: asm/hwrpb.h: No such file or directory
i2c-tsunami.c:36: asm/core_tsunami.h: No such file or directory
gcc -D__KERNEL__ -I/home/bstrand/src/linux-2.4.17/include -Wall
-Wstrict-prototypes -Wno-trigraphs -O2 -fomit-frame-pointergcc
-D__KERNEL__ -I/home/bstrand/src/linux-2.4.17/include -Wall
-Wstrict-prototypes -Wno-trigraphs -O2
-fomit-frame-pointeri2c-tsunami.c: In function `writempd':
i2c-tsunami.c:72: `TSUNAMI_cchip' undeclared (first use in this function)
i2c-tsunami.c:72: (Each undeclared identifier is reported only once
i2c-tsunami.c:72: for each function it appears in.)
i2c-tsunami.c: In function `readmpd':
i2c-tsunami.c:78: `TSUNAMI_cchip' undeclared (first use in this function)
i2c-tsunami.c:79: warning: control reaches end of non-void function
i2c-tsunami.c: In function `i2c_tsunami_init':
i2c-tsunami.c:156: `hwrpb' undeclared (first use in this function)
i2c-tsunami.c:156: `ST_DEC_TSUNAMI' undeclared (first use in this function)
i2c-tsunami.c:160: `TSUNAMI_cchip' undeclared (first use in this function)
gcc -D__KERNEL__ -I/home/bstrand/src/linux-2.4.17/include -Wall
-Wstrict-prototypes -Wno-trigraphs -O2 -fomit-frame-pointerr128_cce.c:
In function `r128_cce_packet':
r128_cce.c:1023: warning: unused variable `size'
r128_cce.c:1021: warning: unused variable `buffer'
r128_cce.c:1019: warning: unused variable `dev_priv'
gcc -D__KERNEL__ -I/home/bstrand/src/linux-2.4.17/include -Wall
-Wstrict-prototypes -Wno-trigraphs -O2 -fomit-frame-pointeri810_dma.c:
In function `i810_free_page':
i810_dma.c:296: warning: passing arg 1 of `wake_up_page_Rsmp_4acd422b'
makes pointer from integer without a cast
Regards,
Brian
^ permalink raw reply [flat|nested] 8+ messages in thread* Re: [ANNOUNCE] 2.4.18-pre8-mjc
2002-02-07 9:17 [ANNOUNCE] 2.4.18-pre8-mjc Michael Cohen
` (3 preceding siblings ...)
2002-02-07 18:24 ` [ANNOUNCE] 2.4.18-pre8-mjc: compile errors Brian Strand
@ 2002-02-07 18:46 ` Paul P Komkoff Jr
4 siblings, 0 replies; 8+ messages in thread
From: Paul P Komkoff Jr @ 2002-02-07 18:46 UTC (permalink / raw)
To: linux-kernel
Replying to Michael Cohen:
> The latest version of the -mjc branch has been released. It is
> available at:
> ftp://ftp.kernel.org/pub/linux/kernel/people/mjc/linux-2.4/patch-2.4.18-pre8-mjc.bz2
Excellent!
I tried to build up some by myself, but you appeared :)))
here is small addon to your patch - some netfilter modules, route_me_harder
fix, and tulip vlan patch
ftp://stingr.net/pub/linux/patch-2.4.18-pre8-mjc-s0.gz
--
Paul P 'Stingray' Komkoff 'Greatest' Jr // (icq)23200764 // (irc)Spacebar
PPKJ1-RIPE // (smtp)i@stingr.net // (http)stingr.net // (pgp)0xA4B4ECA4
^ permalink raw reply [flat|nested] 8+ messages in thread