Re: Forwarding broadcast traffic

2001-03-03 Thread Eric Lammerts
sending part. You could adapt a DHCP relay program to do this stuff instead of writing it from scratch. Eric -- Eric Lammerts <[EMAIL PROTECTED]> | "An NT server can be run by http://www.lammerts.org | an idiot, and usually is." - To unsubscribe from this list: send the

Re: 2.2.18 and Maxtor 96147H6 (61 GB)

2001-01-04 Thread Eric Lammerts
:-/) After clipping the drive with ibmsetmax (http://www.uwsg.indiana.edu/hypermail/linux/kernel/0012.1/0249.html) and removing the jumper, unclipping worked fine (kernel is 2.2.18+ide). Andre: can you add unclipping support to 2.4 too? Eric -- Eric Lammerts <[EMAIL PROTECTED]> | "It

Re: `rmdir .` doesn't work in 2.4

2001-01-09 Thread Eric Lammerts
On Tue, 9 Jan 2001, Stefan Traby wrote: > "rmdir `pwd`" is required to fail (at least under csh, bash, ksh) if the > path component contains a white space and thereof it can't be a valid > replacement for Andreas "rmdir ." which was what Al initially suggested. > > Yes, I'm very pickey about that

Re: Off-Topic: how do I trace a PID over double-forks?

2001-01-20 Thread Eric Lammerts
ocess exits, the read end of the pipe gets EOF. If the daemon closes all filehandles, you're out of luck. Eric -- Eric Lammerts <[EMAIL PROTECTED]> | The best way to accelerate a computer http://www.lammerts.org | running Windows is at 9.8 m/s^2. - To unsubscribe from this li

[PATCH] /lib/modules/`uname -r`/build is not created

2000-11-30 Thread Eric Lammerts
Since 2.2.18pre20, the symlink /lib/modules/`uname -r`/build is not created because of a non-escaped $ in Makefile. Patch: --- linux/Makefile.orig Fri Dec 1 01:39:24 2000 +++ linux/Makefile Fri Dec 1 01:39:32 2000 @@ -335,7 +335,7 @@ MODLIB=$(INSTALL_MOD_PATH)/lib/modules/$(KERNE

Re: bind() allowed to non-local addresses

2000-10-20 Thread Eric Lammerts
On Fri, 20 Oct 2000, Matt Peterson wrote: > Are you also suggesting that every other program that expects bind() to > fail with EADDRNOTAVAIL are broken too? Just for fun, I greped all > sources of software shipped in Caldera's distributions for instances of > where a check is made for EADDRNOTA

Re: Majordomo Problems?

2000-10-05 Thread Eric Lammerts
On Thu, 5 Oct 2000, Matti Aarnio wrote: > The list has been experiencing loop via somebody. > The likely suspect is now deleted from the list, and > it remains to be seen if that helped. from a looping message: > X-Mailing-List: [EMAIL PROTECTED] > X

[PATCH] max_loop module parameter for 2.2.x loop.c

2000-10-16 Thread Eric Lammerts
This patch add the module parameter 'max_loop' to loop.c (like there is in 2.4). It's against 2.2.18pre16. Eric - 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: [PATCH] max_loop module parameter for 2.2.x loop.c

2000-10-16 Thread Eric Lammerts
que IVs per data block. * Reed H. Petty, [EMAIL PROTECTED] * + * module parameter for max. number of loop devices - Eric Lammerts, Oct 16, 2000 + * * Still To Fix: * - Advisory locking is ignored here. * - Should use an own CAP_* category instead of CAP_SYS_ADMIN @@ -42,6 +4

Re: [2.2.18] outgoing connections getting stuck in SYN_SENT

2001-01-24 Thread Eric Lammerts
nnection. > > I'm looking at finding fix for that. Tell the kernel to use a different range for automatically assigned ports, that doesn't conflict with your forwarded ports. For example: echo "49152 5" >/proc/sys/net/ipv4/ip_local_port_range Eric -- Eric

Re: vfat <-> vfat copying of ~700MB file, so slow!

2001-01-24 Thread Eric Lammerts
On Wed, 24 Jan 2001, Brad Felmey wrote: > > I/O support = 0 (default 16-bit) > > hdparm -c1 /dev/hda, or are you running in 16-bit mode on purpose? The -c option is only relevant for PIO modes. In this case DMA was on, so it doesn't make any difference. Eric -- Eric

Re: Booting from USB with initrd

2005-04-15 Thread Eric Lammerts
gabriel wrote: Hi Im trying to boot an encrypted file system using an initrd on a USB. I use syslinux for the actual boot process as I couldnt get Grub to boot of it for some reason. This is the .cfg append initrd=/initrd.gz root=/dev/ram0 rootfstype=minix init=/linuxrc I don't think syslinux di

Re: Slowdown with randomize_va_space in 2.6.12.2

2005-07-29 Thread Eric Lammerts
On Thu, 7 Jul 2005, Arjan van de Ven wrote: > On Wed, 2005-07-06 at 18:12 -0700, Andrew Morton wrote: > > Dave Jones <[EMAIL PROTECTED]> wrote: > > > On Transmeta CPUs that probably triggers a retranslation of > > > x86->native bytecode, if it thinks it hasn't seen code at that > > > address befor

[PATCH] Fix SAA7134 transport stream errors

2005-02-01 Thread Eric Lammerts
Hi, I had a lot of problems with the transport stream input on the SAA7134. Even the slighest bit of other system activity caused data corruption. This patch corrects the switching of the two DMA buffers. Without the patch, the driver updates the buffer that is just about to be used by the chip.

[PATCH] cramfs: small stat(2) fix

2005-03-01 Thread Eric Lammerts
Hi, When I stat(2) a device node on a cramfs, the st_blocks field is bogus (it's derived from the size field which in this case holds the major/minor numbers). This makes du(1) output completely wrong. Please apply the patch below. Eric Signed-off-by: Eric Lammerts <[EMAIL P

Re: [PATCH] add kmalloc check in drviers/pcmcia/rsrc_mgr.c (245-ac16)

2001-06-23 Thread Eric Lammerts
On Sat, 23 Jun 2001, Rasmus Andersen wrote: > +if (!b) { > + printk(" -- aborting.\n"); > + printk(KERN_ERR "Out of memory."); > + return; > +} Why not printk(KERN_ERR "rsrc_mgr: Out of memory.\n"); ? Then at least people will know what it was that ran out of memory. Eric

Re: [PATCH] add kmalloc check in drviers/pcmcia/rsrc_mgr.c (245-ac16)

2001-06-24 Thread Eric Lammerts
On Sun, 24 Jun 2001, Rasmus Andersen wrote: > Excellent suggestion. How about this one: > +if (!b) { > + printk(" -- aborting.\n"); > + printk(KERN_ERR __FUNCTION__ ": Out of memory."); > + return; > +} There are zillions of functions called 'init_module' in the kerne

Re: [PATCH] add kmalloc check in drviers/pcmcia/rsrc_mgr.c (245-ac16)

2001-06-24 Thread Eric Lammerts
On Sun, 24 Jun 2001, Rasmus Andersen wrote: > On Sun, Jun 24, 2001 at 10:52:31PM +0200, Eric Lammerts wrote: > [...] > > There are zillions of functions called 'init_module' in the kernel. > > I think my suggestion was better (and it had a \n at the end!) > >

Re: Linux 2.2.20-pre4

2001-06-20 Thread Eric Lammerts
On Tue, 19 Jun 2001, Alan Cox wrote: > > Is it mean now kernel 2.2 with prepatch is (or will be) gcc 3.0 ready ? > > If not what must be fixed/chenged to be ready ? > > It wont build with gcc 3.0 yet. To start with gcc 3.0 will assume it can > insert calls to 'memcpy' I tried it, but didn't run

[PATCH] ext3: commit superblock before panicking

2005-01-18 Thread Eric Lammerts
orted before panic() is called. Eric Signed-off-by: Eric Lammerts <[EMAIL PROTECTED]> --- linux-2.6.10/fs/ext3/super.c.orig 2005-01-18 15:07:47.673128436 -0500 +++ linux-2.6.10/fs/ext3/super.c2005-01-18 15:43:55.311501654 -0500 @@ -143,9 +143,6 @@ if (sb->s_fla

[PATCH] nozomi DTR/RTS

2007-08-24 Thread Eric Lammerts
Hi, I noticed that DTR toggling doesn't work with the nozomi driver (TIOCMBIS/TIOCMBIC ioctls have no effect). This is a nuisance because that makes it hard to get the modem back in command mode. Attached patch adds a tty_ops->tiocmset function that makes it work. Should we also rip out the T