Re: Archos 6000

2001-12-01 Thread Bernd Walter

On Thu, Nov 29, 2001 at 03:35:43PM -0800, Gregory Neil Shapiro wrote:
 ps has anyone tested using a Archos 6000 (using a isd200 interface) with the
 ps umass driver under freebsd?
 
 Just bought one (the 20G version but same interface) this weekend and can
 verify that it does not work with -STABLE.  I also saw the Linux driver but
 I don't know the USB code at all.  Hopefully, a USB-knowledgeable developer
 will port it out of the kindness of his or her heart.

Does it get connectet to umass?
If yes and you see read errors this should be just another quirk
candidate.

-- 
B.Walter  COSMO-Project http://www.cosmo-project.de
[EMAIL PROTECTED] Usergroup   [EMAIL PROTECTED]


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-current in the body of the message



Re: Archos 6000

2001-12-01 Thread Patrik Sundberg

On Sat, Dec 01, 2001 at 09:40:33AM +0100, Bernd Walter wrote:
 On Thu, Nov 29, 2001 at 03:35:43PM -0800, Gregory Neil Shapiro wrote:
  ps has anyone tested using a Archos 6000 (using a isd200 interface) with the
  ps umass driver under freebsd?
  
  Just bought one (the 20G version but same interface) this weekend and can
  verify that it does not work with -STABLE.  I also saw the Linux driver but
  I don't know the USB code at all.  Hopefully, a USB-knowledgeable developer
  will port it out of the kindness of his or her heart.
 
 Does it get connectet to umass?
 If yes and you see read errors this should be just another quirk
 candidate.

i found a posting on the netbsd current mailinglist stating that with some
minor modifications it sort of attached to the umass driver, but the author
had no further success. the posting can be viewed at:
http://www.geocrawler.com/archives/3/497/2001/7/100/6233506/

hope someone with the right knowledge takes this one on :)

-- 
---.
Patrik SundbergAddress: Rydsvägen 100C, 584 31 Linköping, Sweden   |
   Email:   [EMAIL PROTECTED] || [EMAIL PROTECTED] |
   Phone:   +46 13 178567 || +46 707 602240|
.--- Applied Physics and Electrical Engineering student   |
|- Master of Science in Business Administration and Economics student |
|--- UNIX/Programming consultant  |
`--'

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-current in the body of the message



Re: PATCH: sysinstall to remove userconfig code

2001-12-01 Thread Makoto Matsushita


Sorry for late reply.

jkh Don't you want to try the devfs mount and only copy device files
jkh if that returns an error code?

Hmm, it seems better to me.  I'll try it again...  I find that more
error handling is required if mounting devfs is failed.

-- -
Makoto `MAR' Matsushita

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-current in the body of the message



Re: Recent ICMP breakage [FIXED]

2001-12-01 Thread Ruslan Ermilov

On Sat, Dec 01, 2001 at 01:40:33AM -0500, Mike Barcroft wrote:
 Ruslan,
 I think your recent ICMP commit may have seriously broken -current.
 When I ping any network interface including localhost, I get an
 instant panic.  Others on IRC were saying they're seeing immediate
 panics on boot.  If you can't reproduce this I can provide a
 traceback.
 
Yeah, that little headache I had yesterday made this happen.
Should be fixed in ip_output,v 1.143.  Sorry guys.


Cheers,
-- 
Ruslan Ermilov  Oracle Developer/DBA,
[EMAIL PROTECTED]   Sunbay Software AG,
[EMAIL PROTECTED]  FreeBSD committer,
+380.652.512.251Simferopol, Ukraine

http://www.FreeBSD.org  The Power To Serve
http://www.oracle.com   Enabling The Information Age

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-current in the body of the message



Re: PATCH: sysinstall to remove userconfig code

2001-12-01 Thread Makoto Matsushita


jkh Don't you want to try the devfs mount and only copy device files
jkh if that returns an error code?

How 'bout this patch (attached below)?  I've recreate boot floppies
with this patch, then put them to:

http://people.FreeBSD.org/~matusita/5.0-CURRENT-20011121-JPSNAP_usedevfs/

