Linux-Development-Sys Digest #498

2001-02-18 Thread Digestifier

Linux-Development-Sys Digest #498, Volume #8 Sun, 18 Feb 01 18:13:17 EST

Contents:
  Re: exit() argument limits ([EMAIL PROTECTED])
  Re: exit() argument limits ([EMAIL PROTECTED])
  what's wrong with wget?  It used to work! Is this a kernel problem? (jtnews)
  Re: what's wrong with wget?  It used to work! Is this a kernel problem? ("Peter T. 
Breuer")
  Re: mmap limits (Christian Casteyde)
  VMM + VFS bug ? (Christian Casteyde)
  Re: bugreport: NFS crashed my Linux ("M. Tavasti")
  Re: Big Brother is watching youplease read   
.  9696 ("Fluri Dave")
  Module Timing/Load Problem (David Ronis)
  Re: bugreport: NFS crashed my Linux ("Christian")
  Re: bugreport: NFS crashed my Linux (Juergen Heinzl)
  The Best Site OF Linux.  In this site there are all on linux www.frecell.6go.net 
("frecell")
  ioremap and virt_to_phys ([EMAIL PROTECTED])



From: [EMAIL PROTECTED]
Subject: Re: exit() argument limits
Date: Sun, 18 Feb 2001 04:33:41 -

On Sat, 17 Feb 2001 12:27:22 + Kasper Dupont <[EMAIL PROTECTED]> wrote:
| David R Tribble wrote:
|> 
|> Does Linux restrict the argument value of exit() (and _exit()) to
|> just the low 8 bits, like POSIX?  Or can it return the entire int
|> (32 bit) value to the parent process?
|> 
|> If not, why not?
|> 
|> --
|> David R. Tribble, mailto:[EMAIL PROTECTED], http://david.tribble.com
|
| It is not that hard to verify, it is limited to 8 bits.
| I don't know if the limit is implemented in exit() or
| wait(), but that doesn't really matter anyway.

Regardless of any other limits, linux-2.4.1/kernel/exit.c:482-485 has:

asmlinkage long sys_exit(int error_code)
{
do_exit((error_code&0xff)<<8);
}

-- 
=
| Phil Howard - KA9WGN |   Dallas   | http://linuxhomepage.com/ |
| [EMAIL PROTECTED] | Texas, USA | http://phil.ipal.org/ |
=

--

From: [EMAIL PROTECTED]
Subject: Re: exit() argument limits
Date: Sun, 18 Feb 2001 05:16:44 -

On Sat, 17 Feb 2001 12:27:22 + Kasper Dupont <[EMAIL PROTECTED]> wrote:
| David R Tribble wrote:
|> 
|> Does Linux restrict the argument value of exit() (and _exit()) to
|> just the low 8 bits, like POSIX?  Or can it return the entire int
|> (32 bit) value to the parent process?
|> 
|> If not, why not?
|> 
|> --
|> David R. Tribble, mailto:[EMAIL PROTECTED], http://david.tribble.com
|
| It is not that hard to verify, it is limited to 8 bits.
| I don't know if the limit is implemented in exit() or
| wait(), but that doesn't really matter anyway.

linux-2.4.1/kernel/exit.c:482-485 has the following, so even if
anything else passes more bits, only the low 8 get handled.

asmlinkage long sys_exit(int error_code)
{
do_exit((error_code&0xff)<<8);
}

-- 
=
| Phil Howard - KA9WGN |   Dallas   | http://linuxhomepage.com/ |
| [EMAIL PROTECTED] | Texas, USA | http://phil.ipal.org/ |
=

--

Date: Sun, 18 Feb 2001 04:23:23 -0500
From: jtnews <[EMAIL PROTECTED]>
Subject: what's wrong with wget?  It used to work! Is this a kernel problem?

I'm using RedHat 7.0 and wget now consistently
hangs on numerous ftp servers.

I'm really baffled as to why it's not working
because it works for people with other Linux
distributions, yet I tried the original binary
with RedHat 7.0 (wget 1.5.3) AND recompiled
the latest wget-1.6 and both still just hang!
The strange thing is that wget used to work
just fine only a few months ago when I was
using RedHat 6.2 with an older kernel version.

Curiously I have no problems downloading using
ncftpget.

Is anyone getting the same problem?

strace wget -m
ftp://ftp.netscape.com/pub/netscape6/english/6.0/unix/linux22/xpi/jre.xpi

--

From: "Peter T. Breuer" <[EMAIL PROTECTED]>
Subject: Re: what's wrong with wget?  It used to work! Is this a kernel problem?
Date: Sun, 18 Feb 2001 10:36:14 GMT

jtnews <[EMAIL PROTECTED]> wrote:
> I'm using RedHat 7.0 and wget now consistently
> hangs on numerous ftp servers.

> I'm really baffled as to why it's not working
> because it works for people with other Linux
> distributions, yet I tried the original binary
> with RedHat 7.0 (wget 1.5.3) AND recompiled
> the latest wget-1.6 and both still just hang!
> The strange thing is that wget used to work
> just fine only a few months ago when I was
> using RedHat 6.2 with an 

Linux-Development-Sys Digest #498

1999-03-17 Thread Digestifier

Linux-Development-Sys Digest #498, Volume #6 Wed, 17 Mar 99 09:13:56 EST

