On Thu Nov 09, 2000 at 01:18:24AM -0700, Eric W. Biederman wrote:
>
> I have recently developed a patch that allows linux to directly boot
> into another linux kernel.
Looks very cool. I'm curious about your decision to use ELF images. This
makes it much less conveinient to use due to the ke
>
> - CONFIG_MK6 is described as "K6/K6-II/K6-III", and CONFIG_MK7 as
> "Athlon/K7". Of these two, only the latter defines
> CONFIG_X86_USE_3DNOW, although K6-II and K6-III do provide 3DNOW
> instructions.
The Athlon has an extended version of 3DNOW, which the kernel uses as of
test11-pre2. T
It seems to be the output of vmstat that isn't matching things. First it
says
it's getting near 10M/s, but if you divide 128M/27 seconds, it's more like
4.7.
So where is the time being wasted? It's not in cpu either.
Now I look at hda7 where vmstat reported 2000-3000 blocks/sec. Again, the
mat
thanks for all those who replied. your help is really appreciated.
basically, in order to compile kernel in RH7, kgcc *MUST* be used instead of
gcc.
to use kgcc edit the Makefile. find the line below and change to:
CC =$(CROSS_COMPILE)kgcc <(changed to kgcc instead of gcc/cc)
once again. th
On Tue, 14 Nov 2000 [EMAIL PROTECTED] wrote:
>Date: Tue, 14 Nov 2000 01:08:51 + (GMT)
>From: [EMAIL PROTECTED]
>To: Linux Kernel Mailing List <[EMAIL PROTECTED]>
>Cc: [EMAIL PROTECTED]
>Content-Type: TEXT/PLAIN; charset=US-ASCII
>Subject: Re: UDMA66/100 errors...
>
>
>Mike Harris wrote..
>
>>
[I wrote]
> What chipset does the Inspiron 7500 use? (Probably Intel something.
I just booted an Inspiron 5000. PIIX4. So in the kernel config, read
the help on PIIX support and make sure to turn on 'use dma by default'.
...And you probably still want to at least try Andre's patch.
Peter
-
On Mon, 13 Nov 2000 23:02:10 -0600,
Peter Samuelson <[EMAIL PROTECTED]> wrote:
>
>[Torsten Duwe]
>> +for (p = module_name; *p; p++)
>> +{
>> + if (isalnum(*p) || *p == '_' || *p == '-')
>> +continue;
>> +
>> + return -EINVAL;
>> +}
>
>I think you just broke at least
[Linda Walsh]
> Under 2217, the xfer speed drops to near 1,000K/s. This is for both
> 'badblocks'
> and a 'dd' if=/dev/hda of=/dev/hdb bs=256k. In both instances, I notice
> a near 90% performance degredation.
Off the top of my head it sounds like you are using the wrong ide i/o
mode. Your ha
[Rasmus Andersen]
> I'm getting oopses on a linux 2.2.17 box when I try to do
> tar cvIf -X /. Reproducably.
Are you excluding /proc? Trying to back up all of /proc is definitely
asking for trouble, although the oops still indicates a kernel bug.
Peter
-
To unsubscribe from this list: send th
[Torsten Duwe]
> + for (p = module_name; *p; p++)
> + {
> + if (isalnum(*p) || *p == '_' || *p == '-')
> + continue;
> +
> + return -EINVAL;
> + }
I think you just broke at least some versions of devfs. I don't
remember if the feature is still around, but I know
Note for future reference: please report configuration and build bugs
to [EMAIL PROTECTED] Speaking for myself, I am much more likely
to notice it there, as the volume is a lot lower than l-k. (:
[Stefan Sassenberg]
> When I set CONFIG_MD_BOOT to 'y' and then set neither
> CONFIG_MD_LINEAR nor
In message <[EMAIL PROTECTED]> you write:
> > 12. Probably Post 2.4
>
> > * module remove race bugs (ipchains modules -- Rusty; won't fix for
> >2.4)
>
> Is this an ipchains bug, or a more general module subsystem bug?
There's a fundamental problem with any module which reduces cou
Did you make clean; make mrproper?
On Mon, 13 Nov 2000, Michael Rothwell wrote:
> GCCLOC=`which gcc`
> rm `echo $GCCLOC`
> ln -s `which kgcc` `echo $GCCLOC`
>
> ... repeat for g++
>
>
> -M
>
>
> Corisen wrote:
> >
> > thanks for the info. i've kgcc installed during RH7 installation. i've
>
Andi Kleen wrote:
>I think using dprobes for collecting information is ok, but when you want
>to do actual actions with it (not only using it as a debugger) IMHO it
>is better to patch and recompile the kernel.
I absolutely agree. The only time I ever used this capability was to modify
a propri
ELECTRONIC NEWS RELEASE
*** using e-mail keeps us informed and protects our natural resources ***
November 13, 2000 - San Diego, California
Qchex.com introduces a new financial convenience service for institutions, businesses
and individuals:
Qchex!
http://www.qchex.com
The unique payment so
On Mon, Nov 13, 2000 at 11:38:23AM +0100, Andi Kleen wrote:
> notifier lists would be sufficient because dprobes does not hook into any
> performance critical paths.
Current dprobes patch adds branches in the the main page fault handler,
device_not_available exception at least. Those are _very_
Hi Linus,
This patch corrects the return codes from apm's init routine
and in particular should allow SMP power off to work when APM
is compiled as a module.
Cheers,
Stephen
--
Stephen Rothwell, Open Source Researcher, Linuxcare, Inc.
+61-2-62628990 tel, +61-2-62628991 fax
[EMAIL PROTECTED], h
GCCLOC=`which gcc`
rm `echo $GCCLOC`
ln -s `which kgcc` `echo $GCCLOC`
... repeat for g++
-M
Corisen wrote:
>
> thanks for the info. i've kgcc installed during RH7 installation. i've
> checked the version to be 2.91.66. i've used the following 2 methods with
> kgcc but it won't even allow me
Chris Evans <[EMAIL PROTECTED]> said:
> On Mon, 13 Nov 2000, Torsten Duwe wrote:
> > > "Francis" == Francis Galiegue <[EMAIL PROTECTED]> writes:
> >
> > >> + if ((*p & 0xdf) >= 'a' && (*p & 0xdf) <= 'z') continue;
> >
> > Francis> Just in case... Some modules have uppercase letters t
thanks for the info. i've kgcc installed during RH7 installation. i've
checked the version to be 2.91.66. i've used the following 2 methods with
kgcc but it won't even allow me to compile:
1. make CC=kgcc zImage
2. change the CC=gcc to CC=kgcc in Makefile
the "make CC=kgcc zImage" process reports
On Mon, Nov 13, 2000 at 12:51:24AM -0500, Jeff Garzik wrote:
> Alas...
>
> --- include/linux/init.h2000/10/30 19:37:38 1.1.1.5
> +++ include/linux/init.h2000/11/13 04:30:02 1.1.1.6
> @@ -73,7 +73,7 @@
> -#define __init __attribute__ ((__section__ (".text.init")))
>
Corisen,
RedHat 7.0's version of gcc, known as gcc 2.96, is incompatible with the
kernel's code. Preprocessor changes cause the problem you encountered. It
also has some defects in how it optimizes code that would cause the kernel
to run incorrectly.
The 7.0 distribution includes an older v
On Sat, Nov 11, 2000 at 10:18:46PM -0500, Alexander Viro wrote:
> Alternative variant: just let schedule() store its return address
> in the task_struct.
Please please. I can't reliably unwind the stack on Alpha.
> OTOH, the value is used only by Alt-SysRq-T, so... Hell knows.
No, it's also us
has anyone running RedHat7(with kernel 2.2.16, gcc 2.96, kgcc 2.91.66)
complied 2.2.17 kernel successfully?
i've downloaded the source and gunzip/untar to /root/linux-2.2.17
1. make menuconfig (ok)
2. make dep (ok)
3. make zImage
===> lots of warning message
===> error: checksum.S:231 badly punc
On Fri, Nov 10, 2000 at 05:33:34PM -0800, H. Peter Anvin wrote:
> AFAIK, I think Linus tried this once, but ran into bugs in gcc.
> We might very well try again in 2.5.
You'll definitely have to use a compiler later than gcc 2.95, since
there were in fact major bugs in this area. I'd be interest
On Sun, Nov 12, 2000 at 10:09:39PM -0500, Jeff Garzik wrote:
> [EMAIL PROTECTED] wrote:
> > 4. Boot Time Failures
>
> > * Various Alpha's don't boot under 2.4.0-test9 (PCI-PCI bridges are
> >not configured correctly Michal Jaegermann; Richard Henderson may
> >have an idea wha
In the current version (and may previous versions) of the tulip driver
in media.c in the function tulip_select_media() with mleaf->type being
2 or 4, we have the following code:
if (p[1] & 0x40) { /* SIA (CSR13-15) setup values are provided. */
csr13val = setup[0];
csr14val = s
Date: Mon, 13 Nov 2000 18:05:24 -0500
From: Tom Leete <[EMAIL PROTECTED]>
Your net/ipv4/tcp.c patch from the NE2000 thread cured them even
before I found the hardware fault. Has that patch gone to the
queue? I recommend it.
The bugs I was "fixing" there were due to problems in wai
In the current version (and may previous versions) of the tulip driver
in media.c in the function tulip_select_media() with mleaf->type being
2 or 4, we have the following code:
if (p[1] & 0x40) { /* SIA (CSR13-15) setup values are provided. */
csr13val = setup[0];
csr14val = s
On Mon, 13 Nov 2000 12:18:33 -0800, David Hinds <[EMAIL PROTECTED]> wrote:
> The effect of "ifconfig eth0 -multicast" (which should be a no-op) is
> that it calls set_rx_mode() with the same set of parameters it was
> called with before. Doing this one or more times may kick the card so
> that i
Mike Harris wrote...
> I'm getting the following error when I try and enable UDMA on my
> new IBM Deskstar UDMA100 drive:
> ...
> DMA modes: mdma0 mdma1 mdma2 udma0 udma1 *udma2 udma3 udma4 udma5
Ok, drive supports UDMA Mode 5 (ATA100)
> 00:07.1 IDE interface: VIA Technologies, Inc. VT82C586 ID
You would think it would be easier to maintain a separate 2.2.x and
2.4.x version of acenic.c at this point :)
Jes Sorensen wrote:
> @@ -2307,14 +2337,10 @@
> u32 idx, flagsize;
>
> /*
> -* ARGH, there is just no pretty way to do this
> +* This only happens with
Mike Harris wrote..
>I'm getting the following error when I try and enable UDMA on my
>new IBM Deskstar UDMA100 drive:
>...
> DMA modes: mdma0 mdma1 mdma2 udma0 udma1 *udma2 udma3 udma4 udma5
Ok, the drive supports UDMA5 (ATA100)
> setting xfermode to 67 (UltraDMA mode3)
>ide0: Speed warnings
I've looked through the scheduling code and searched pretty much
everywhere I could think of and I've found nothing on this, so it's
time to escalate :-).
The measurement of CPU usage and virtual itimers is crude at best.
It's actually possible to set a relatively short virtual itimer (say,
50ms)
On Mon, Nov 13, 2000 at 03:47:27PM -0800, LA Walsh wrote:
> Some further information in response to a private email, I did hdparm -ti
> under both
> 2216 and 2217 -- they are identical -- this may be something weird
> w/extended partitions...
What nonsense. There is nothing special with extended
I've recently run into what look like some kernel bugs in the 2.2.17
kernel (on a sparcstation 2 (sun4c) and a javasation (sun4m)). I've
posted them to the sparclinux mailing list, but I was wondering if there
was somewhere else (e.g., here) that I should send them.
Thanks,
-- Lars
-
To uns
Tobias Ringstrom wrote:
>
> This patch makes tulip/eeprom.c more robust.
>
> /Tobias
>
> --- eeprom.c.orig Mon Jun 19 22:42:39 2000
> +++ eeprom.cTue Nov 14 01:19:19 2000
> @@ -237,6 +237,7 @@
> printk(KERN_INFO "%s: Index #%d - Media %s (#%d) described "
>
> up to the sysadmin to enforce the policy. For the home user it means
> that the distribution providers have to set decent limits,
What is decent today may not be with tommorows' newest softwares
> for enterprises it means that they have to hire a sysadmin.
That is one of the reasons that
There seems to be a bug in the vfat-module. When I mount my SCSI MO drive with a
512 bytes/block disk, everything works fine. If I do the same thing with a
disks with 2kB/block I can mount it and read the directory. Once I try to run a
programm from the disk or try to edit or copy a file in either
As you suggested, I added/improved support for the Davicom chip to the
tulip driver. I'm going to fix the dmfe driver when I have more time.
This patch works-for-me(TM) using a Cnet card, but it would be very
interesting to see what happens with other Davicom based cards. I think it
should work,
Hi Linus
Here is a patch to bring the acenic driver update with the latest
fixes. It fixes the following issues:
- Driver wasn't being initialized when compiled statically into the
kernel.
- set_macaddr() set the address incorrectly on little endian machines.
- netif_stop_queue() was called in
There is a typo for the pci id for the ADMtek AN985 Comet. I have two
cards working with this patch (a 2 card/hub package deal), but I also
have to "ifconfig eth0 promisc" to get the cards working properly.
--- kernel-source-2.2.18-21/drivers/net/tulip.c Mon Nov 13 18:05:51 2000
+++ linux/drivers
This patch makes tulip/eeprom.c more robust.
/Tobias
--- eeprom.c.orig Mon Jun 19 22:42:39 2000
+++ eeprom.cTue Nov 14 01:19:19 2000
@@ -237,6 +237,7 @@
printk(KERN_INFO "%s: Index #%d - Media %s (#%d) described "
"by a %s (%d
There might be a small memory leak in the tulip driver since tp->mtable
allocated in eeprom.c around line 172 is never freed.
/Tobias
-
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
I noticed there was no help section for CONFIG_EISA in Configure.help.
Here is a micro patch. Hope this is not "really superfluous" this time.
Steven
diff -urN linux/Documentation/Configure.help.orig
linux/DocumentationConfigure.help
--- linux/Documentation/Configure.help.orig Sat
On Mon, 13 Nov 2000, Rasmus Andersen wrote:
> Hi.
>
> I'm getting oopses on a linux 2.2.17 box when I try to do
> tar cvIf -X /. Reproducably. This works fine
> for the std. RH 6.2 kernel (2.2.14-5). The resulting file
> is about 20MB.
>
> I would submit the oops, but it is run through klo
On Mon, Nov 13, 2000 at 10:50:05PM +0100, Szabolcs Szakacsits wrote:
> On Mon, Nov 13, 2000 Erik Mouw wrote:
> > Good, so the OOM killer works.
>
> But it doesn't work for this kind of application misbehaviours (or
> user attacks):
>
> main() { while(1) if (fork()) malloc(1); }
Proper process l
Pete Wyckoff wrote:
> i = pci_module_init(&ns558_pci_driver);
> if (i == 0)
> have_pci_devices = 1;
>
> /*
> * Probe for ISA ports.
> */
>
> + i = 0;
you don't want to lose the error code. what you want to do is something
like the attached patch...
-
Some further information in response to a private email, I did hdparm -ti
under both
2216 and 2217 -- they are identical -- this may be something weird
w/extended
partitions...
/dev/hda:
multcount= 0 (off)
I/O support = 0 (default 16-bit)
unmaskirq= 0 (off)
using_dma= 1 (on)
Kernel == 2.2.17 + ReiserFS + IDE patches
I'm getting the following error when I try and enable UDMA on my
new IBM Deskstar UDMA100 drive:
/dev/hdb:
Model=IBM-DTLA-307030, FwRev=TX4OA50C, SerialNo=YKDYKGF1437
Config={ HardSect NotMFM HdSw>15uSec Fixed DTR>10Mbs }
RawCHS=16383/16/63, TrkSize
On Mon, Nov 13, 2000 at 11:58:00PM +0100, Roger Larsson wrote:
> On Sunday 12 November 2000 23:31, Erik Mouw wrote:
> > I can still hang the system with XMMS (1.0.1) using real-time priority.
> > The system doesn't die, but it is completely unresponsive. There is no
> > sound, but after the MP3 fi
I'm working on some timer routines to allow arbitrary numbers of timers
all based off the single real timer provided by "setitimer". However, I
haven't been able to figure out from the documentation what happens to
the countdown timer used by setitimer when the system clock is changed
(by root,
My joystick stopped working at 2.4.0-test10 due to a patch to
drivers/char/joystick/ns558.c that moves pci probing ahead of
isa probing.
The problem is that pci_module_init can return -ENODEV into i,
which is then used to index the ISA portlist. ISA probing assumes
that i is initialized to zero.
Hi,
My lockup problems started increasing in frequency, and it
became obvious that they were independent of the kernel I
booted. The shoe dropped, nic was failing. It's salvage now.
The bizarre shift errors on ftp are gone, so the data I sent
is irrelevant to the kernel.
The soft hangs I was ge
On Mon, 13 Nov 2000 20:23:07 + (GMT),
Chris Evans <[EMAIL PROTECTED]> wrote:
>Either the kernel or modprobe needs to treat the module name with
>_extreme_ distrust, and I see no evidence of that.
Agreed. modprobe was not designed to run suid. Calling modprobe from
request_module has the sa
> The Rubini book is being updated for 2.2 and 2.4, but I dunno when it
> will go to press.
We're working on it - honest!
The book will go out for technical review before too long; I believe the
current target date to have it on the shelves is April. We'd hoped for
sooner, but, given how 2.4 de
On Mon, 13 Nov 2000, Jeff Garzik wrote:
> It's purposefully not on Ted's critical list, the official line is "use
> pcmcia_cs external package" if you need i82365 or tcic instead of yenta
> AFAIK. However... fixing things and being able to support all pcmcia
> and cardbus adapters would be wonde
>
> I just got a Sceptre 6950 (also known as a Dell 5000e), I just installed
> Red Hat 7.0 on it, and got an APM related oops at boot.
>
> I found that this was reported on l-k in late September with a couple
> responses, but no resolution.
>
> Here are a couple detailed bug reports on this sam
On Sunday 12 November 2000 23:31, Erik Mouw wrote:
> On Sun, Nov 12, 2000 at 02:39:09PM -0500, [EMAIL PROTECTED] wrote:
> > * USB: system hang with USB audio driver {CRITICAL} (David
> >Woodhouse, Randy Dunlap, Narayan Desai) (Fixed with usb-uhci;
> >uhci-alt is unknown -- ran
I just got a Sceptre 6950 (also known as a Dell 5000e), I just installed
Red Hat 7.0 on it, and got an APM related oops at boot.
I found that this was reported on l-k in late September with a couple
responses, but no resolution.
Here are a couple detailed bug reports on this same problem, again
David Woodhouse wrote:
>
> On Mon, 13 Nov 2000, David Hinds wrote:
>
> > The i82365 and tcic drivers in the 2.4 tree have not been converted to
> > use the thread stuff; as far as I know, the yenta driver is the only
> > socket driver that works at all in 2.4.
> >
> > On Mon, Nov 13, 2000 at 09:
linux-2.4.0-test11-pre4/drivers/sound/yss225.c uses __initdata
but does not include , so it could not compile. I have
attached below.
Note that I am a bit uncertain about the correctness of
the __initdata prefix here in the first place. Is yss225 a PCI
device? If so, a kerne
On Fri, 10 Nov 2000, Andrey Savochkin wrote:
> On Thu, Nov 09, 2000 at 06:30:32PM +0100, Szabolcs Szakacsits wrote:
> > BTW, I wanted to take a look at the frequently mentioned beancounter patch,
> > here is the current state,
> > http://www.asp-linux.com/en/products/ubpatch.shtml
> > "Sorry
linux-2.4.0-test11-pre{3,4}/drivers/net/irda/toshoboe.c contains
a reference to the undefined symbol toshoboe_change_speed. I guess
this should be a reference to toshoboe_setbaud. Because I am not
positive, I am not sending this message directly to Linus, but I
am cc'ing it to linux-kern
Looking at what the CONFIG_X86_USE_3DNOW config option in 2.40.-test10
enables, I find a couple of strange things. This led me through a
small high-level audit of 3DNOW/MMX stuff.
Hopefully someone will be able to explain or to confirm whether the
points I highlight are indeed bugs. I'd value
linux-2.4.0-test11-pre{3,4}/drivers/net/irda/smc-ircc.c contains
a reference to the undefined symbol smcc_ircc_change_speed. I guess
this should be a reference to ircc_change_speed. Because I am not
positive, I am not sending this message directly to Linus, but I
am cc'ing it to linux-k
On Mon, 13 Nov 2000, David Hinds wrote:
> The i82365 and tcic drivers in the 2.4 tree have not been converted to
> use the thread stuff; as far as I know, the yenta driver is the only
> socket driver that works at all in 2.4.
>
> On Mon, Nov 13, 2000 at 09:52:30PM +, David Woodhouse wrote:
>
James M wrote:
>
>My previously reported Parport/Zip Oops seems to have gone away. I
> suspect the SMP race fixs were the culprit...thank you.
>However my parport is still misdetected as SPP by the IMM driver when
> it is actually set to EPP. This is an Epox/SMP Xeon (400 mhz), EP-GXB-M
>
Another question that's been bugging me -- this is behavior that seems
identical in 2216/2217 and not related to my ealier performance degredation
post.
I run VMware. It runs w/144Mg and writes out a 153M suspend file when I
suspend it to disk. My system has a total of 512M, so the entire
suspe
I skimmed over the archives and didn't find a mention of this. I thought
I'd noticed this when I first installed 2217, but I was too busy to verify
it at the time.
Simple case:
Under 2216, I can do a 'badblocks /dev/hda1 X'. Vmstat shows about
10,000K/s average. This is consistent with 'dd
Neil,
Here is a set of fixes and answers to you questions/points. The new patch
was tested in my own environment again and worked fine.
1/ Why did you change nfsd_busy into an atomic_t? It is only ever
used or updated inside the Big-Kernel-Lock, so it doesn't need
to be atomic.
I think
As usual, I messed up the list addresses. Here's a resend (not Cced to
Alan since he should already have received it).
Cheers,
Trond
Forwarded message --
Hi Alan,
The following patch fixes 3 leaks in the 2.2.18pre21 'lockd'
server:
- The nlm_host h_cou
> Can you try the test11-pre2 patch? It includes a bugfix to
> xircom_tulip from Andrea.
Andrea's fix doesn't actually solve the problem; it merely changes the
set of working configurations to a set that includes Andrea's setup.
I don't know whether the size of the working set gets larger or
sma
On Mon, Nov 13, 2000 Erik Mouw wrote:
> On Mon, Nov 13, 2000 at 05:29:48PM +0530, [EMAIL PROTECTED] wrote:
> > System becomes useless till all of the instance of this programming are
> > killed by vmm.
> Good, so the OOM killer works.
But it doesn't work for this kind of application misbehaviou
As part of the new resource counters I'm adding for our job
accounting feature, I'm trying to gather blocks read and written
on a per task basis (which will get rolled into a per job statistic
outside of the kernel). I added task struct counters which get
incremented in drivers/block/ll_rw_
[Torsten Duwe]
> > "Francis" == Francis Galiegue <[EMAIL PROTECTED]> writes:
>
> >> + if ((*p & 0xdf) >= 'a' && (*p & 0xdf) <= 'z') continue;
>
> Francis> Just in case... Some modules have uppercase letters too :)
>
> That's what the &0xdf is intended for...
It's wrong, then: you'
On Mon, Nov 13, 2000 at 11:00:09AM -0500, Jeff Garzik wrote:
> Also, from what I've seen lately on IRC and lkml, the Single Unix
> Specification ("SuS") is generally held in higher regard than POSIX; and
> when spec questions arise, kernel developers tend to check SuS before
> POSIX (if POSIX is c
On Mon, Nov 13, 2000 at 03:42:34PM +, David Woodhouse wrote:
> It's the socket drivers which _aren't_ in the kernel source which are most
> likely to exhibit this problem. Anything in the kernel tree was probably
> converted by Linus, and hence done right. As there are so few socket drivers
>
The problem:
When writing to /dev/st0, I get
st0: Error with sense data: [valid=0] Info fld=0x0, Deferred
st09:00: sense key Medium Error
Additional sense indicates Track following error
st0: Error with sense data: Info fld=0x0, Current st09:00: sense key
Medium Error
Additional
Hello there.
I keep trying to breath life to an old SPARCstation 10 here, no
luck yet. 2.4.0-test11-pre2 compiles without problems, but it
hangs at booting. Here's what the screen reads:
SILO boot: l240t11p2
PROMLIB: obio_ranges 5
bootmem_init: Scan sp_banks, init_bootmem(spfn[1d6],bpfn[1d6],
> "J" == Jeff Garzik <[EMAIL PROTECTED]> writes:
J> Would it be reasonable to have these needs documented in a
J> central location, with patches attached where possible?
http://kernelbook.sourceforge.net:80/wiki/?LinuxAndPosixCompliance
The lead-in discussion has been snipped and in
On Mon, 13 Nov 2000, Willis L. Sarka wrote:
> I get a hard lockup when trying to play a mp3 with XMMS;
> Sound Blaster Live card. The first second loops, and I lose all
> connectivity to the machine; I can't ping it, can't to a an Alt-Sysq,
> nothing.
Just for reference, I've been use the ALSA d
> "Chris" == Chris Evans <[EMAIL PROTECTED]> writes:
Chris> What's wrong with isalnum() ?
Hm, must admit that I wasn't 100% sure if that's in the kernel lib or an evil
gcc expands it inline to some static array lookup. Now I see that it's
already in the kernel. Do some of you also someti
I get a hard lockup when trying to play a mp3 with XMMS;
Sound Blaster Live card. The first second loops, and I lose all
connectivity to the machine; I can't ping it, can't to a an Alt-Sysq,
nothing.
Details:
running RedHat 7.0
using kernel 2.4.0-test11pre4
emu10k1 compiled as a module
system i
On Sun, Nov 12, 2000 at 02:39:09PM -0500, [EMAIL PROTECTED] wrote:
> Fixed
>
> * Zip/Imm/Parport will reliably hang the system (James M. "Dart",
>fixed)
This isn't fixed, I'm pretty sure. I haven't looked at it yet.
Tim.
*/
PGP signature
Andrew Morton wrote:
>
> George Anzinger wrote:
> >
> > The notion of releasing a spin lock by initializing it seems IMHO, on
> > the face of it, way off. Firstly the protected area is no longer
> > protected which could lead to undefined errors/ crashes and secondly,
> > any future use of spinl
A bug i had with kernel version 2.4.0-test9 is still there, but there are
additional information:
When parport_pc is compiled as module, and not already loaded
"modprobe imm" yields the LOCKUP message (subject).
The iomega-drive is usable after the modprobe and despite of
the lockup.
If parpo
> >8. Fix Exists But Isnt Merged
> > * VGA Console can cause SMP deadlock when doing printk {CRITICAL}
> > (Keith Owens)
>
> Fix (by whom?)
Me :-)
> included in 2.4.0-test11-pre3. Looks good.
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body o
On Mon, Nov 13, 2000 at 04:56:40PM +, Chris Evans wrote:
>
> On Mon, 13 Nov 2000, Torsten Duwe wrote:
>
> Code in a security sensitive area needs to be crystal clear.
>
> What's wrong with isalnum() ?
>
What about this then ?
--- kmod.c.orig Sat Nov 4 20:02:11 2000
+++ kmod.c Mon
Hello,
I want to set my development machine so I have multiple
kernels that I can boot. I don't need different versions
of kernel, but only 2.2.14 compiled with different
options (e.g. with/without kdb).
So I have two kernel images, default and debug. I also
compiled modules for both of these
Hi.
When running 'tar cvIf /' or 'tar cvzf /' (but sometimes not
with 'plain' tar, i.e., without compression) I get an oops after some
time. This is reproducible. The oops below is from a 'tar cvIf' run.
I get this also with 2.2.17pre10 (which was what I was running before
encountering this)
"Jeff Garzik" wrote:
> Theoretically, if you call unregister_netdev from rmmon, it should grab
> rtnl_lock and then complete the operation for you. If that doesn't work
> for you, it sounds like you are not setting up, or cleaning up,
> something correctly.
>
> Basically... it sounds like there
On Mon, Nov 13, 2000 at 05:58:37AM -0800, [EMAIL PROTECTED] wrote:
>
> Red Hat 6.2
> server running 2.2.18pre17 and nfs-utils 0.2
When you have a NFS problem, the best thing you can do is to check if
your nfs-utils is up to date before you report it. BTW, the current
one is 0.2.1.
--
H.J. Lu (
I stumbled across a BUG in the 2.4.0.t10 kernel. It occurs after
some time and after some days of number crunching and disk usage. It is
triggered most frequently by tripwire runs after upgrades, which actually
stress both the disk and the CPU (calculating signatures).
Here is the output
On Thu, Nov 09, 2000 at 12:13:21PM +0100, Erik Mouw wrote:
> On Thu, Nov 09, 2000 at 12:08:32PM +0100, Michele Iacobellis wrote:
> > [Summary]
> > No tcp connection establishment with 2.4
> >
> [snip]
>
> Disable "Explicit congestion notification support" in the networking
> options. It breaks w
On Mon, 13 Nov 2000, Torsten Duwe wrote:
> > "Francis" == Francis Galiegue <[EMAIL PROTECTED]> writes:
>
> >> + if ((*p & 0xdf) >= 'a' && (*p & 0xdf) <= 'z') continue;
>
> Francis> Just in case... Some modules have uppercase letters too :)
>
> That's what the &0xdf is intended for
> "Francis" == Francis Galiegue <[EMAIL PROTECTED]> writes:
>> + if ((*p & 0xdf) >= 'a' && (*p & 0xdf) <= 'z') continue;
Francis> Just in case... Some modules have uppercase letters too :)
That's what the &0xdf is intended for...
Torsten
-
To unsubscribe from this list: sen
On Mon, Nov 13, 2000 at 11:00:09AM -0500, Jeff Garzik wrote:
> Also, from what I've seen lately on IRC and lkml, the Single Unix
> Specification ("SuS") is generally held in higher regard than POSIX; and
> when spec questions arise, kernel developers tend to check SuS before
> POSIX (if POSIX is
Hi.
I'm working on an ARM Linux box, using kernel 2.4.0-test9 and
util-linux-2.10p
I'm trying to mount an image of a ramdisk in order to modify it. I
entered
the following command :
mount -o loop -t ext2 ramdisk_ks /mnt/ramdisk
But this command fails. I get no output messages, loose control ov
On Mon, 13 Nov 2000, Torsten Duwe wrote:
>
> --- linux/kernel/kmod.c.orig Tue Sep 26 01:18:55 2000
> +++ linux/kernel/kmod.c Mon Nov 13 16:57:02 2000
> @@ -168,6 +168,22 @@
> static atomic_t kmod_concurrent = ATOMIC_INIT(0);
> #define MAX_KMOD_CONCURRENT 50 /* Completely arbi
1 - 100 of 155 matches
Mail list logo