linux 2.2.19pre5 /proc problem.

2001-01-03 Thread M Sweger

Alan,

I have linux 2.2.19pre5 on a UMSDOS based Dell Optiplex Gx1 using
libc5 v2.0.7. Below is my "lsmod" of all modules loaded.
Note: the  cpuid module when it isn'tloaded and oopsing the kernel is
fixed now. However, I found a new problem in /proc.

A). Problem:   If you "cat /proc/sys/net/ipv4/route/flush" you'll get
 Invalid argument as an error message. This is a zero length file
 (as expected) and I'm not sure what it is supposed to contain.
 I can send my kernel ".config" file if you can't duplicate this one.
 Note: I do have a regular T1 internet connection, even though I have
 the ppp and slip stuff loaded -- these modules aren't being used.



Module  Size  Used by
cpuid676   0  (unused)
usb-storage21496   0  (unused)
usbserial  17288   0  (unused)
usb-uhci   18652   0  (unused)
usbcore46056   0  [usb-storage usbserial usb-uhci]
loop7616   0  (unused)
dummy688   0  (unused)
3c59x  20552   1 
opl3   11208   0 
cs4232  2408   0 
uart401 5968   0  [cs4232]
ad1848 16080   0  [cs4232]
sound  57164   0  [opl3 cs4232 uart401 ad1848]
soundcore   2340   5  [sound]
ppp_deflate40652   0  (unused)
bsd_comp3656   0  (unused)
ppp19948   0  [ppp_deflate bsd_comp]
slip7220   0  (unused)
slhc4328   0  [ppp slip]
parport_pc  7252   0 
parport 7028   0  [parport_pc]


-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
Please read the FAQ at http://www.tux.org/lkml/



linux 2.2.19pre5 /proc problem.

2001-01-03 Thread M Sweger

Alan,

I have linux 2.2.19pre5 on a UMSDOS based Dell Optiplex Gx1 using
libc5 v2.0.7. Below is my "lsmod" of all modules loaded.
Note: the  cpuid module when it isn'tloaded and oopsing the kernel is
fixed now. However, I found a new problem in /proc.

A). Problem:   If you "cat /proc/sys/net/ipv4/route/flush" you'll get
 Invalid argument as an error message. This is a zero length file
 (as expected) and I'm not sure what it is supposed to contain.
 I can send my kernel ".config" file if you can't duplicate this one.
 Note: I do have a regular T1 internet connection, even though I have
 the ppp and slip stuff loaded -- these modules aren't being used.



Module  Size  Used by
cpuid676   0  (unused)
usb-storage21496   0  (unused)
usbserial  17288   0  (unused)
usb-uhci   18652   0  (unused)
usbcore46056   0  [usb-storage usbserial usb-uhci]
loop7616   0  (unused)
dummy688   0  (unused)
3c59x  20552   1 
opl3   11208   0 
cs4232  2408   0 
uart401 5968   0  [cs4232]
ad1848 16080   0  [cs4232]
sound  57164   0  [opl3 cs4232 uart401 ad1848]
soundcore   2340   5  [sound]
ppp_deflate40652   0  (unused)
bsd_comp3656   0  (unused)
ppp19948   0  [ppp_deflate bsd_comp]
slip7220   0  (unused)
slhc4328   0  [ppp slip]
parport_pc  7252   0 
parport 7028   0  [parport_pc]


-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
Please read the FAQ at http://www.tux.org/lkml/



Re: Linux 2.2.19pre5

2001-01-02 Thread Keith Owens

On Wed, 3 Jan 2001 04:15:16 +0100, 
"J . A . Magallon" <[EMAIL PROTECTED]> wrote:
>I have seen that the CCFOUND stuff has flown away. I have read it
>breaks somthing, and the CROSS_COMPILE in alphas and m68k.
>Perhaps this way could be better : ??
>..
>include arch/$(ARCH)/Makefile
>
>AS  :=$(AS)
>LD  :=$(LD)
>CC  :=$(CC)
>CPP :=$(CPP)