Contents:
  Re: kernel (Villy Kruse)
  Re: aha1542 scsi/paging problems! [2.0.36] (Emile van Bergen)
  Re: glibc2 questions (Thorsten Kukuk)
  Re: After Week 1 With Linux -- licking wounds. (Gordon Scott)
  Re: You can now use Winmodems in Linux!!! (David Fox)
  Re: Tripwire 1.2 core dumps on Linux 2.0.36 and 2.2.1 (Peter Bieringer)
  Re: After Week 1 With Linux -- licking wounds. ("The Infernal One")
  Re: kernel (normski_r)
  Re: csum_partial_copy, 2.2.1, SuSe (Robert Harley)
  Re: glibc2 questions (Thomas Zajic)
  Re: csum_partial_copy, 2.2.1, SuSe (Andre Fachat)
  Re: ansi - iso standard c function definitions (Michael Kat)
  no isdn - 2.2.3-ac2 (Christian Uhde)
  Re: Dynamic Shared Objects ("D. Emilio Grimaldo Tunon")
  Re: After Week 1 With Linux -- licking wounds. (Peter Samuelson)
  Re: After Week 1 With Linux -- licking wounds. (Peter Samuelson)
  Re: Threads and clone() (H. Reinecke)
  Re: csum_partial_copy, 2.2.1, SuSe (Peter Samuelson)



From: [EMAIL PROTECTED] (Villy Kruse)
Subject: Re: kernel
Date: 17 Mar 1999 08:45:34 +0100

In article ,
Eldhose John  <[EMAIL PROTECTED]> wrote:
>Hi,
>I am new comer to Linux. I wanted to find out how the kernel works,
>so I searched through the source code. But it was an unplesent experince
>I could not find any starting point. Please help me to solve the mistory.
>
>

The real fun starts in this program:

   /usr/src/linux-2.0.35/init/main.c

in the procedure

   start_kernel(void)

What comes before that is a lot of tricks to get the linux kernel into
memory, uncompressed, and so on.


Villy

--

From: Emile van Bergen <[EMAIL PROTECTED]>
Subject: Re: aha1542 scsi/paging problems! [2.0.36]
Date: Wed, 17 Mar 1999 09:59:13 +0100

Dr. Peer Griebel wrote:

> Mar 16 20:47:19 notebook kernel: SCSI disk error : host 0 channel 0 id
> 0 lun 0 return code = 2707
> Mar 16 20:47:19 notebook kernel: scsidisk I/O error: dev 08:02, sector
> 456, absolute sector 1413576
> Mar 16 20:47:35 notebook kernel: scsi0 channel 0 : resetting for
> second half of retries.
> Mar 16 20:47:35 notebook kernel: SCSI bus is being reset for host 0
> channel 0.
> Mar 16 20:47:50 notebook kernel: SCSI disk error : host 0 channel 0 id
> 0 lun 0 return code = 2707
> Mar 16 20:47:50 notebook kernel: scsidisk I/O error: dev 08:02, sector
> 464, absolute sector 1413584
> Mar 16 20:48:06 notebook kernel: scsi0 channel 0 : resetting for
> second half of retries.
> Mar 16 20:48:06 notebook kernel: SCSI bus is being reset for host 0
> channel 0.
> Mar 16 20:48:21 notebook kernel: SCSI disk error : host 0 channel 0 id
> 0 lun 0 return code = 2707
> Mar 16 20:48:21 notebook kernel: scsidisk I/O error: dev 08:02, sector
> 472, absolute sector 1413592
 
> Any hints???

Well... have you considered that you may have some really bad sectors on
your swap partition??

-- 

M.vr.gr. / Best regards,

Emile van Bergen (e-mail address: [EMAIL PROTECTED])

This e-mail message is 100% electronically degradeable and produced
on a GNU/Linux system.

--

From: Thorsten Kukuk <[EMAIL PROTECTED]>
Subject: Re: glibc2 questions
Date: 17 Mar 1999 09:21:40 GMT

Clint Davis <[EMAIL PROTECTED]> wrote:
> I have noticed that new packages that use ./configure are 
> requiring glibc2 now.  

> I have SuSe 6.0 and Caldera 1.3-->  is it possible to get these
> new libraries without having to compile them?  Installing new
> libraries is a pain and I am hoping that someone has done some of this
> work up front for the rest of us.

> It is too bad that the newer versions of linux from various vendors
> do not have glibc2 ( libc6 ).

I don't understand you, SuSE Linux 6.0 has glibc2 as main libc.
What are your problems with it ?

 Thorsten

-- 
Thorsten Kukuk  http://www.suse.de/~kukuk/[EMAIL PROTECTED]
SuSE GmbH   Schanzaeckerstr. 10 90443 Nuernberg
Linux is like a Vorlon.  It is incredibly powerful, gives terse,
cryptic answers and has a lot of things going on in the background.

--

From: [EMAIL PROTECTED] (Gordon Scott)
Crossposted-To: comp.os.linux.advocacy,comp.os.linux.questions
Subject: Re: After Week 1 With Linux -- licking wounds.
Date: 17 Mar 1999 09:48:48 GMT
Reply-To: Gordon Scott <[EMAIL PROTECTED]>

Robert Krawitz ([EMAIL PROTECTED]) wrote:
: [EMAIL PROTECTED] (Rupert K. Snoopowitz) writes:

: OK, so do I find all files that are greater than 1 MB in size, that
: are named something like '*.News.log*', that were modified more
: than 90 days ago, and don't live in directories named "Preserve"? 

You forgot to mention that find also allows you to execute a