Re: announce: PPSkit patch for Linux 2.4.2 (pre6)

2001-04-09 Thread Ulrich Windl
Hi, Cycle Counters, Linux currently tries to synchronize TSCs for consistent time in SMP systems. One would not believe what combinations of hardware are tried, especially for precision timing. Here's a short answer to my asking- back about a complaint (the kernel is reporting negative time wa

Re: rw_semaphores

2001-04-09 Thread Tachino Nobuhiro
At Mon, 9 Apr 2001 22:43:53 -0700 (PDT), Linus Torvalds wrote: > The ordering is certainly possible, but if it happens, > __down_read_failed() won't actually sleep, because it will notice that the > value is positive and just return immediately. So it will do some > unnecessary work (add itself

Re: ISIcom cards by Multi-tech

2001-04-09 Thread Michael Reinelt
Alan Cox wrote: > > > Do you have sort of a 'patch' from your port? I could take this as a > > guideline for what has to be changed from 2.2 to 2.4. If I compare the > > 2.4 driver to the actual 2.2 one, there are far too much differences for > > me... > > I dontt. Other than comparing the 2.2 a

[PATCH: 2nd try] PS/2 ESDI

2001-04-09 Thread Hal Duston
All, OK, here is the corrected patch as promised. I have placed it in the same location as the previous one in case the mailer mangles it. http://www.sound.net/~hald/projects/ps2esdi/ps2esdi-2.4.3.patch0 Thanks, and not on the list, Hal Duston [EMAIL PROTECTED] Bring ps2esdi driver up to da

Re: skb allocation problems

2001-04-09 Thread Andi Kleen
On Mon, Apr 09, 2001 at 07:03:46PM +0300, [EMAIL PROTECTED] wrote: > I have written a test module which closely mirrors what my code tries to > do(attached below). This is what i get: > > PRE_R: old skb:c371ee40 new skb:c371ee30 I guess oldskb->len is <=0xc, and the slab allocator packs them n

Re: No 100 HZ timer !

2001-04-09 Thread Andi Kleen
On Mon, Apr 09, 2001 at 02:19:28PM -0400, Mark Salisbury wrote: > this is one of linux biggest weaknesses. the fixed interval timer is a > throwback. it should be replaced with a variable interval timer with interrupts > on demand for any system with a cpu sane/modern enough to have an on-chip >

Re: rw_semaphores

2001-04-09 Thread Linus Torvalds
On Tue, 10 Apr 2001, Tachino Nobuhiro wrote: > > I am not familiar with semaphore or x86, so this may not be correct, > but if the following sequence is possible, the writer can call wake_up() > before the reader calls add_wait_queue() and reader may sleep forever. > Is it possible? The order

Re: Sources of entropy - /dev/random problem for network servers

2001-04-09 Thread idalton
On Mon, Apr 09, 2001 at 01:04:47PM +0200, Heusden, Folkert van wrote: > >> However, only 3 drivers in drivers/net actually set > >> SA_SAMPLE_RANDOM when calling request_irq(). I believe > >> all of them should. > > No, because an attacker can potentially control input and make it > > non-random.

Ethernet driver

2001-04-09 Thread umam
Hi everybody, I want to put some filter condition on ethernet driver in Promiscuous mode so as it allow packets to IP stack having Virtual mac address existing in say some Dynamic list.Can anybody help how can I do it. I am using eepro100. - To unsubscribe from this list: send the line "unsubsc

Lost O_NONBLOCK (Bug?)

2001-04-09 Thread Jason Gunthorpe
Hi, I've run into the following weird behavior on my system with 2.4.0. I have the following code: if (fork() == 0) { int Flags,dummy; if ((Flags = fcntl(STDIN_FILENO,F_GETFL,dummy)) < 0) _exit(100); if (fcntl(STDIN_FILENO,F_SETFL,Flags | O_NONBLOCK) < 0) _exit(100)

auth 94b3a694 subscribe linux-kernel \

2001-04-09 Thread tang_jung
__ === - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html P

Re: UDMA(66) drive coming up as UDMA(33)?

2001-04-09 Thread David St.Clair
Well, I'm positive what I have is an 80pin cable. I may try a diffrent one. I guess I could benchmark the drive in windows and see how it compares to linux. (Both are on the same drive). The HPT366 chip is integrated on the BE6 motherboard. The manual says PIO 4 mode should get about 16.6 Mb/s,

Re: [QUESTION] 2.4.x nice level

2001-04-09 Thread george anzinger
SodaPop wrote: > > I too have noticed that nicing processes does not work nearly as > effectively as I'd like it to. I run on an underpowered machine, > and have had to stop running things such as seti because it steals too > much cpu time, even when maximally niced. > > As an example, I can ru

Swap Corruption in 2.4.3 ?