-- -
Makoto `MAR' Matsushita


Index: install.c
===
RCS file: /pub/snapshots/cvsup/FreeBSD.cvs/src/usr.sbin/sysinstall/install.c,v
retrieving revision 1.309
diff -c -r1.309 install.c
*** install.c   20 Oct 2001 09:28:53 -  1.309
--- install.c   1 Dec 2001 13:49:27 -
***
*** 857,863 
  int
  installFilesystems(dialogMenuItem *self)
  {
! int i;
  Disk *disk;
  Chunk *c1, *c2, *rootdev, *swapdev, *usrdev, *vardev;
  Device **devs;
--- 857,863 
  int
  installFilesystems(dialogMenuItem *self)
  {
! int i, mountfailed;
  Disk *disk;
  Chunk *c1, *c2, *rootdev, *swapdev, *usrdev, *vardev;
  Device **devs;
***
*** 932,938 
}
dialog_clear_norefresh();
msgNotify(Checking integrity of existing %s filesystem., dname);
!   i = vsystem(fsck -y %s, dname);
if (i)
msgConfirm(Warning: fsck returned status of %d for %s.\n
   This partition may be unsafe to use., i, dname);
--- 932,938 
}
dialog_clear_norefresh();
msgNotify(Checking integrity of existing %s filesystem., dname);
!   i = vsystem(fsck_ffs -y %s, dname);
if (i)
msgConfirm(Warning: fsck returned status of %d for %s.\n
   This partition may be unsafe to use., i, dname);
***
*** 949,954 
--- 949,969 
msgConfirm(Unable to mount the root file system on %s!  Giving up., 
dname);
return DITEM_FAILURE | DITEM_RESTORE;
}
+ 
+   /* Mount devfs for other partitions to mount */
+   Mkdir(/mnt/dev);
+   if (!Fake)
+   mountfailed = mount(devfs, /mnt/dev, 0, NULL);
+ 
+   if (mountfailed) {
+   dialog_clear_norefresh();
+   msgNotify(Copying initial device files..);
+   /* Copy the boot floppy's dev files */
+   if ((root-newfs || upgrade)  vsystem(find -x /dev | cpio %s -pdum 
+/mnt, cpioVerbosity())) {
+   msgConfirm(Couldn't clone the /dev files!);
+   return DITEM_FAILURE | DITEM_RESTORE;
+   }
+   }
  }
  
  /* Now buzz through the rest of the partitions and mount them too */
***
*** 962,974 
msgConfirm(No chunk list found for %s!, disk-name);
return DITEM_FAILURE | DITEM_RESTORE;
}
!   if (RunningAsInit  root  (root-newfs || upgrade)) {
!   Mkdir(/mnt/dev);
!   if (!Fake)
!   MakeDevDisk(disk, /mnt/dev);
}
-   else if (!RunningAsInit  !Fake)
-   MakeDevDisk(disk, /dev);
  
for (c1 = disk-chunks-part; c1; c1 = c1-next) {
if (c1-type == freebsd) {
--- 977,991 
msgConfirm(No chunk list found for %s!, disk-name);
return DITEM_FAILURE | DITEM_RESTORE;
}
!   if (mountfailed) {
!   if (RunningAsInit  root  (root-newfs || upgrade)) {
!   Mkdir(/mnt/dev);
!   if (!Fake)
!   MakeDevDisk(disk, /mnt/dev);
!   }
!   else if (!RunningAsInit  !Fake)
!   MakeDevDisk(disk, /dev);
}
  
for (c1 = disk-chunks-part; c1; c1 = c1-next) {
if (c1-type == freebsd) {
***
*** 983,989 
if (tmp-newfs  (!upgrade || !msgNoYes(You are upgrading - 
are you SURE you want to newfs /dev/%s?, c2-name)))
command_shell_add(tmp-mountpoint, %s %s/dev/%s, 
tmp-newfs_cmd, RunningAsInit ? /mnt : , c2-name);
else
!   command_shell_add(tmp-mountpoint, fsck -y %s/dev/%s, 
RunningAsInit ? /mnt : , c2-name);
if (tmp-soft)
command_shell_add(tmp-mountpoint, tunefs -n enable 
%s/dev/%s, RunningAsInit ? /mnt : , c2-name);
command_func_add(tmp-mountpoint, Mount, c2-name);
--- 1000,1006 
if (tmp-newfs  (!upgrade || !msgNoYes(You are upgrading - 
are you SURE you want to newfs /dev/%s?, c2-name)))
command_shell_add(tmp-mountpoint, %s %s/dev/%s, 
tmp-newfs_cmd, RunningAsInit ? /mnt : , c2-name);
else
!   command_shell_add(tmp-mountpoint, fsck_ffs -y 
%s/dev/%s, RunningAsInit ? /mnt : , c2-name);
if (tmp-soft)
command_shell_add(tmp-mountpoint, tunefs -n enable 
%s/dev/%s, RunningAsInit ? /mnt : , c2-name);
command_func_add(tmp-mountpoint, 

Re: Perl build breakage

2001-12-01 Thread Anton Berezin

On Thu, Nov 29, 2001 at 10:42:45AM -0800, Eugene M. Kim wrote:
 Hello,
 
 I am getting the following error in the make depend stage; could anyone
 shed a light?
 
 (The host system is 5-current as of around May 1.)

From UPDATING (you do read UPDATING, don't you?):

20010502:
Perl breakage in 20010501 was corrected at 14:18:33 PDT.

20010501:
Building perl was broken at 02:25:25 PDT.

Please see the old HEADS UP message, which describes the fix:
http://www.freebsd.org/cgi/getmsg.cgi?fetch=192223+0+/usr/local/www/db/text/2001/freebsd-current/20010506.freebsd-current

 Thanks,
 Eugene
 
  snip  snip 
 === libperl
 === miniperl
 === perl
 Extracting config.h (with variable substitutions)
 Extracting cflags (with variable substitutions)
 Extracting writemain (with variable substitutions)
 Extracting myconfig (with variable substitutions)
 Missing right curly or square bracket at lib/SelfLoader.pm line 69, at end of line
 syntax error at lib/SelfLoader.pm line 69, at EOF
 Compilation failed in require at /usr/libdata/perl/BSDPAN/BSDPAN/Override.pm line 17.
 Compilation failed in require at /usr/libdata/perl/BSDPAN/Config.pm line 37.
 BEGIN failed--compilation aborted at /usr/libdata/perl/BSDPAN/Config.pm line 37.
 Compilation failed in require at 
/usr/src/gnu/usr.bin/perl/perl/../../../../contrib/perl5/configpm line 430.
 *** Error code 255
 
 Stop in /usr/src/gnu/usr.bin/perl/perl.
 *** Error code 1
 
 Stop in /usr/src/gnu/usr.bin/perl.
 *** Error code 255
 
 Stop in /usr/src/gnu/usr.bin/perl/perl.
 *** Error code 1
 
 Stop in /usr/src/gnu/usr.bin/perl.
  snip  snip 

Cheers,
*Anton.
-- 
| Anton Berezin|  FreeBSD: The power to serve |
| catpipe Systems ApS   _ _ |_ |   http://www.FreeBSD.org |
| [EMAIL PROTECTED](_(_||  |[EMAIL PROTECTED] | 
| +45 7021 0050| Private: [EMAIL PROTECTED] |

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-current in the body of the message



Re: Archos 6000

2001-12-01 Thread Gregory Neil Shapiro

ticso Does it get connectet to umass?

No, ugen.

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-current in the body of the message



Re: Archos 6000

2001-12-01 Thread Bernd Walter

On Sat, Dec 01, 2001 at 12:13:30PM +0100, Patrik Sundberg wrote:
 On Sat, Dec 01, 2001 at 09:40:33AM +0100, Bernd Walter wrote:
  On Thu, Nov 29, 2001 at 03:35:43PM -0800, Gregory Neil Shapiro wrote:
   ps has anyone tested using a Archos 6000 (using a isd200 interface) with the
   ps umass driver under freebsd?
   
   Just bought one (the 20G version but same interface) this weekend and can
   verify that it does not work with -STABLE.  I also saw the Linux driver but
   I don't know the USB code at all.  Hopefully, a USB-knowledgeable developer
   will port it out of the kindness of his or her heart.

I'm not in the Linux world - is there a cvsweb access for this driver
available?

  Does it get connectet to umass?
  If yes and you see read errors this should be just another quirk
  candidate.
 
 i found a posting on the netbsd current mailinglist stating that with some
 minor modifications it sort of attached to the umass driver, but the author
 had no further success. the posting can be viewed at:
 http://www.geocrawler.com/archives/3/497/2001/7/100/6233506/

This means the drive is either not umass classed or uses an unsupported
subclass/protocol.

Can anyone with such a drive please mail the complete specification?
Apply the attached patch and mail the usbdevs -v output.

-- 
B.Walter  COSMO-Project http://www.cosmo-project.de
[EMAIL PROTECTED] Usergroup   [EMAIL PROTECTED]



Index: usr.sbin/usbdevs//usbdevs.c
===
RCS file: /vol/freebsd-cvs/src/usr.sbin/usbdevs/usbdevs.c,v
retrieving revision 1.5
diff -u -r1.5 usbdevs.c
--- usr.sbin/usbdevs//usbdevs.c 1999/11/23 01:16:10 1.5
+++ usr.sbin/usbdevs//usbdevs.c 2001/12/01 17:16:53
@@ -100,9 +100,10 @@
printf(unconfigured, );
}
if (verbose) {
-   printf(%s(0x%04x), %s(0x%04x), rev 0x%04x,
+   printf(%s(0x%04x), %s(0x%04x), rev 0x%04x, class 0x%02x, subclass 
+0x%02x, protocol 0x%02x,
di.product, di.productNo,
-   di.vendor, di.vendorNo, di.releaseNo);
+   di.vendor, di.vendorNo, di.releaseNo,
+   di.class, di.subclass, di.protocol);
} else
printf(%s, %s, di.product, di.vendor);
printf(\n);



Re: Archos 6000

2001-12-01 Thread Gregory Neil Shapiro

ticso Can anyone with such a drive please mail the complete specification?
ticso Apply the attached patch and mail the usbdevs -v output.

Here you go:

port 1 addr 2: self powered, config 1, USB Storage Adapter(0x0031), In-System 
Design(0x05ab), rev 0x0100, class 0xff, subclass 0x00, protocol 0xff

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-current in the body of the message



Re: Archos 6000

2001-12-01 Thread Bernd Walter

On Sat, Dec 01, 2001 at 09:39:28AM -0800, Gregory Neil Shapiro wrote:
 ticso Can anyone with such a drive please mail the complete specification?
 ticso Apply the attached patch and mail the usbdevs -v output.
 
 Here you go:
 
 port 1 addr 2: self powered, config 1, USB Storage Adapter(0x0031), In-System 
Design(0x05ab), rev 0x0100, class 0xff, subclass 0x00, protocol 0xff
 

Class 0xff is vendor specific.
The umass driver looks for UCLASS_MASS which is 0x08.
Often they are still umass compatible but you have to guess which
subclass to put it in and quirk.
Well - maybe the Linux driver will bring some light.

I hate such vendors - why can't they just use standard classes :(

-- 
B.Walter  COSMO-Project http://www.cosmo-project.de
[EMAIL PROTECTED] Usergroup   [EMAIL PROTECTED]


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-current in the body of the message



Re: Archos 6000

2001-12-01 Thread Mike Smith

 i found a posting on the netbsd current mailinglist stating that with some
 minor modifications it sort of attached to the umass driver, but the author
 had no further success. the posting can be viewed at:
 http://www.geocrawler.com/archives/3/497/2001/7/100/6233506/
 
 hope someone with the right knowledge takes this one on :)

You might try forcing it to use the floppy command set; the ScanLogic 
USB:IDE adapter requires this despite claiming to be SCSI-compatible.

-- 
... every activity meets with opposition, everyone who acts has his
rivals and unfortunately opponents also.  But not because people want
to be opponents, rather because the tasks and relationships force
people to take different points of view.  [Dr. Fritz Todt]
   V I C T O R Y   N O T   V E N G E A N C E



To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-current in the body of the message



Re: Perl build breakage

2001-12-01 Thread Eugene M. Kim

Well, I *did* read UPDATING, and I saw the perl breakage notice.  But it
seems not to be relevant to me, as my source code is current (I mean, up
to date); I cvsupped it just before starting make world.  Only my host
system is built around May 1.

Thanks,
Eugene

On Sat, Dec 01, 2001 at 05:18:45PM +0100, Anton Berezin wrote:
 
 
 On Thu, Nov 29, 2001 at 10:42:45AM -0800, Eugene M. Kim wrote:
  Hello,
  
  I am getting the following error in the make depend stage; could anyone
  shed a light?
  
  (The host system is 5-current as of around May 1.)
 
 From UPDATING (you do read UPDATING, don't you?):
 
 20010502:
 Perl breakage in 20010501 was corrected at 14:18:33 PDT.
 
 20010501:
 Building perl was broken at 02:25:25 PDT.
 
 Please see the old HEADS UP message, which describes the fix:
 
http://www.freebsd.org/cgi/getmsg.cgi?fetch=192223+0+/usr/local/www/db/text/2001/freebsd-current/20010506.freebsd-current
 
  Thanks,
  Eugene
  
   snip  snip 
  === libperl
  === miniperl
  === perl
  Extracting config.h (with variable substitutions)
  Extracting cflags (with variable substitutions)
  Extracting writemain (with variable substitutions)
  Extracting myconfig (with variable substitutions)
  Missing right curly or square bracket at lib/SelfLoader.pm line 69, at end of line
  syntax error at lib/SelfLoader.pm line 69, at EOF
  Compilation failed in require at /usr/libdata/perl/BSDPAN/BSDPAN/Override.pm line 
17.
  Compilation failed in require at /usr/libdata/perl/BSDPAN/Config.pm line 37.
  BEGIN failed--compilation aborted at /usr/libdata/perl/BSDPAN/Config.pm line 37.
  Compilation failed in require at 
/usr/src/gnu/usr.bin/perl/perl/../../../../contrib/perl5/configpm line 430.
  *** Error code 255
  
  Stop in /usr/src/gnu/usr.bin/perl/perl.
  *** Error code 1
  
  Stop in /usr/src/gnu/usr.bin/perl.
  *** Error code 255
  
  Stop in /usr/src/gnu/usr.bin/perl/perl.
  *** Error code 1
  
  Stop in /usr/src/gnu/usr.bin/perl.
   snip  snip 
 
 Cheers,
 *Anton.
 -- 
 | Anton Berezin|  FreeBSD: The power to serve |
 | catpipe Systems ApS   _ _ |_ |   http://www.FreeBSD.org |
 | [EMAIL PROTECTED](_(_||  |[EMAIL PROTECTED] | 
 | +45 7021 0050| Private: [EMAIL PROTECTED] |

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-current in the body of the message



Re: Perl build breakage

2001-12-01 Thread Eugene M. Kim

Oh, never mind.  I just re-read the thread you pointed (thanks) and saw
it affects the systems *installed around the breakage date*.

UPDATING does not mention about this fact (it simply says `Building perl
was broken'); perhaps it should be updated to mention the misfortune of
the installed system and the link to the fix; Warner?).