Agreed.  Alan, please apply.

Index: 19-pre5.1/Makefile
--- 19-pre5.1/Makefile Wed, 03 Jan 2001 17:44:03 +1100 kaos (linux-2.2/G/b/14_Makefile 
1.3.2.2.1.1.1.5.1.3.6.1.5.1.1.1.1.16.1.16 644)
+++ 19-pre5.1(w)/Makefile Wed, 03 Jan 2001 18:15:57 +1100 kaos 
+(linux-2.2/G/b/14_Makefile 1.3.2.2.1.1.1.5.1.3.6.1.5.1.1.1.1.16.1.16 644)
@@ -219,6 +219,17 @@ DRIVERS := $(DRIVERS) drivers/telephony/
 endif
 
 include arch/$(ARCH)/Makefile
+# arch/$(ARCH)/Makefile is the last thing that is allowed to change CROSS_COMPILE.
+# Revaluate final values for speed.
+AS :=$(AS)
+LD :=$(LD)
+CC :=$(CC)
+CPP:=$(CPP)
+AR :=$(AR)
+NM :=$(NM)
+STRIP  :=$(STRIP)
+OBJCOPY:=$(OBJCOPY)
+OBJDUMP:=$(OBJDUMP)
 
 .S.s:
$(CC) -D__ASSEMBLY__ $(AFLAGS) -traditional -E -o $*.s $<

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
Please read the FAQ at http://www.tux.org/lkml/



Re: Linux 2.2.19pre5

2001-01-02 Thread J . A . Magallon


On 2001.01.03 Alan Cox wrote:
> 2.2.19pre5
> o Fix dumpable stuff  (Wolfgang Walter)
> o PPA driver update   (Tim Waugh)
> o ARM updates (Russell - ptrace.c errored please  (Russell King)
>   resolve)
> o Fix NFS data alignment on ARM   (Russell King)
> o Fix hang on boot with ALi5451 shared irq midi   (Stephen Usher)
> o ESS Maestro 3 driver(Zach 'Fufu'
Brown)
> o Belorussia/Ukraine NLS table (koi8-ru)  (Andy Rysin)
> 

I have seen that the CCFOUND stuff has flown away. I have read it
breaks somthing, and the CROSS_COMPILE in alphas and m68k.
Perhaps this way could be better : ??

..
include arch/$(ARCH)/Makefile

AS  :=$(AS)
LD  :=$(LD)
CC  :=$(CC)
CPP :=$(CPP)

..



-- 
J.A. Magallon $> cd pub
mailto:[EMAIL PROTECTED] $> more beer

Linux werewolf 2.2.19-pre3-aa4 #2 SMP Wed Jan 3 00:10:48 CET 2001 i686

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
Please read the FAQ at http://www.tux.org/lkml/



Linux 2.2.19pre5

2001-01-02 Thread Alan Cox

2.2.19pre5
o   Fix dumpable stuff  (Wolfgang Walter)
o   PPA driver update   (Tim Waugh)
o   ARM updates (Russell - ptrace.c errored please  (Russell King)
resolve)
o   Fix NFS data alignment on ARM   (Russell King)
o   Fix hang on boot with ALi5451 shared irq midi   (Stephen Usher)
o   ESS Maestro 3 driver(Zach 'Fufu' Brown)
o   Belorussia/Ukraine NLS table (koi8-ru)  (Andy Rysin)