2001-04-09 Thread Richard Russon
Hi all, When I unmount the swapfile I get: VM: Undead swap entry 000bb300 VM: Undead swap entry 00abb300 VM: Undead swap entry 016fb300 I can repeat this fairly reliably. First fill up the conventional memory, and a few 10s of Mb of swap, then put the machine under a bit of a load. It may not

Asus CUR-DLS SMP motherboard

2001-04-09 Thread Simon Garner
Hello, I'm wondering if anyone has used this motherboard and can confirm if it works under 2.4.3 or not. Having been burned by the Via-based CUV4X-D not working under Linux, I'm keen to find out if this ServerWorks-based board works or not, before throwing away my money. Asus CUR-DLS, ATX, Serv

Re: linux/scsi

2001-04-09 Thread Andreas Dilger
You write: > are there samples of linux codes that can talk to SCSI harddisk, scanners > and > cameras in the Linux kernel. Like in windows NT, one does not need to write > driver for his scsi device. Just use some scsi interface libraries to talk > to the scsi device. Is there such examples in

AIC7XXX oddities

2001-04-09 Thread e-double
Greetings, I've been using the new aic7xxx driver, and updating frequently from Justin's site. I'm at v6.1.11 now with kernel 2.4.3 and still experiencing some odd behaviour. For example, I start as such on BUS 0 (an aic-29160): Channel A Target 5 Negotiation Settings User: 160.000MB/s

Re: rw_semaphores

2001-04-09 Thread Tachino Nobuhiro
Hello, At Sun, 8 Apr 2001 20:08:13 -0700 (PDT), Linus Torvalds wrote: > > Can anybody shoot any holes in this? I haven't actually tested it, but > race conditions in locking primitives are slippery things, and I'd much > rather have an algorithm we can _think_ about and prove to be working. And

RE: Increasing the FD_SETSIZE

2001-04-09 Thread David Schwartz
> I am having trouble with increasing the file descriptor size for my > application - it opens several files for each client session (and needs > to keep them open as long as the session is active, which can be upto 3 > hours long). What I see from the application is "open failed in > FileStreamR

Re: UDMA(66) drive coming up as UDMA(33)?

2001-04-09 Thread Nicholas Knight
- Original Message - From: "David St.Clair" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, April 07, 2001 10:36 AM Subject: UDMA(66) drive coming up as UDMA(33)? > I'm trying to get my hard drive to use UDMA/66. I'm thinking the cable > is not being detected. When the HPT3

Re: Version 6.1.11 of the aic7xxx driver availalbe

2001-04-09 Thread Justin T. Gibbs
>So, what about on an alpha system. I've asked a few times what I could do, >but you didn't help nor explain what you meant. >From talking to the maintainer of the QLogic driver, it appears that there is a generic issue with data mapping on the Alpha. The only way to correct this issue will be f

Re: UDMA(66) drive coming up as UDMA(33)?

2001-04-09 Thread Nicholas Knight
- Original Message - From: "Wilfried Weissmann" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Sunday, April 08, 2001 10:44 AM Subject: Re: UDMA(66) drive coming up as UDMA(33)? > "David St.Clair" wrote: > > > > I'm trying to get my hard drive to use UDMA/66. I'm thinking the cable >

Re: Version 6.1.11 of the aic7xxx driver availalbe

2001-04-09 Thread Wakko Warner
> As always, the latest version of this driver is availalbe here: > > http://people.FreeBSD.org/~gibbs/linux/ > > This site now includes installation instructions, feature set, > etc. The page is under construction - comments welcome. > > For the impatient: > > CHANGELOG: > http://people.

Increasing the FD_SETSIZE

2001-04-09 Thread Ram Madduluri
Hi, I am having trouble with increasing the file descriptor size for my application - it opens several files for each client session (and needs to keep them open as long as the session is active, which can be upto 3 hours long). What I see from the application is "open failed in FileStreamReader:

linux/scsi

2001-04-09 Thread Jim M.
are there samples of linux codes that can talk to SCSI harddisk, scanners and cameras in the Linux kernel. Like in windows NT, one does not need to write driver for his scsi device. Just use some scsi interface libraries to talk to the scsi device. Is there such examples in linux?.I need to lea

Re: 2.4.4-pre1 Unresolved symbols "strstr"

2001-04-09 Thread Jeff Chua
got this path from Niels ... Works for me now. ___ > From: Niels Kristian Bech Jensen <[EMAIL PROTECTED]> Try this patch: diff -u --recursive --new-file v2.4.4-pre1/linux/arch/i386/kernel/i386_ksyms.c linux/arch/i386/ker

Re: goodbye