Thanks,
Eugene

On Sat, Dec 01, 2001 at 01:14:44PM -0800, Eugene M. Kim wrote:
 Well, I *did* read UPDATING, and I saw the perl breakage notice.  But it
 seems not to be relevant to me, as my source code is current (I mean, up
 to date); I cvsupped it just before starting make world.  Only my host
 system is built around May 1.
 
 Thanks,
 Eugene
 
 On Sat, Dec 01, 2001 at 05:18:45PM +0100, Anton Berezin wrote:
  
  
  On Thu, Nov 29, 2001 at 10:42:45AM -0800, Eugene M. Kim wrote:
   Hello,
   
   I am getting the following error in the make depend stage; could anyone
   shed a light?
   
   (The host system is 5-current as of around May 1.)
  
  From UPDATING (you do read UPDATING, don't you?):
  
  20010502:
  Perl breakage in 20010501 was corrected at 14:18:33 PDT.
  
  20010501:
  Building perl was broken at 02:25:25 PDT.
  
  Please see the old HEADS UP message, which describes the fix:
  
http://www.freebsd.org/cgi/getmsg.cgi?fetch=192223+0+/usr/local/www/db/text/2001/freebsd-current/20010506.freebsd-current
  
   Thanks,
   Eugene
   
    snip  snip 
   === libperl
   === miniperl
   === perl
   Extracting config.h (with variable substitutions)
   Extracting cflags (with variable substitutions)
   Extracting writemain (with variable substitutions)
   Extracting myconfig (with variable substitutions)
   Missing right curly or square bracket at lib/SelfLoader.pm line 69, at end of 
line
   syntax error at lib/SelfLoader.pm line 69, at EOF
   Compilation failed in require at /usr/libdata/perl/BSDPAN/BSDPAN/Override.pm 
line 17.
   Compilation failed in require at /usr/libdata/perl/BSDPAN/Config.pm line 37.
   BEGIN failed--compilation aborted at /usr/libdata/perl/BSDPAN/Config.pm line 37.
   Compilation failed in require at 
/usr/src/gnu/usr.bin/perl/perl/../../../../contrib/perl5/configpm line 430.
   *** Error code 255
   
   Stop in /usr/src/gnu/usr.bin/perl/perl.
   *** Error code 1
   
   Stop in /usr/src/gnu/usr.bin/perl.
   *** Error code 255
   
   Stop in /usr/src/gnu/usr.bin/perl/perl.
   *** Error code 1
   
   Stop in /usr/src/gnu/usr.bin/perl.
    snip  snip 
  
  Cheers,
  *Anton.
  -- 
  | Anton Berezin|  FreeBSD: The power to serve |
  | catpipe Systems ApS   _ _ |_ |   http://www.FreeBSD.org |
  | [EMAIL PROTECTED](_(_||  |[EMAIL PROTECTED] | 
  | +45 7021 0050| Private: [EMAIL PROTECTED] |

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-current in the body of the message



Re: Perl build breakage

2001-12-01 Thread Anton Berezin

On Sat, Dec 01, 2001 at 01:26:11PM -0800, Eugene M. Kim wrote:
 Oh, never mind.  I just re-read the thread you pointed (thanks) and
 saw it affects the systems *installed around the breakage date*.
 
 UPDATING does not mention about this fact (it simply says `Building
 perl was broken'); perhaps it should be updated to mention the
 misfortune of the installed system and the link to the fix; Warner?).

Well, that would definitely be a good idea half a year ago.  Nowadays, I
doubt there will be any significant number of unlucky souls having
operating -current systems built between May 1st and May 2nd.  You might
be unique at that.  ;-)

Cheers,
%Anton.
-- 
| Anton Berezin|  FreeBSD: The power to serve |
| catpipe Systems ApS   _ _ |_ |   http://www.FreeBSD.org |
| [EMAIL PROTECTED](_(_||  |[EMAIL PROTECTED] | 
| +45 7021 0050| Private: [EMAIL PROTECTED] |

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-current in the body of the message



Fatal Double Fault

2001-12-01 Thread Galen Sampson

Hello all,

I was in X today and the computer spontaneously restarted so I didn't see and
panic.  After a restart fsck started in the background (I'm using soft updates
on all of my filesystems).  While trying to determing what caused the crash by
looking in the system logs the computer crashed again.

The message on the console was:
start
Fatal double panic:
eip = 0xc02c0a98
esp = 0xcae5d000
ebp = 0xcae5d030
panic: double fault
syncing disks
end

I'm using kernel source from 11/12/01.  If someone can tell me how to find
better information about a crash or would like configuration information I'll
be glad to provide all I can.

regards,

Galen

__
Do You Yahoo!?
Buy the perfect holiday gifts at Yahoo! Shopping.
http://shopping.yahoo.com

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-current in the body of the message



Fatal trap 12 on kernel from sometime Nov. 30.

2001-12-01 Thread Edwin Culp

With my kernel and with a Generic kernel, I am getting a Fatal trap 12 
when trying to access the network.  
The first thing that happens on the network seems to cause the panic. 
 The following was an error with a
generic kernel.  I'm typing it so there could be mistakes.

Fatal trap 12: page fault while in kernel mode
fault virtual address= 0x0
fault code= supervisor read, page not present
instruction pointer  = 0x8:0xc0289ad4
stack pointer   = 0x10:0xdbef5b58
frame pointer  = 0x10:0xdbef5ba4
code segment  = base 0x0, limit 0xf, type 0x1b
= DPL 0, pres 1, def32 1, gran 1
processor eflags = interrupt enabled, resume, IOPL = 0
current process   = 11 (swi1: net)
kernel: type 12 trap, code=0
Stopped atip_output+0x118:  cmpl$0,0(%eax)

db Context switches not allowed in the debugger.
db

The debugger is open but I don't know what I'm looking for.  Any help 
will be appreciated.

Thanks,

ed


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-current in the body of the message



Re: Fatal trap 12 on kernel from sometime Nov. 30.

2001-12-01 Thread Andrew R. Reiter


cvsup  -- this was fixed sometime within the last 24hours.

On Sat, 1 Dec 2001, Edwin Culp wrote:

:With my kernel and with a Generic kernel, I am getting a Fatal trap 12 
:when trying to access the network.  
:The first thing that happens on the network seems to cause the panic. 
: The following was an error with a
:generic kernel.  I'm typing it so there could be mistakes.
:
:Fatal trap 12: page fault while in kernel mode
:fault virtual address= 0x0
:fault code= supervisor read, page not present
:instruction pointer  = 0x8:0xc0289ad4
:stack pointer   = 0x10:0xdbef5b58
:frame pointer  = 0x10:0xdbef5ba4
:code segment  = base 0x0, limit 0xf, type 0x1b
:= DPL 0, pres 1, def32 1, gran 1
:processor eflags = interrupt enabled, resume, IOPL = 0
:current process   = 11 (swi1: net)
:kernel: type 12 trap, code=0
:Stopped atip_output+0x118:  cmpl$0,0(%eax)
:
:db Context switches not allowed in the debugger.
:db
:
:The debugger is open but I don't know what I'm looking for.  Any help 
:will be appreciated.
:
:Thanks,
:
:ed
:
:
:To Unsubscribe: send mail to [EMAIL PROTECTED]
:with unsubscribe freebsd-current in the body of the message
:

--
Andrew R. Reiter
[EMAIL PROTECTED]
[EMAIL PROTECTED]


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-current in the body of the message



Re: Fatal trap 12 on kernel from sometime Nov. 30.

2001-12-01 Thread Edwin Culp

Andrew,

Thanks.  Now my problem is that I can't cvsup.  Any ideas on how to 
update my sources?  
Maybe someone could email me a patch and I could take it over with a 
floppy.  Right now
I have no access to the network with the machine that has the fatal trap.

Thanks,

ed

Andrew R. Reiter wrote:

cvsup  -- this was fixed sometime within the last 24hours.

On Sat, 1 Dec 2001, Edwin Culp wrote:

:With my kernel and with a Generic kernel, I am getting a Fatal trap 12 
:when trying to access the network.  
:The first thing that happens on the network seems to cause the panic. 
: The following was an error with a
:generic kernel.  I'm typing it so there could be mistakes.
:
:Fatal trap 12: page fault while in kernel mode
:fault virtual address= 0x0
:fault code= supervisor read, page not present
:instruction pointer  = 0x8:0xc0289ad4
:stack pointer   = 0x10:0xdbef5b58
:frame pointer  = 0x10:0xdbef5ba4
:code segment  = base 0x0, limit 0xf, type 0x1b
:= DPL 0, pres 1, def32 1, gran 1
:processor eflags = interrupt enabled, resume, IOPL = 0
:current process   = 11 (swi1: net)
:kernel: type 12 trap, code=0
:Stopped atip_output+0x118:  cmpl$0,0(%eax)
:
:db Context switches not allowed in the debugger.
:db
:
:The debugger is open but I don't know what I'm looking for.  Any help 
:will be appreciated.
:
:Thanks,
:
:ed
:
:
:To Unsubscribe: send mail to [EMAIL PROTECTED]
:with unsubscribe freebsd-current in the body of the message
:

--
Andrew R. Reiter
[EMAIL PROTECTED]
[EMAIL PROTECTED]






To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-current in the body of the message



Re: Fatal trap 12 on kernel from sometime Nov. 30.

2001-12-01 Thread Alfred Perlstein

* Edwin Culp [EMAIL PROTECTED] [011201 21:25] wrote:
 Andrew,
 
 Thanks.  Now my problem is that I can't cvsup.  Any ideas on how to 
 update my sources?  
 Maybe someone could email me a patch and I could take it over with a 
 floppy.  Right now
 I have no access to the network with the machine that has the fatal trap.

interrupt the boot sequence, type:
unload kernel
boot kernel.old
make a backup of your /boot/kernel.old
cvsup
rebuild kernel
install kernel
reboot
if there's a problem you should be able to boot your backed up copy
of kernel.old


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-current in the body of the message



Re: Fatal trap 12 on kernel from sometime Nov. 30.

2001-12-01 Thread Andrew R. Reiter

Edwin,

The following is the current fix in place:

Index: ip_output.c
===
RCS file: /home/ncvs/src/sys/netinet/ip_output.c,v
retrieving revision 1.142
retrieving revision 1.143
diff -u -r1.142 -r1.143
--- ip_output.c 4 Nov 2001 22:56:25 -   1.142
+++ ip_output.c 1 Dec 2001 13:48:16 -   1.143
@@ -31,7 +31,7 @@
  * SUCH DAMAGE.
  *
  * @(#)ip_output.c 8.3 (Berkeley) 1/21/94
- * $FreeBSD: src/sys/netinet/ip_output.c,v 1.142 2001/11/04 22:56:25
luigi Exp
$
+ * $FreeBSD: src/sys/netinet/ip_output.c,v 1.143 2001/12/01 13:48:16 ru
Exp $
  */

 #define _IP_VHL
@@ -123,11 +123,11 @@
struct mbuf *m = m0;
int hlen = sizeof (struct ip);
int len, off, error = 0;
+   struct route iproute;
struct sockaddr_in *dst;
struct in_ifaddr *ia;
int isbroadcast, sw_csum;
 #ifdef IPSEC
-   struct route iproute;
struct socket *so = NULL;
struct secpolicy *sp = NULL;
 #endif
@@ -188,9 +188,6 @@
 #ifdef DIAGNOSTIC
if ((m-m_flags  M_PKTHDR) == 0)
panic(ip_output no HDR);
-   if (!ro)
-   panic(ip_output no route, proto = %d,
- mtod(m, struct ip *)-ip_p);
 #endif
if (opt) {
m = ip_insertoptions(m, opt, len);
@@ -213,6 +210,11 @@
hlen = IP_VHL_HL(ip-ip_vhl)  2;
}

+   /* Route packet. */
+   if (ro == NULL) {
+   ro = iproute;
+   bzero(ro, sizeof(*ro));
+   }
dst = (struct sockaddr_in *)ro-ro_dst;
/*
 * If there is a cached route,
Index: ip_mroute.c
===
RCS file: /home/ncvs/src/sys/netinet/ip_mroute.c,v
retrieving revision 1.68
retrieving revision 1.69
diff -u -r1.68 -r1.69
--- ip_mroute.c 29 Oct 2001 02:19:19 -  1.68
+++ ip_mroute.c 1 Dec 2001 13:48:16 -   1.69
@@ -9,7 +9,7 @@
  * Modified by Bill Fenner, PARC, April 1995
  *
  * MROUTING Revision: 3.5
- * $FreeBSD: src/sys/netinet/ip_mroute.c,v 1.68 2001/10/29 02:19:19
dillon Exp
$
+ * $FreeBSD: src/sys/netinet/ip_mroute.c,v 1.69 2001/12/01 13:48:16 ru
Exp $
  */

 #include opt_mrouting.h
@@ -1867,7 +1867,6 @@
 {
 struct ip_moptions imo;
 int error;
-static struct route ro;
 int s = splnet();

 if (vifp-v_flags  VIFF_TUNNEL) {
@@ -1886,7 +1885,7 @@
 * should get rejected because they appear to come from
 * the loopback interface, thus preventing looping.
 */
-   error = ip_output(m, (struct mbuf *)0, ro,
+   error = ip_output(m, (struct mbuf *)0, NULL,
  IP_FORWARDING, imo);

if (mrtdebug  DEBUG_XMIT)



To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-current in the body of the message



Re: Fatal trap 12 on kernel from sometime Nov. 30.

2001-12-01 Thread Manfred Antar

At 07:12 PM 12/1/2001 -0800, Edwin Culp wrote:
Andrew,

Thanks.  Now my problem is that I can't cvsup.  Any ideas on how to update my 
sources?  
Maybe someone could email me a patch and I could take it over with a floppy.  Right 
now
I have no access to the network with the machine that has the fatal trap.

Thanks,

ed


Do you have a /boot/kernel.old/kernel that works ?
Always save a working kernel !!! with current.
If you have a good /boot/kernel.old/kernel
Then when the machine is booting stop it at the OK prompt.

OK  unload
OK load boot/kernel.old/kernel
OK boot
then recvsup

==
||  [EMAIL PROTECTED]   ||
||  Ph. (415) 681-6235  ||
==


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-current in the body of the message



Re: Fatal trap 12 on kernel from sometime Nov. 30.

2001-12-01 Thread Edwin Culp

Manfred Antar wrote:

At 07:12 PM 12/1/2001 -0800, Edwin Culp wrote:

Andrew,

Thanks.  Now my problem is that I can't cvsup.  Any ideas on how to update my 
sources?  
Maybe someone could email me a patch and I could take it over with a floppy.  Right 
now
I have no access to the network with the machine that has the fatal trap.

Thanks,

ed


Do you have a /boot/kernel.old/kernel that works ?
Always save a working kernel !!! with current.
If you have a good /boot/kernel.old/kernel
Then when the machine is booting stop it at the OK prompt.

OK  unload
OK load boot/kernel.old/kernel
OK boot
then recvsup

==
||  [EMAIL PROTECTED]   ||
||  Ph. (415) 681-6235  ||
==


Somehow both my kernel and my kernel.old have the same problem.  I have 
the path and will build a new kernel with it.

Thanks to you all, it should be fixed in a few minutes.

ed

It just dawned on me to build a Generic kernel on my laptop, so I'm 
doing that too.




To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-current in the body of the message



Re: Fatal trap 12 on kernel from sometime Nov. 30.

2001-12-01 Thread Edwin Culp

Alfred,

Thanks for the suggestions.  The first thing I tried was the kernel.old 
but somehow I managed to have the same
problem.  It just dawned on me that I could build a Generic kernel on my 
laptop burn it on a cd (don't have a floppy)
and install it on the sick machine.  That is what I did and it's happily 
doing a cvsup right now that will be followed
by a make world and new kernel.

Many thanks to you, Andrew and Manfred for keeping me from drowning in a 
glass of water.

ed

Alfred Perlstein wrote:

* Edwin Culp [EMAIL PROTECTED] [011201 21:25] wrote:

Andrew,

Thanks.  Now my problem is that I can't cvsup.  Any ideas on how to 
update my sources?  
Maybe someone could email me a patch and I could take it over with a 
floppy.  Right now
I have no access to the network with the machine that has the fatal trap.


interrupt the boot sequence, type:
unload kernel
boot kernel.old
make a backup of your /boot/kernel.old
cvsup
rebuild kernel
install kernel
reboot
if there's a problem you should be able to boot your backed up copy
of kernel.old






To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-current in the body of the message



DRIPPING WET COLLEGE COEDS

2001-12-01 Thread love_nest899
Title: HEY SEXY, COME PLAY WITH ME!










HEY
SEXY, COME PLAY WITH ME!
Monster
Movie XXX MadNess!!!
Amateur Movies
- Closeup Facials - Hardcore Pornstar Flix
Monster Dicks
- Cum-soaked TeeNs - Ripe Blondes
Hot Brunettes
- Much More XXX
CLICK
HERE!

WARNING: This
site contains explicit sexual material.

You must be 18 or older to proceed.

To be taken off this list
please respond with "GET
ME OFF" in the subject
"Under Bill s.1618 TITLE
III passed by the 105th US Congress this letter
cannot be considered Spam
as long as the sender includes contact
information and a method
of removal."











To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message


,

2001-12-01 Thread
Title: ÀÎÅÍ³Ý ¹«·á ÀüÈ­¹øÈ£ µî·Ï°ú ÃÖÀú°¡ ÀüÈ­±â ÆǸŠÀ̺¥Æ® !





   
 
  
 
  
  
  

 
  
  
  

 
  ÀúÈñ Çï·Î¿ìÅÚÀ» ÀÌ¿ëÇÏ¿© ¿¹¾à°¡ÀÔÀ» ÇϽŠ°í°´´Ôµé¿¡°Ô 
°¨»çÀÇ ¸¶À½À» ÀüÇÏ°íÀÚ
ÀÎÅͳݿë USB PHONEÀ» ¼±Âø¼ø ¸¸¸í¿¡ ÇÑÇÏ¿© ÃÖÀú°¡¿¡ µå¸³´Ï´Ù.


  

  
  
  
 
   

  

 
  

   

  
   

   

  
   
 - ±âÁ¸ÀÇ ÀÏ¹Ý ÀüÈ­¹ø·Î¸¦ ±×´ë·Î »ç¿ëÇÏ½Ç ¼ö ÀÖ½À´Ï´Ù.
  - USB ÀÎÅÍÆäÀ̽º·Î PLUG  PLAY¸¦ Áö¿øÇϹǷΠ¼³Ä¡ ¹× »ç¿ëÀÌ °£Æí
  
   

  
   
 - »ç¿îµå Ä«µå¸¦ ³»ÀåÇÏ¿© ÃÖ»óÀÇ ÅëÈ­ À½Áú·Î ÀÎÅͳÝÀüÈ­ °¡´É
  - ÅëÈ­Áö¿¬À̳ª ²÷±è, ¿¡ÄÚÇö»ó,ÀâÀ½ÀÌ °ÅÀÇ ÀÏ¹Ý À¯¼±ÀüÈ­ ¼öÁØ
  
   

  
   
 - ±âº»·á ¿ù 4,000¿øÀ¸·Î ¿¬ÀÎ,Ä£±¸,°¡Á·,µ¿È£È¸¿ø°£ ¹«Á¦ÇÑ 
  ÅëÈ­
  - Àü±¹/½Ã³»¿ä±Ý 39¿ø,ÈÞ´ëÆù ÃÖ´ë 21%,±¹Á¦ÀüÈ­ ÃÖ´ë 95%·Î Àú·Å
  - Àü¼¼°è 230°³±¹ ÅëÈ­ ¹× ÇØ¿Ü¿¡¼­ ÀÚµ¿ ·Î¹ÖÀÌ °¡´É
  

  

 
   

  

  
  ¾Æ·¡ ÁÖ¼Ò·Î ¿À¼Å¼­ ǪÁüÇÑ °æÇ° Çà»ç¿Í ÇÔ²² °øµ¿±¸¸Å¿¡ Âü¿© ÇϽñ⠹ٶø´Ï´Ù.

¢º http://www.hellotel.co.kr
  
   


¸ÞÀϼö½Å°ÅºÎ¸¦ ¿øÇϽøé '¼ö½Å°ÅºÎ'¶ó°í 
Ç¥±âÇÏ¿© º¸³»Áֽñ⠹ٶø´Ï´Ù.
  

  
  
¨Ï 
  Copyright 2001 Çï·Î¿ìÅÚ All rights reserved.