2.2.19pre4
o   Fixed duplicate info on the microcode driver(Daniel Rogers)
o   Update watchdog structs for nice user export(Eric Brower)
o   Update Documentation/devices.txt(H Peter Anvin)
o   Tweak sched.h to handle limit in Sparc  (Andrea Arcangeli)
'make check_asm'
o   Move isdn pci definitions into pci.h(Kai Germaschewski)
o   Tidy init data/static vars in the isdn code (Kai Germaschewski)
o   Fix abuse of int for bitops in isdn (Kai Germaschewski)
o   Use named initializers on the AVM B1(Kai Germaschewski)
o   Switch capi message length to unsigned  (Kai Germaschewski)
o   ISDN updates(Kai Germaschewski)
o   Update microcode code to check features right   (Tigran Aivazian)
in 2.2
o   E820 handling fixup (Andrea Arcangeli)
o   Fix ne2k-pci driver build bug   (J.A. Magallon)
o   DC390 driver updates(Kurt Garloff)
o   Handle thinkpad E820 edx overwriting(Marc Joosen)
o   Update the osst driver to 0.8.6.1   (Kurt Garloff, 
 Willem Riede)
o   Init the cmpci if compiled in   (Raúl Núñez de Arenas Coronado)
o   ATP870U SCSI updates to fix disconnect bug  (Wittman Li)
o   Clean up the usbdevfs backport  (Dan Streetman)
o   Fix ATI rage makefiles  (Brad Douglas)