2001-04-09 Thread Rik van Riel
On Mon, 9 Apr 2001, Joseph Carter wrote: > On Tue, Apr 10, 2001 at 01:00:08AM +0300, Matti Aarnio wrote: > > Dave said "remove DUL", I did that. > > > > VGER uses now RBL and RSS, no others. > > Thank you, I don't believe there is anyone on this list who is likely > to object to these

Re: Serial port latency

2001-04-09 Thread Andrea Arcangeli
On Sun, Mar 25, 2001 at 11:10:14PM +, Pavel Machek wrote: > I've seen similar bugs. If you hook something on schedule_tq and forget > to set current->need_resched, this is exactly what you get. keventd fixes tq_scheduler case (tq_scheduler is dead). Andrea - To unsubscribe from this list: se

ide.2.2.19.04092001.patch

2001-04-09 Thread Andre Hedrick
This is up with some updates Short notice development for Promise Ultra100 TX2 sponsored by Penguin Computer and again little/no help from Promise. This is a unique chipset that does setfeatures sensing of the transfer rates and thus it is counter to the standard Promise design. It does still

Re: Compaq proliant ML-350 - IDE & SCSI

2001-04-09 Thread Alexandru Barloiu Nicolae
2.4.4-p1 is the kernel version that i've tried now. no succes with 2.4.3 and below. i've been trying without the CDROM and a normal HDD ata 66. i've made some progress using the normal ide ata 66 driver and removing the osv4 from kernel. root@light:/# hdparm -t -T /dev/hda /dev/hda: Timing buf

[PATCH] Process pinning

2001-04-09 Thread Nick Pollitt
This patch applies cleanly to 2.4.3-ac3. Changes to array.c expose cpus_allowed in proc/pid/stat. PR_GET_RUNON and PR_SET_RUNON were done by Ingo and Dimitris. Added MUSTRUN_PID and RUNANY_PID. Also attached is runon and it's manpage. Nick diff -X /home/npollitt/dontdiff -Nur 243-ac3/l

Re: vmlinuz won't build with cmd64X.C

2001-04-09 Thread Jordan
Sorry, figured it out. Jordan Jordan wrote: > > I went in to my .config and disabled 640 and 640 enhanced in favor of > trying the 64x ide support. I especially liked the fact that from the > code it look to have a /proc table similar the the via driver for my > onboard controller. Then durin

Re: goodbye

2001-04-09 Thread Joseph Carter
On Tue, Apr 10, 2001 at 01:00:08AM +0300, Matti Aarnio wrote: > Dave said "remove DUL", I did that. > > VGER uses now RBL and RSS, no others. Thank you, I don't believe there is anyone on this list who is likely to object to these lists. -- Joseph Carter <[EMAIL PROTECTED]>

Re: aic7xxx and 2.4.3 failures

2001-04-09 Thread J . A . Magallon
On 04.10 Vivek Dasmohapatra wrote: > On Mon, 9 Apr 2001, Alan Cox wrote: > > > > A typical startup with 6.1.9 proceeds like this... (6.1.10 hangs silently > > > after emitting the scsi0 and scsi1 adapter summaries, maybe it is > > > going through the same gyrations silently.) > > > > Try sayi

Re: [Lse-tech] Re: [PATCH for 2.5] preemptible kernel

2001-04-09 Thread Nigel Gamble
On Mon, 9 Apr 2001 [EMAIL PROTECTED] wrote: > As you've observed, with the approach of waiting for all pre-empted tasks > to synchronize, the possibility of a task staying pre-empted for a long > time could affect the latency of an update/synchonize (though its hard for > me to judge how likely th

Re: PROBLEM: make oldconfig can change Alpha system type on 2.2.19