2.2.19pre3
o   Merge ADMtek-comet tulip support(Jim McQuillan)
o   Update microcode driver (Tigran Aivazian)
o   Merge Don Becker's NE2K full duplex support (Juan Lacarta)
o   Optimise kernel compiler detect, kgcc before(Peter Samuelson)
gcc272 also
o   Fix compile combination problems(Arjan van de Ven)
o   Update via-rhine driver to include Don's changes(Urban Widmark)
for VT6102
o   Documentation updates   (Tim Waugh)
o   Add ISDN PCI defines to pci.h   (Kai Germaschewski)
o   Fix smb/fat handling for pre 1980 dates (Igor Zhbanov)
o   SyncLink updates(Paul Fulghum)
o   ICP vortex driver updates   (Andreas Köpf)
o   mdacon clean up (Pavel Rabel)
o   Fix bugs in es1370/es1371/sonicvibes/solo1/ (Thomas Sailer)
dabusb
o   Speed up x86 irq/fault paths by avoiding xchg   (Mikael Pettersson)
locked cycles (from Brian Gerst's 2.4test change)
o   Tighten up K6 check in bug tests(Mikael Pettersson)
o   Backport configure scripts bug fixes(Mikael Pettersson)
o   Fix duplicat help entries   (Riley Williams)
o   Fix small asm bug in constant size uaccess  (David Kutz)
o   Update ymfpci driver to handle legacy audio (Daisuke Nagano)
o   Remove ymfsb driver now no longer needed(Daisuke Nagano)
o   Add Empeg support to usb-serial (Gary Brubaker)
o   Fix e820 handling   (Andrea Arcangeli)
o   Fix lanstreamer SMP locking (George Staikos)
o   Fix S/390 non SMP build (Kurt Roeckx)
o   Fix the PCI syscall on PowerMac (Benjamin Herrenschmidt)
o   Fix IPC_RMID behaviour  (Christoph Rohland)
o   Fix NETCTL_GETFD on sparc64 (Dave Miller)
o   Tidy unneeded restore_flags/save sequence  (Arnaldo Carvalho de Melo)
on the ultrastor
o   Fix resource clean up on error in 89xo (Arnaldo Carvalho de Melo)
driver
o   Update wireless headers (Jean Tourrilhes)
o   Fix non modular emu10k init (Mikael Pettersson)
o   Fix cpuid/msr driver crashes(Andrew Morton)
o   Write core files sparse (Christoph Rohland)
o   Merge the i810 tco (watchdog) timer (me)
| original by Jeff Garzik


2.2.19pre2
o   Drop the page aging for a moment to merge the
Andrea VM
o   Merge Andrea's VM-global patch  (Andrea Arcangeli)

2.2.19pre1
o   Basic page 

Linux 2.2.19pre5

2001-01-02 Thread Alan Cox

2.2.19pre5
o   Fix dumpable stuff  (Wolfgang Walter)
o   PPA driver update   (Tim Waugh)
o   ARM updates (Russell - ptrace.c errored please  (Russell King)
resolve)
o   Fix NFS data alignment on ARM   (Russell King)
o   Fix hang on boot with ALi5451 shared irq midi   (Stephen Usher)
o   ESS Maestro 3 driver(Zach 'Fufu' Brown)
o   Belorussia/Ukraine NLS table (koi8-ru)  (Andy Rysin)

2.2.19pre4
o   Fixed duplicate info on the microcode driver(Daniel Rogers)
o   Update watchdog structs for nice user export(Eric Brower)
o   Update Documentation/devices.txt(H Peter Anvin)
o   Tweak sched.h to handle limit in Sparc  (Andrea Arcangeli)
'make check_asm'
o   Move isdn pci definitions into pci.h(Kai Germaschewski)
o   Tidy init data/static vars in the isdn code (Kai Germaschewski)
o   Fix abuse of int for bitops in isdn (Kai Germaschewski)
o   Use named initializers on the AVM B1(Kai Germaschewski)
o   Switch capi message length to unsigned  (Kai Germaschewski)
o   ISDN updates(Kai Germaschewski)
o   Update microcode code to check features right   (Tigran Aivazian)
in 2.2
o   E820 handling fixup (Andrea Arcangeli)
o   Fix ne2k-pci driver build bug   (J.A. Magallon)
o   DC390 driver updates(Kurt Garloff)
o   Handle thinkpad E820 edx overwriting(Marc Joosen)
o   Update the osst driver to 0.8.6.1   (Kurt Garloff, 
 Willem Riede)
o   Init the cmpci if compiled in   (Raúl Núñez de Arenas Coronado)
o   ATP870U SCSI updates to fix disconnect bug  (Wittman Li)
o   Clean up the usbdevfs backport  (Dan Streetman)
o   Fix ATI rage makefiles  (Brad Douglas)

2.2.19pre3
o   Merge ADMtek-comet tulip support(Jim McQuillan)
o   Update microcode driver (Tigran Aivazian)
o   Merge Don Becker's NE2K full duplex support (Juan Lacarta)
o   Optimise kernel compiler detect, kgcc before(Peter Samuelson)
gcc272 also
o   Fix compile combination problems(Arjan van de Ven)
o   Update via-rhine driver to include Don's changes(Urban Widmark)
for VT6102
o   Documentation updates   (Tim Waugh)
o   Add ISDN PCI defines to pci.h   (Kai Germaschewski)
o   Fix smb/fat handling for pre 1980 dates (Igor Zhbanov)
o   SyncLink updates(Paul Fulghum)
o   ICP vortex driver updates   (Andreas Köpf)
o   mdacon clean up (Pavel Rabel)
o   Fix bugs in es1370/es1371/sonicvibes/solo1/ (Thomas Sailer)
dabusb
o   Speed up x86 irq/fault paths by avoiding xchg   (Mikael Pettersson)
locked cycles (from Brian Gerst's 2.4test change)
o   Tighten up K6 check in bug tests(Mikael Pettersson)
o   Backport configure scripts bug fixes(Mikael Pettersson)
o   Fix duplicat help entries   (Riley Williams)
o   Fix small asm bug in constant size uaccess  (David Kutz)
o   Update ymfpci driver to handle legacy audio (Daisuke Nagano)
o   Remove ymfsb driver now no longer needed(Daisuke Nagano)
o   Add Empeg support to usb-serial (Gary Brubaker)
o   Fix e820 handling   (Andrea Arcangeli)
o   Fix lanstreamer SMP locking (George Staikos)
o   Fix S/390 non SMP build (Kurt Roeckx)
o   Fix the PCI syscall on PowerMac (Benjamin Herrenschmidt)
o   Fix IPC_RMID behaviour  (Christoph Rohland)
o   Fix NETCTL_GETFD on sparc64 (Dave Miller)
o   Tidy unneeded restore_flags/save sequence  (Arnaldo Carvalho de Melo)
on the ultrastor
o   Fix resource clean up on error in 89xo (Arnaldo Carvalho de Melo)
driver
o   Update wireless headers (Jean Tourrilhes)
o   Fix non modular emu10k init (Mikael Pettersson)
o   Fix cpuid/msr driver crashes(Andrew Morton)
o   Write core files sparse (Christoph Rohland)
o   Merge the i810 tco (watchdog) timer (me)
| original by Jeff Garzik


2.2.19pre2
o   Drop the page aging for a moment to merge the
Andrea VM
o   Merge Andrea's VM-global patch  (Andrea Arcangeli)

2.2.19pre1
o   Basic page 

Re: Linux 2.2.19pre5

2001-01-02 Thread J . A . Magallon


On 2001.01.03 Alan Cox wrote:
 2.2.19pre5
 o Fix dumpable stuff  (Wolfgang Walter)
 o PPA driver update   (Tim Waugh)
 o ARM updates (Russell - ptrace.c errored please  (Russell King)
   resolve)
 o Fix NFS data alignment on ARM   (Russell King)
 o Fix hang on boot with ALi5451 shared irq midi   (Stephen Usher)
 o ESS Maestro 3 driver(Zach 'Fufu'
Brown)
 o Belorussia/Ukraine NLS table (koi8-ru)  (Andy Rysin)
 

I have seen that the CCFOUND stuff has flown away. I have read it
breaks somthing, and the CROSS_COMPILE in alphas and m68k.
Perhaps this way could be better : ??

..
include arch/$(ARCH)/Makefile

AS  :=$(AS)
LD  :=$(LD)
CC  :=$(CC)
CPP :=$(CPP)

..



-- 
J.A. Magallon $ cd pub
mailto:[EMAIL PROTECTED] $ more beer

Linux werewolf 2.2.19-pre3-aa4 #2 SMP Wed Jan 3 00:10:48 CET 2001 i686

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
Please read the FAQ at http://www.tux.org/lkml/



Re: Linux 2.2.19pre5

2001-01-02 Thread Keith Owens

On Wed, 3 Jan 2001 04:15:16 +0100, 
"J . A . Magallon" [EMAIL PROTECTED] wrote:
I have seen that the CCFOUND stuff has flown away. I have read it
breaks somthing, and the CROSS_COMPILE in alphas and m68k.
Perhaps this way could be better : ??
..
include arch/$(ARCH)/Makefile

AS  :=$(AS)
LD  :=$(LD)
CC  :=$(CC)
CPP :=$(CPP)

Agreed.  Alan, please apply.

Index: 19-pre5.1/Makefile
--- 19-pre5.1/Makefile Wed, 03 Jan 2001 17:44:03 +1100 kaos (linux-2.2/G/b/14_Makefile 
1.3.2.2.1.1.1.5.1.3.6.1.5.1.1.1.1.16.1.16 644)
+++ 19-pre5.1(w)/Makefile Wed, 03 Jan 2001 18:15:57 +1100 kaos 
+(linux-2.2/G/b/14_Makefile 1.3.2.2.1.1.1.5.1.3.6.1.5.1.1.1.1.16.1.16 644)
@@ -219,6 +219,17 @@ DRIVERS := $(DRIVERS) drivers/telephony/
 endif
 
 include arch/$(ARCH)/Makefile
+# arch/$(ARCH)/Makefile is the last thing that is allowed to change CROSS_COMPILE.
+# Revaluate final values for speed.
+AS :=$(AS)
+LD :=$(LD)
+CC :=$(CC)
+CPP:=$(CPP)
+AR :=$(AR)
+NM :=$(NM)
+STRIP  :=$(STRIP)
+OBJCOPY:=$(OBJCOPY)
+OBJDUMP:=$(OBJDUMP)
 
 .S.s:
$(CC) -D__ASSEMBLY__ $(AFLAGS) -traditional -E -o $*.s $

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
Please read the FAQ at http://www.tux.org/lkml/