2001-04-09 Thread Andrzej Krzysztofowicz
>From kufel!ankry Tue Apr 10 01:04:13 2001 Return-Path: Received: from kufel.UUCP (uucp@localhost) by green.mif.pg.gda.pl (8.9.3/8.9.3) with UUCP id BAA01672 for green.mif.pg.gda.pl!ankry; Tue, 10 Apr 2001 01:04:13 +0200 Received: (from ankry@localhost) by kufel.dom (8.9.

Re: [OT] Re: goodbye

2001-04-09 Thread David
> > >> So, Mr. Admin, setup your laptop to use SSL to your SMTP and POP >> server and authenticate with a client side certificate on your >> laptop. Welcome to the 21st century. You may, however, need a little >> more infrastructure than you can pull from your favourite distribution >> box. > >

Re: build -->/usr/src/linux

2001-04-09 Thread richard offer
In article <9aqmgo$8f6ol$[EMAIL PROTECTED]> you write: >In article <[EMAIL PROTECTED]>, >Marvin Stodolsky <[EMAIL PROTECTED]> wrote: >>Thanks for responding. But I would still like to understand what the >>functionality is of the build --> /usr/src/linuc. Is it dispensable, >>once the module tr

Re: Sound problem with 2.2.19

2001-04-09 Thread Sean Rima
Originally to: Sean Rima * Sean Rima's head hit the keyboard and wrote: SR> I am sorry if this is old news but I have not seen any mention of it in the SR> list. SR> I keep getting "kernel: Sound error: Couldn't allocate DMA buffer" in my SR> syslog. However sound was working until this morni

Re: No 100 HZ timer !

2001-04-09 Thread Alan Cox
> > Its worth doing even on the ancient x86 boards with the PIT. > > Note that programming the PIT is slw and doing it on every timer > add_timer/del_timer would be a pain. You only have to do it occasionally. When you add a timer newer than the current one (arguably newer by a

Re: aic7xxx and 2.4.3 failures

2001-04-09 Thread Vivek Dasmohapatra
On Mon, 9 Apr 2001, Alan Cox wrote: > > A typical startup with 6.1.9 proceeds like this... (6.1.10 hangs silently > > after emitting the scsi0 and scsi1 adapter summaries, maybe it is > > going through the same gyrations silently.) > > Try saying N to the AIC7xxx driver and Y to AIC7XXX_OLD an

Re: No 100 HZ timer !

2001-04-09 Thread Mikulas Patocka
> > this is one of linux biggest weaknesses. the fixed interval timer is a > > throwback. it should be replaced with a variable interval timer with interrupts > > on demand for any system with a cpu sane/modern enough to have an on-chip > > interrupting decrementer. (i.e just about any modern c

No Subject

2001-04-09 Thread Stephen Burns
Group, Here's my last try. I've edited all of the headers (sched.h, param.h, limits.h) in /usr/include and /usr/src/linux, I've recompiled the shadow-utils and PAM. My limit is still 32. Am I missing something - obvious? I did go ahead and upgrade to glibc-2.2-12 and kernel 2.4.3 (with ed

Re: [OT] Re: goodbye

2001-04-09 Thread Matti Aarnio
On Mon, Apr 09, 2001 at 09:34:04PM +, Henning P. Schmiedehausen wrote: > Michael Peddemors <[EMAIL PROTECTED]> writes: > > >Uh... use their ISP relay service anyway??? > >I take my laptop all over, to lot's of my clients locations, and if I > >could relay through their servers, then I had bet

Re: 2.4.4-pre1 Unresolved symbols "strstr"

2001-04-09 Thread Nick Urbanik
Jeff Chua wrote: > depmod version 2.4.5 > > Compiled 2.4.4-pre1 but running "depmod" generates a lot of these ... > > depmod: *** Unresolved symbols in > /lib/modules/2.4.4-pre1/kernel/drivers/char/ltmodem.o > depmod: strstr > depmod: *** Unresolved symbols in > /lib/modules/2.4.4-pre1/ke

Re: aic7xxx and 2.4.3 failures - fix, it is interrupt routing

2001-04-09 Thread Jim Studt
G*rard Roudier insightfully opined.. > Looks like an IRQ problem to me. > I mean the kernel wants to change IRQ routing and just do the wrong job. Give the man a prize! After failing to work with 2.4.0, 2.4.1, 2.4.3, and 2.4.3-ac3 I enabled X86_UP_IOAPIC to stir up the interrupt code and it wo

Re: goodbye

2001-04-09 Thread Rik van Riel
On Tue, 10 Apr 2001, Matti Aarnio wrote: > Dave said "remove DUL", I did that. > VGER uses now RBL and RSS, no others. Thanks ! To come back to the spamfilter promise I made some time ago, people can now get a CVS tree with spam regular expressions and a script to generate a majo

Re: goodbye

2001-04-09 Thread Matti Aarnio
On Mon, Apr 09, 2001 at 02:50:55AM -0300, Rik van Riel wrote: > On Sun, 8 Apr 2001, David S. Miller wrote: > > Rik van Riel writes: > > > Anyway, since linux-kernel has chosen to not receive email from me > > Funny how this posting went through then... > > > > If it is specifically when you are

Documentation glitch in 2.4

2001-04-09 Thread Bill Davidsen
The Config help for kernel automount indicates that the pointer to user code is in the Documentation/Changes file for autofs. As far as I can tell that isn't the case. Since search engines seem to be better at finding the BSD and 2.2 software, it would be nice if the information was restored with

Re: aic7xxx and 2.4.3 failures

2001-04-09 Thread Gérard Roudier
Looks like an IRQ problem to me. I mean the kernel wants to change IRQ routing and just do the wrong job. Ingo reported me a similar problem a couple of week ago that made failed the sym53c8xx driver. Looks very similar to this one with the kernel PCI code wanting to assign IRQ 11 to almost ever

Re: 2.4.3: still experiencing APIC-related hangs

2001-04-09 Thread Kurt Garloff
On Fri, Mar 30, 2001 at 08:32:39AM -0800, [EMAIL PROTECTED] wrote: > On Fri, Mar 30, 2001 at 02:32:24PM +0200, Frank de Lange wrote: > > Subject says it all: 2.4.3 (unpatchaed) is still causing the dreaded > > APIC-related hangs on SMP BX systems (Abit BP-6, maybe Gigabyte). I still need > > to ap

Re: aic7xxx 6.1.10 and 2.4.4-pre1

2001-04-09 Thread Justin T. Gibbs
>Apr 7 19:56:13 snap kernel: Vendor: SEAGATE Model: ST318275LWRev: > 0001 I seem to recall this being a very buggy firmware version. You should check with Seagate to see if they have something new. If this is the firmware I'm thinking of, the driver should perform correctly if you

Version 6.1.11 of the aic7xxx driver availalbe

2001-04-09 Thread Justin T. Gibbs
As always, the latest version of this driver is availalbe here: http://people.FreeBSD.org/~gibbs/linux/ This site now includes installation instructions, feature set, etc. The page is under construction - comments welcome. For the impatient: CHANGELOG: http://people.FreeBSD.org/~gibbs/lin

Re: aic7xxx and 2.4.3 failures

2001-04-09 Thread Jure Pecar
I can add a "me too" to this thread. I began playing with 2.4 releases (again) at 2.4.2-ac23 and i can't manage to boot it properly, even the 2.4.3-ac2. I have an adaptec 2940U (aic7860 as driver tells me) and both drivers, old and new, dont work properly. Either i get request_module[scsi_hostada

I can't read data from COM1

2001-04-09 Thread Green
Hi all,   I write a sample code(user mode) to test the serial driver. I can open COM1 and write string to COM1. But, when I want to read data from COM1, the program will block at read function. I trace the driver source code.   1. When the program execute write operation, it will call tty_wri

Re: aic7xxx and 2.4.3 failures

2001-04-09 Thread lists
I confirm similar problems (see my message from yesterday). AIC7XXX_OLD also failed for me. I have tried aic 6.1.8 as well as 6.1.10. Both 2.4.0 under redhat 7.0 and 2.4.1 as shipped by redhat wolverine work. As have all earlier versions going back to 2.3.xx and 2.2.x On Mon, Apr 09, 2001 at

Re: No 100 HZ timer !

2001-04-09 Thread Mark Salisbury
On Mon, 09 Apr 2001, Alan Cox wrote: > > this is one of linux biggest weaknesses. the fixed interval timer is a > > throwback. it should be replaced with a variable interval timer with interrupts > > on demand for any system with a cpu sane/modern enough to have an on-chip > > interrupting decre

Re: aic7xxx and 2.4.3 failures

2001-04-09 Thread Jim Studt
> > A typical startup with 6.1.9 proceeds like this... (6.1.10 hangs silently > > after emitting the scsi0 and scsi1 adapter summaries, maybe it is > > going through the same gyrations silently.) > > > Alan Cox directs... > Try saying N to the AIC7xxx driver and Y to AIC7XXX_OLD and see if th

Re: [CHECKER] __init functions called by non-__init

2001-04-09 Thread Pavel Machek
Hi! > 1. The best case: an init function calls a non-init, which in > turn calls an init: > > void __init probe() { a(); } > void a() { b(); } > void __init b() { ... } > in this case, is the missing __init on 'a' only a performance >

Sound problem with 2.2.19

2001-04-09 Thread Sean Rima
Originally to: All I am sorry if this is old news but I have not seen any mention of it in the list. I keep getting "kernel: Sound error: Couldn't allocate DMA buffer" in my syslog. However sound was working until this morning. The machine uptime is below :) The PC is a IBM PS/2 486DX2, with an

Re: ISIcom cards by Multi-tech

2001-04-09 Thread Alan Cox
> > I did a quick port of the old driver over (it wasnt very hard) and people then > > added additional bits of support later. > > > > multitech never sent me many updates > > O well. I thought it went this way > > Do you have sort of a 'patch' from your port? I could take this as a > guide

Re: aic7xxx and 2.4.3 failures

2001-04-09 Thread Alan Cox
> A typical startup with 6.1.9 proceeds like this... (6.1.10 hangs silently > after emitting the scsi0 and scsi1 adapter summaries, maybe it is > going through the same gyrations silently.) > Try saying N to the AIC7xxx driver and Y to AIC7XXX_OLD and see if that works. This is important both

Re: No 100 HZ timer !

2001-04-09 Thread Alan Cox
> this is one of linux biggest weaknesses. the fixed interval timer is a > throwback. it should be replaced with a variable interval timer with interrupts > on demand for any system with a cpu sane/modern enough to have an on-chip > interrupting decrementer. (i.e just about any modern chip) It

messages with ide-scsi

2001-04-09 Thread f5ibh
Hi ! I'm installing a CD burner and I've setup the ide-scsi, while checking the setup, I got the following messages. What does this means, please ? System is : --- Linux debian-f5ibh 2.2.19 #1 lun avr 9 18:33:18 CEST 2001 i586 unknown Gnu C 2.95.2 Gnu make

Re: Processes hanging in D state in 2.4.3 - any findings?

2001-04-09 Thread Alan Cox
> I have seen several messages posted to l-k about people reporting > processes (mozilla most of the time) hanging in the D state in 2.4.3, > but I haven't seen someone posting a possible explanation or solution > to the problem. > Anyone knows where does the problem lie, or a workaround for the

Re: Re: nfs performance at high loads

2001-04-09 Thread Alan Cox
> Thanks for the inputs.. But, if we cannot move back to 2.2.19 > and need to stick with 2.4.0 for our own reasons concerning the > work underway, would it be possible to give us a pointer us to > the list of issues related to this problem in the vm, so that we > may attempt to try and get s

Re: Question on accessing /proc

2001-04-09 Thread Jeff Garzik
Srinivasan Venkatraman wrote: > I am new to this list. I did go through the FAQ before posting this > question. I have a specific requirment - creating,modifying and deleting > data structures inside the kernel values of which will be passed by an > user application. I know we could do this by wr

Re: ISIcom cards by Multi-tech

2001-04-09 Thread Michael Reinelt
Alan Cox wrote: > > > As multitech seems not to provide a driver for 2.4, someone must have > > ported the 2.2 driver to 2.4. I'd like to talk to this person, and help > > merging the 2.2 updates to 2.4. > > I did a quick port of the old driver over (it wasnt very hard) and people then > added a

Question on accessing /proc

2001-04-09 Thread Srinivasan Venkatraman
Hi, I am new to this list. I did go through the FAQ before posting this question. I have a specific requirment - creating,modifying and deleting data structures inside the kernel values of which will be passed by an user application. I know we could do this by writing a system call or by ioctl

Re: goodbye

2001-04-09 Thread Rogier Wolff
Alan Cox wrote: > > I really would like to run "ORBS" on my incoming-mail-server. However > > I find it unacceptable to be rejecting Email from possibly legitimate > > clients. So Adding an "relay is listed on orbs" line would allow me to > > sort this into a low priority "probably spam" mailbox,

aic7xxx and 2.4.3 failures

2001-04-09 Thread Jim Studt
I've got a trio of identical PIII machines all failing with aic7xxx under 2.4.3. I've tried both aic7xxx 6.1.9 and 6.1.10 in addition to the one in 2.4.3 (6.1.5?). These machines work fine under 2.2.18pre21. I'm looking for any ideas or suggestions on how to fix this. (Ok, honestly I'm hoping s

Re: goodbye

2001-04-09 Thread Alan Cox
> The other exception is untestable-netblocks.orbs.org, which blocks > everything it cannot test and is just as bad as DUL. untestable-netblocks is the killer for 20% of the actual spam I get (almost entirely from rr.com) > Anyway, since linux-kernel has chosen to not receive email from me > I w

Re: Unresolved symbol in 2.4.4p1, ia32

2001-04-09 Thread Andrea Arcangeli
On Mon, Apr 09, 2001 at 07:58:23PM +0100, Alan Cox wrote: > > depmod: *** Unresolved symbols in > > /lib/modules/2.4.4-pre1/kernel/drivers/ide/ide-cd.o > > depmod: strstr > > > > depmod: *** Unresolved symbols in > > /lib/modules/2.4.4-pre1/kernel/drivers/parport/parport.o >

[OT] Re: goodbye

2001-04-09 Thread Michael Peddemors
Uh... use their ISP relay service anyway??? I take my laptop all over, to lot's of my clients locations, and if I could relay through their servers, then I had better give them some good advice.. Some places I just pick an available IP and it might not be in the allowed relay list. And this happe

Re: Zero Copy IO

2001-04-09 Thread Alan Cox
> advantageous to enable zero copy IO than copy_from_user() and copy_to_user > () all the data. Other OS such as AIX and OS2 have kernel functions that > can be used to accomplish such a task. Has any ground work been done in > Linux 2.4 to enable "zero copying IO"? kiovecs support this. Note t

Re: PROBLEM: select() on TCP socket sleeps for 1 tick even if data available

2001-04-09 Thread James Antill
"Stephen D. Williams" <[EMAIL PROTECTED]> writes: > An old thread, but important to get these fundamental performance > numbers up there: > > 2.4.2 on an 800mhz PIII Sceptre laptop w/ 512MB ram: > > elapsed time for 10 pingpongs is > 3.81327 > 10/3.81

Re: goodbye

2001-04-09 Thread Alan Cox
> I really would like to run "ORBS" on my incoming-mail-server. However > I find it unacceptable to be rejecting Email from possibly legitimate > clients. So Adding an "relay is listed on orbs" line would allow me to > sort this into a low priority "probably spam" mailbox, just like I'd > do with

Re: [PATCH] PS/2 ESDI

2001-04-09 Thread Hal Duston
All, OK, Helge is of course correct here. I will get a new patch out tonight. Basically, the ending = -1; needs to be preceded by an else. (I think so anyway, as I don't have access to that machine right now.) Hal Duston [EMAIL PROTECTED] On Mon, 9 Apr 2001, Helge Deller wrote: > Hi Hal, >

Re: Unresolved symbol in 2.4.4p1, ia32

2001-04-09 Thread Alan Cox
> depmod: *** Unresolved symbols in > /lib/modules/2.4.4-pre1/kernel/drivers/ide/ide-cd.o > depmod: strstr > > depmod: *** Unresolved symbols in > /lib/modules/2.4.4-pre1/kernel/drivers/parport/parport.o > depmod: strstr That'll be from my patches. Now I am b

Re: ISIcom cards by Multi-tech

2001-04-09 Thread Alan Cox
> As multitech seems not to provide a driver for 2.4, someone must have > ported the 2.2 driver to 2.4. I'd like to talk to this person, and help > merging the 2.2 updates to 2.4. I did a quick port of the old driver over (it wasnt very hard) and people then added additional bits of support later

Re: [RFC] Ext2 Directory Index - File Structure

2001-04-09 Thread Andreas Dilger
Daniel, you write: > For the past several weeks I have been developing a directory index > facility for Ext2, with good results so far. This note describes the > on-disk format of the new index. Finally starting to test your last release, and you make a new one... ;-) > Needless to say, the new

Re: No 100 HZ timer !

2001-04-09 Thread Mark Salisbury
this is one of linux biggest weaknesses. the fixed interval timer is a throwback. it should be replaced with a variable interval timer with interrupts on demand for any system with a cpu sane/modern enough to have an on-chip interrupting decrementer. (i.e just about any modern chip) On Mon, 09

Re: [PATCH] Re: softirq buggy

2001-04-09 Thread Andrea Arcangeli
On Mon, Apr 09, 2001 at 09:48:02PM +0400, [EMAIL PROTECTED] wrote: > Hello! > > > Btw, you don't schedule the ksoftirqd thread if do_softirq() returns > > from the 'if(in_interrupt())' check. > > ksoftirqd will not be switched to before the first schedule > or ret form syscall, when softirqs wil

Re: goodbye

2001-04-09 Thread Stephen E. Clark
[EMAIL PROTECTED] wrote: > > Joseph Carter <[EMAIL PROTECTED]> wrote: > > >Let's see, ORBS takes out the ISP route, DUL takes out the direct one. Is > >it any wonder people are hostile toward those two lists? > > Exactly. I hate spam, but I hate ORBS and DUL even more. If I'm going to get >

Re: goodbye || alternatives

2001-04-09 Thread David
Or you can do as I have and setup port 26 SMTP, thereby routing around nazi ISP created damage. Believe me, the damage that RBL, ORBS, etc can do is incredible. I still use them, but I use them carefully and I provide escape routes for people who are still under a global everybody-is-guilty-

[PATCH] PS/2 ESDI

2001-04-09 Thread Hal Duston
All, Here is a patch I have put together (with much assistance from Jens Axboe) that permits ps2esdi machines to boot again. It is against 2.4.3. In case my mailer mangles it, it is also available at the following URL. http://www.sound.net/~hald/projects/ps2esdi/ps2esdi-2.4.3.patch0 Thank

Re: [PATCH] Re: softirq buggy

2001-04-09 Thread kuznet
Hello! > Btw, you don't schedule the ksoftirqd thread if do_softirq() returns > from the 'if(in_interrupt())' check. ksoftirqd will not be switched to before the first schedule or ret form syscall, when softirqs will be processed in any case. So, wake up in this case would be mistake. > I assu

Re: Processes hanging in D state in 2.4.3 - any findings?

2001-04-09 Thread Andrew Morton
"Eloy A. Paris" wrote: > > Hi guys, > > I have seen several messages posted to l-k about people reporting > processes (mozilla most of the time) hanging in the D state in 2.4.3, > but I haven't seen someone posting a possible explanation or solution > to the problem. It's due to problems in the

vmlinuz won't build with cmd64X.C

2001-04-09 Thread Jordan
I went in to my .config and disabled 640 and 640 enhanced in favor of trying the 64x ide support. I especially liked the fact that from the code it look to have a /proc table similar the the via driver for my onboard controller. Then during compile I can not get the 64x to correctly build itself

Reiser FS doesn't work with 2.4.4-pre1?

2001-04-09 Thread Ola Garstad
After patching from 2.4.3 to 2.4.4-pre1 my reiserfs volumes failed to mount. I checked that reiserfs was included and tried to load the module manualy. This gave this result: lib/modules/2.4.4-pre1/kernel/fs/reiserfs/reiserfs.o: unresolved symbol strstr /lib/modules/2.4.4-pre1/kernel/fs/reiserf

Re: [PATCH] Re: softirq buggy

2001-04-09 Thread Andrea Arcangeli
On Mon, Apr 09, 2001 at 05:26:27PM +0200, Manfred Spraul wrote: > The return path to user space checks for pending softirqs. A delay of And it breaks the loop too if new softirq events become pending again in background. > 1/HZ is only possible if the cpu loops in kernel space without returning

Re: No 100 HZ timer !

2001-04-09 Thread Jeff Dike
[EMAIL PROTECTED] said: > I have a suggestion that might seem unusual at first but it is > important for Linux on S/390. We are facing the problem that we want > to start many (> 1000) Linux images on a big S/390 machine. Every > image has its own 100 HZ timer on every processor the images uses >

Re: 2.4.3, VMWare, 2 VMs

2001-04-09 Thread Wade Hampton
Petr Vandrovec wrote: > > On 9 Apr 01 at 12:03, Wade Hampton wrote: > > > Is anyone having problems with running more than > As I already answered on VMware newsgroups: Thanks. I didn't see the post on the VMware newsgroup > VMware's 2.0.3 vmmon module uses save_flags() + cli() > in poll(

[PATCH 2.4.2] ne.c: Add to bad_clone_list

2001-04-09 Thread Donald Becker
>From: Jan-Benedict Glaw ([EMAIL PROTECTED]) >Date: Mon Apr 09 2001 - 12:07:16 EDT >This allows me to use some (old and broken) AT/LANTIC boards. Please re-test this patch. Boards based on DP83905 AT/LANTIC chip should never need to be added to the bad clone list. The bad clone list should

Re: Unresolved symbol in 2.4.4p1, ia32

2001-04-09 Thread Todd M. Roy
> From:Jonathan Hudson <[EMAIL PROTECTED]> > X-Newsreader: knews 1.0b.1 > x-no-productlinks: yes > X-Newsgroups: fa.linux.kernel > Content-Type: text/plain; charset=iso-8859-1 > Date:Sat, 07 Apr 2001 21:01:56 GMT > Bytes: 235 > Sender: [EMAIL PROTECTED] > Preced

Re: 2.4.3, VMWare, 2 VMs

2001-04-09 Thread Petr Vandrovec
On 9 Apr 01 at 12:03, Wade Hampton wrote: > Is anyone having problems with running more than > 1 VM on 2.4.3. I have crashed my host O/S several > times when I try to start two VMs. Currently, > I don't have an oops or other info to report, but > I did see a post on the vmware list about 2.4.3

Oops in networking with 2.4.3

2001-04-09 Thread Kenneth Stephen
Hi, I've got a dual CPU (Pentium-Pro), Adaptec 7880 SCSI adapter machine with two 100Mbps ethernet cards (Linksys / Tulip), and a 16/4 Token-ring card (IBM Olympic chipset) in it. The kernel configuration is attached in this email. I installed Debian 2.2r2 and upgraded the prereq

[PATCH 2.4.2] ne.c: Add to bad_clone_list

2001-04-09 Thread Jan-Benedict Glaw
Hi! This allows me to use some (old and broken) AT/LANTIC boards. MfG, JBG -- Fehler eingestehen, Größe zeigen: Nehmt die Rechtschreibreform zurück!!! /* Jan-Benedict Glaw <[EMAIL PROTECTED]> -- +49-172-7608481 */ keyID=0x8399E1BB fingerprint=250D 3BCF 7127 0D8C A444 A961 1DBD 5E75 8399 E1BB

2.4.3, VMWare, 2 VMs

2001-04-09 Thread Wade Hampton
Greetings, Is anyone having problems with running more than 1 VM on 2.4.3. I have crashed my host O/S several times when I try to start two VMs. Currently, I don't have an oops or other info to report, but I did see a post on the vmware list about 2.4.3 SMP and VMWARE. Host: dual PIII/800, 256

RE: tulip (was RE: Kernel 2.4.3 fails to compile)

2001-04-09 Thread Manuel A. McLure
Jeff Garzik said: [snip conversation about NETDEV WATCHDOG errors on ADMTek Comet tulip clone card] > > Ok, this should be fixed in the latest patches sent to Alan and Linus. Testing with 2.4.3-ac3 and so far, so good. Thanks! -- Manuel A. McLure - Unify Corp. Technical Support <[EMAIL PROTECTE

  1   2   >