From owner-freebsd-current Sun Nov 25 1:35:35 2001 Delivered-To: freebsd-current@freebsd.org Received: from mta5-rme.xtra.co.nz (mta5-rme.xtra.co.nz [210.86.15.138]) by hub.freebsd.org (Postfix) with ESMTP id 554F237B416 for ; Sun, 25 Nov 2001 01:35:33 -0800 (PST) Received: from xtra.co.nz ([210.86.52.129]) by mta5-rme.xtra.co.nz with ESMTP id <20011125093527.HGUC21293.mta5-rme.xtra.co.nz@xtra.co.nz> for ; Sun, 25 Nov 2001 22:35:27 +1300 Message-ID: <3C00BB7F.8070809@xtra.co.nz> Date: Sun, 25 Nov 2001 22:35:59 +1300 From: Neil Houghton User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:0.9.3) Gecko/20010914 X-Accept-Language: en-us MIME-Version: 1.0 To: freebsd-current@FreeBSD.org Subject: subscribe Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG subscribe To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Nov 25 2:28:24 2001 Delivered-To: freebsd-current@freebsd.org Received: from mailman.zeta.org.au (mailman.zeta.org.au [203.26.10.16]) by hub.freebsd.org (Postfix) with ESMTP id 9BFAD37B405; Sun, 25 Nov 2001 02:28:19 -0800 (PST) Received: from bde.zeta.org.au (bde.zeta.org.au [203.2.228.102]) by mailman.zeta.org.au (8.9.3/8.8.7) with ESMTP id VAA10230; Sun, 25 Nov 2001 21:28:12 +1100 Date: Sun, 25 Nov 2001 21:26:51 +1100 (EST) From: Bruce Evans X-X-Sender: To: Peter Wemm Cc: Luigi Rizzo , Mike Smith , John Baldwin , Subject: Re: where is the idle_loop in current ? In-Reply-To: <20011124023142.9BB70380D@overcee.netplex.com.au> Message-ID: <20011125195537.X5075-100000@delplex.bde.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Fri, 23 Nov 2001, Peter Wemm wrote: > Luigi Rizzo wrote: > > My understanding is that idle_loop threads _need_ to give up the cpu > > because they are special: they must never be in a run queue, and the > > scheduler knows about them (as a matter of fact, I cannot see where > > in kern/kern_idle.c a priority is associated to these threads). > > No. In -current, the idle procs ***MUST***NOT*** do anything. I.e., the unique idle process for each cpu. A comment in idle_proc() still says otherwise: > for (;;) { > mtx_assert(&Giant, MA_NOTOWNED); > > #ifdef DIAGNOSTIC > count = 0; > > while (count >= 0 && procrunnable() == 0) { > #else > while (procrunnable() == 0) { > #endif > /* > * This is a good place to put things to be done in > * the background, including sanity checks. > */ This is actually a BAD place for doing anything. > > If you want to do something at idle, you have to have an idle > process/thread/whatever. This is how vm_zeroidle works. It is > a process that is on the run queue. vm_zeroidle is a good example of how not to do things. Its watermark stuff makes its idleness not very important. My version of it wakes up the pageout daemon a lot (but subject to a watermark) to maintain a sufficient supply of pages of each color, and I've never noticed problems (from this) due to the pageout daemon having much higher priority. It's the check for whether there is a page worth zeroing (and whether there is a shortage of pages of some color in my version) that should be done at idle priority, not the actual zeroing/freeing. Once committed to zeroing/freeing, it's probably a mistake to d it at a low priority, since getting switched from and back to work that must be done won't help. Things have regressed a bit relative to RELENG_4. The check for pages to zero used to be done lazily. Now it is done in the main path of vm, by calling vm_page_zero_idle_wakeup() from vm_page_free(). So we are now using an idle process for precisely the parts of idly zeroing pages that don't need to be done idly. However, the watermark stuff limits the damage. > > But I really do not follow the "safer design" reasoning for > > vm_zeroidle. It would be much safer not to depend on it to cooperate > > in the scheduling and be subject to to the regular scheduling policy > > (i.e. preempt when someone with higher priority becomes ready, > > or when its quantum is over). > > Thats the problem.. We do *not* have preemption in -current right now. > If it takes 10 seconds to zero all memory, the system will freeze for 10 > seconds while vm_zeroidle runs, even if there is a higher priority process > on the runqueue. The watermark stuff limits the damage. It won't actually zero all memory since to high watermark is 4/5*cnt.v_free_count. cnt.v_free_count must not be very large or the pageout daemon might cause long freezes too. The pageout daemon will give up control if it writes to swap; this sort of corresponds to the pagezero deamon giving up control after every idlezero_maxrun pages (default 16). Anyway, I think luigi wants the non-process benefits of hacking on the old idle loop. Sorry, the only way to get these seems to be to upgrade to RELENG_4. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Nov 25 6:20:38 2001 Delivered-To: freebsd-current@freebsd.org Received: from web21107.mail.yahoo.com (web21107.mail.yahoo.com [216.136.227.109]) by hub.freebsd.org (Postfix) with SMTP id 3169337B405 for ; Sun, 25 Nov 2001 06:20:31 -0800 (PST) Message-ID: <20011125142030.34874.qmail@web21107.mail.yahoo.com> Received: from [62.254.0.4] by web21107.mail.yahoo.com via HTTP; Sun, 25 Nov 2001 06:20:30 PST Date: Sun, 25 Nov 2001 06:20:30 -0800 (PST) From: Hiten Pandya Subject: [PATCH] - categorizing (XXX Lines) in NOTES To: current@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG hi all, this patch will put an end to those XXX lines in the NOTES file, which were regarding uncategorized options.. such as USERCONFIG etc. PATCH is below... ------------------------------------------------(start) *** NOTES.old Sun Nov 25 12:54:58 2001 --- NOTES Sun Nov 25 13:11:35 2001 *************** *** 292,298 **** # # Implement system calls compatible with 4.3BSD and older versions of # FreeBSD. You probably do NOT want to remove this as much current code ! # still relies on the 4.3 emulation. # options COMPAT_43 --- 292,299 ---- # # Implement system calls compatible with 4.3BSD and older versions of # FreeBSD. You probably do NOT want to remove this as much current code ! # still relies on the 4.3 emulation.# XXX - this doesn't belong here. ! # options COMPAT_43 *************** *** 420,435 **** # options COMPILING_LINT - - # XXX - this doesn't belong here. - # Allow ordinary users to take the console - this is useful for X. - options UCONSOLE - - # XXX - this doesn't belong here either - #options USERCONFIG #boot -c editor - #options INTRO_USERCONFIG #imply -c and show intro screen - #options VISUAL_USERCONFIG #visual boot -c editor - ##################################################################### # NETWORKING OPTIONS --- 421,426 ---- *************** *** 1150,1158 **** # EISA, MCA, PCI and pccard are self identifying buses, so no hints # are needed. ! # # Mandatory devices: ! # # The keyboard controller; it controls the keyboard and the PS/2 mouse. device atkbdc 1 --- 1141,1149 ---- # EISA, MCA, PCI and pccard are self identifying buses, so no hints # are needed. ! #------------------------------------------------------------------------------ # Mandatory devices: ! #------------------------------------------------------------------------------ # The keyboard controller; it controls the keyboard and the PS/2 mouse. device atkbdc 1 *************** *** 1189,1194 **** --- 1180,1189 ---- #for some laptops options PSM_RESETAFTERSUSPEND #reset the device at the resume event + #------------------------------------------------------------------------------ + # Video/Display Related Configuration Options + #------------------------------------------------------------------------------ + # The video card driver. device vga hint.vga.0.at="isa" *************** *** 1231,1236 **** --- 1226,1238 ---- device star_saver device warp_saver + #------------------------------------------------------------------------------ + # Console Related Configuration Options + #------------------------------------------------------------------------------ + + # Allow ordinary users to take the console - this is useful for X. + options UCONSOLE + # The pcvt console driver (vt220 compatible). device vt hint.vt.0.at="isa" *************** *** 1347,1355 **** device acpica options ACPI_DEBUG ! # # Optional devices: ! # # # SCSI host adapters: --- 1349,1357 ---- device acpica options ACPI_DEBUG ! #------------------------------------------------------------------------------ # Optional devices: ! #------------------------------------------------------------------------------ # # SCSI host adapters: *************** *** 2891,2897 **** --- 2893,2905 ---- options PANIC_REBOOT_WAIT_TIME=16 ##################################################################### + # MISCELLENEOUS OPTIONS + #options USERCONFIG #boot -c editor + #options INTRO_USERCONFIG #imply -c and show intro screen + #options VISUAL_USERCONFIG #visual boot -c editor + + ##################################################################### # More undocumented options for linting. # Note that documenting these are not considered an affront. *************** *** 2955,2958 **** options VM_KMEM_SIZE options VM_KMEM_SIZE_MAX ! options VM_KMEM_SIZE_SCALE --- 2963,2966 ---- options VM_KMEM_SIZE options VM_KMEM_SIZE_MAX ! options VM_KMEM_SIZE_SCALE -----------------------------------------------(end) ===== regards, Hiten Pandya MOTD: I just like _pumping_ the daylights out of a PENGUIN!!! __________________________________________________ Do You Yahoo!? Yahoo! GeoCities - quick and easy web site hosting, just $8.95/month. http://geocities.yahoo.com/ps/info1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Nov 25 6:49:12 2001 Delivered-To: freebsd-current@freebsd.org Received: from iguana.aciri.org (iguana.aciri.org [192.150.187.36]) by hub.freebsd.org (Postfix) with ESMTP id 7354B37B405; Sun, 25 Nov 2001 06:49:09 -0800 (PST) Received: (from rizzo@localhost) by iguana.aciri.org (8.11.3/8.11.1) id fAPEiwk76287; Sun, 25 Nov 2001 06:44:58 -0800 (PST) (envelope-from rizzo) Date: Sun, 25 Nov 2001 06:44:58 -0800 From: Luigi Rizzo To: Bruce Evans Cc: Peter Wemm , Mike Smith , John Baldwin , current@FreeBSD.ORG Subject: Re: where is the idle_loop in current ? Message-ID: <20011125064458.A76206@iguana.aciri.org> References: <20011124023142.9BB70380D@overcee.netplex.com.au> <20011125195537.X5075-100000@delplex.bde.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20011125195537.X5075-100000@delplex.bde.org> User-Agent: Mutt/1.3.23i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Now, the whole problem here seems to be that kernel threads are not preemptable, which is something that worries me a bit because in CURRENT we use them for interrupt handlers as well, and those used to be preemptable (subject to spl masks) in RELENG_4. On the other hand, if preemptable threads are implemented (which one of the messages in this thread suggests might occur), then things will improve even wrt RELENG_4 On Sun, Nov 25, 2001 at 09:26:51PM +1100, Bruce Evans wrote: > Anyway, I think luigi wants the non-process benefits of hacking on the > old idle loop. Sorry, the only way to get these seems to be to upgrade > to RELENG_4. which, funnily, I have already... This thread came out because in order to import my polling stuff in the tree (see my yet-unanswered request to -core), having a CURRENT version seems useful to lower resistance. I don't mind having spent the time for doing it, in the process i certainly learned something on the internals of CURRENT, but this seems to be about the only useful result of this additional work :) cheers luigi ----------------------------------+----------------------------------------- Luigi RIZZO, luigi@iet.unipi.it . ACIRI/ICSI (on leave from Univ. di Pisa) http://www.iet.unipi.it/~luigi/ . 1947 Center St, Berkeley CA 94704 Phone: (510) 666 2927 ----------------------------------+----------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Nov 25 7: 4:59 2001 Delivered-To: freebsd-current@freebsd.org Received: from castle.jp.freebsd.org (castle.jp.FreeBSD.org [210.226.20.15]) by hub.freebsd.org (Postfix) with ESMTP id 0A68337B416 for ; Sun, 25 Nov 2001 07:04:52 -0800 (PST) Received: from localhost (localhost [127.0.0.1]) by castle.jp.freebsd.org (8.9.3+3.2W/8.7.3) with ESMTP id AAA19334 for ; Mon, 26 Nov 2001 00:04:50 +0900 (JST) (envelope-from matusita@jp.FreeBSD.org) In-Reply-To: <20011122002140I.matusita@jp.FreeBSD.org> References: <20011121012432J.matusita@jp.FreeBSD.org> <20011121034444O.matusita@jp.FreeBSD.org> <20011122002140I.matusita@jp.FreeBSD.org> X-User-Agent: Mew/1.94.2 XEmacs/21.5 (alfalfa) X-FaceAnim: (-O_O-)(O_O- )(_O- )(O- )(- -)( -O)( -O_)( -O_O)(-O_O-) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Dispatcher: imput version 20000228(IM140) Lines: 154 From: Makoto Matsushita To: current@freebsd.org Subject: RE: Sysinstall is still horribly broken. Date: Mon, 26 Nov 2001 00:04:47 +0900 Message-Id: <20011126000447F.matusita@jp.FreeBSD.org> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG matusita> OK, a patch is attached below. Sorry, forget to add the patch... try again. If anybody test with boot floppies, available at http://people.FreeBSD.org/~matusita/5.0-CURRENT-20011121-JPSNAP_usedevfs/, please let me know your results. -- - 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 -0000 1.309 --- install.c 21 Nov 2001 02:22:00 -0000 *************** *** 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,967 ---- msgConfirm("Unable to mount the root file system on %s! Giving up.", dname); return DITEM_FAILURE | DITEM_RESTORE; } + + 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; + } + + /* Mount devfs for other partitions to mount */ + Mkdir("/mnt/dev"); + if (!Fake) + mount("devfs", "/mnt/dev", 0, NULL); } /* 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) { --- 975,980 ---- *************** *** 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); --- 989,995 ---- 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, Mount, c2->name); *************** *** 1015,1032 **** } } - if (RunningAsInit) { - 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; - } - } - command_sort(); command_execute(); dialog_clear_norefresh(); return DITEM_SUCCESS | DITEM_RESTORE; } --- 1021,1032 ---- } } command_sort(); command_execute(); + if (rootdev && RunningAsInit) { + if (!Fake) + unmount("/mnt/dev", MNT_FORCE); + } dialog_clear_norefresh(); return DITEM_SUCCESS | DITEM_RESTORE; } Index: boot_crunch.conf =================================================================== RCS file: /pub/snapshots/cvsup/FreeBSD.cvs/src/release/i386/boot_crunch.conf,v retrieving revision 1.50 diff -c -r1.50 boot_crunch.conf *** boot_crunch.conf 19 Nov 2001 14:43:29 -0000 1.50 --- boot_crunch.conf 21 Nov 2001 02:13:07 -0000 *************** *** 11,21 **** progs cpio srcdirs /usr/src/sbin ! progs dhclient fsck fsck_ffs ifconfig progs mount_nfs newfs route rtsol progs slattach tunefs - ln fsck_ffs fsck_4.2bsd - ln fsck_ffs fsck_ufs srcdirs /usr/src/usr.bin progs find minigzip sed --- 11,19 ---- progs cpio srcdirs /usr/src/sbin ! progs dhclient fsck_ffs ifconfig progs mount_nfs newfs route rtsol progs slattach tunefs srcdirs /usr/src/usr.bin progs find minigzip sed To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Nov 25 13:41:29 2001 Delivered-To: freebsd-current@freebsd.org Received: from smtpzilla5.xs4all.nl (smtpzilla5.xs4all.nl [194.109.127.141]) by hub.freebsd.org (Postfix) with ESMTP id 3613437B405 for ; Sun, 25 Nov 2001 13:41:27 -0800 (PST) Received: from trantor.xs4all.nl (trantor.xs4all.nl [194.109.61.248]) by smtpzilla5.xs4all.nl (8.12.0/8.12.0) with ESMTP id fAPLfPr6043669 for ; Sun, 25 Nov 2001 22:41:25 +0100 (CET) Received: from trantor.xs4all.nl (localhost [127.0.0.1]) by trantor.xs4all.nl (8.11.6/8.9.3) with ESMTP id fAPLf1639599 for ; Sun, 25 Nov 2001 22:41:01 +0100 (MET) (envelope-from paulz@trantor.xs4all.nl) Message-Id: <200111252141.fAPLf1639599@trantor.xs4all.nl> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: current@freebsd.org Subject: df -l broken Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sun, 25 Nov 2001 22:41:01 +0100 From: Paul van der Zwan Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I noticed the -l option of the df command is broken. It is supposed to print df for local filesystems but on my system it prints nothing at all. I had a quick look at the code , as far as I can tell it uses sysctl to figure out the mounted filesystems but thinks all of them are non-local and ignores them. Using sysctl -a I could not find any entries which looked vaguely like describing a mount.. Paul -- I have discovered the art of deceiving diplomats. I tell them the truth and they never believe me. -- Camillo Di Cavour To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Nov 25 14:50:20 2001 Delivered-To: freebsd-current@freebsd.org Received: from sax.sax.de (sax.sax.de [193.175.26.33]) by hub.freebsd.org (Postfix) with ESMTP id 203EE37B416 for ; Sun, 25 Nov 2001 14:50:16 -0800 (PST) Received: (from uucp@localhost) by sax.sax.de (8.9.3/8.9.3) with UUCP id XAA10527 for freebsd-current@freebsd.org; Sun, 25 Nov 2001 23:50:15 +0100 (CET) Received: (from j@localhost) by uriah.heep.sax.de (8.11.6/8.11.6) id fAPMNls00704; Sun, 25 Nov 2001 23:23:47 +0100 (MET) (envelope-from j) Date: Sun, 25 Nov 2001 23:23:47 +0100 (MET) Message-Id: <200111252223.fAPMNls00704@uriah.heep.sax.de> Mime-Version: 1.0 X-Newsreader: knews 1.0b.1 Reply-To: joerg_wunsch@uriah.heep.sax.de (Joerg Wunsch) Organization: Private BSD site, Dresden X-Phone: +49-351-2012 669 X-PGP-Fingerprint: DC 47 E6 E4 FF A6 E9 8F 93 21 E0 7D F9 12 D6 4E References: <200111252141.fAPLf1639599@trantor.xs4all.nl> From: j@uriah.heep.sax.de (Joerg Wunsch) Subject: Re: df -l broken X-Original-Newsgroups: local.freebsd.current To: freebsd-current@freebsd.org Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Paul van der Zwan wrote: > I noticed the -l option of the df command is broken. Same for "mount -a -t local". I noticed this has been broken for more than a year now, maybe two. I've always been too lazy to investigate closer. IIRC, the last FreeBSD versions where it actually worked date back to 3.x or maybe even 2.2.x. -- cheers, J"org .-.-. --... ...-- -.. . DL8DTL http://www.sax.de/~joerg/ NIC: JW11-RIPE Never trust an operating system you don't have sources for. ;-) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Nov 25 14:53: 1 2001 Delivered-To: freebsd-current@freebsd.org Received: from odin.ac.hmc.edu (Odin.AC.HMC.Edu [134.173.32.75]) by hub.freebsd.org (Postfix) with ESMTP id E78B537B417 for ; Sun, 25 Nov 2001 14:52:59 -0800 (PST) Received: from hmc.edu (giblet.ST.HMC.Edu [134.173.60.100]) by odin.ac.hmc.edu (8.11.0/8.11.0) with ESMTP id fAPMqx832329 for ; Sun, 25 Nov 2001 14:52:59 -0800 Message-ID: <3C01764B.2030508@hmc.edu> Date: Sun, 25 Nov 2001 14:52:59 -0800 From: John McCullough User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:0.9.6) Gecko/20011120 X-Accept-Language: en-us MIME-Version: 1.0 To: current@freebsd.org Subject: cardbus help Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I'd like to get card bus working, however under 5.0-current my pcmcia controller is failing to load with the message: pccbb0: at device 15.0 on pci2 pcib2: device pccbb0 requested unsupported memory randge 0x10000000-0xffffffff (decoding 0xf4000000-0xfbffffff, 0xfff00000-0xfffff) pccbb0: Could not grab register memory any insight? or will I have the pleasure of tinkering with the kerne? thanks To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Nov 25 14:56:42 2001 Delivered-To: freebsd-current@freebsd.org Received: from bunrab.catwhisker.org (adsl-63-193-123-122.dsl.snfc21.pacbell.net [63.193.123.122]) by hub.freebsd.org (Postfix) with ESMTP id 6FCA537B416 for ; Sun, 25 Nov 2001 14:56:37 -0800 (PST) Received: (from david@localhost) by bunrab.catwhisker.org (8.11.6/8.11.6) id fAPMubV20382; Sun, 25 Nov 2001 14:56:37 -0800 (PST) (envelope-from david) Date: Sun, 25 Nov 2001 14:56:37 -0800 (PST) From: David Wolfskill Message-Id: <200111252256.fAPMubV20382@bunrab.catwhisker.org> To: current@FreeBSD.ORG, paulz@trantor.xs4all.nl Subject: Re: df -l broken In-Reply-To: <200111252141.fAPLf1639599@trantor.xs4all.nl> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG >Date: Sun, 25 Nov 2001 22:41:01 +0100 >From: Paul van der Zwan >I noticed the -l option of the df command is broken.... That differs from my experience: d141[1] df -l Filesystem 1K-blocks Used Avail Capacity Mounted on /dev/ad0s3a 158783 93919 52162 64% / devfs 1 1 0 100% /dev /dev/ad0s1a 158767 65260 80806 45% /S1 /dev/ad0s1e 1871095 1059572 661836 62% /S1/usr /dev/ad0s2a 158767 103945 42121 71% /S2 /dev/ad0s2e 1871095 804588 916820 47% /S2/usr /dev/ad0s3e 1870751 1172006 549085 68% /usr /dev/ad0s3g 1016303 58597 876402 6% /var /dev/ad0s3h 10277074 5916668 3538241 63% /common procfs 4 4 0 100% /proc /dev/md10c 520140 24 478508 0% /tmp d141[2] uname -a FreeBSD d141.catwhisker.org 5.0-CURRENT FreeBSD 5.0-CURRENT #182: Sun Nov 25 10: 59:43 PST 2001 root@d141.catwhisker.org:/common/S3/obj/usr/src/sys/LAPTOP_30 W i386 d141[3] ssh freebeast tail /var/log/cvsup-history.log CVSup begin from cvsup13.freebsd.org at Wed Nov 21 03:47:15 PST 2001 CVSup ended from cvsup13.freebsd.org at Wed Nov 21 03:53:35 PST 2001 CVSup begin from cvsup14.freebsd.org at Thu Nov 22 03:47:02 PST 2001 CVSup ended from cvsup14.freebsd.org at Thu Nov 22 03:53:07 PST 2001 CVSup begin from cvsup14.freebsd.org at Fri Nov 23 03:47:02 PST 2001 CVSup ended from cvsup14.freebsd.org at Fri Nov 23 03:53:23 PST 2001 CVSup begin from cvsup14.freebsd.org at Sat Nov 24 03:47:06 PST 2001 CVSup ended from cvsup14.freebsd.org at Sat Nov 24 03:53:47 PST 2001 CVSup begin from cvsup14.freebsd.org at Sun Nov 25 03:47:02 PST 2001 CVSup ended from cvsup14.freebsd.org at Sun Nov 25 03:52:57 PST 2001 d141[4] Cheers, david -- David H. Wolfskill david@catwhisker.org As a computing professional, I believe it would be unethical for me to advise, recommend, or support the use (save possibly for personal amusement) of any product that is or depends on any Microsoft product. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Nov 25 15: 5:42 2001 Delivered-To: freebsd-current@freebsd.org Received: from noos.fr (r178m112.cybercable.tm.fr [195.132.178.112]) by hub.freebsd.org (Postfix) with ESMTP id 4959537B417 for ; Sun, 25 Nov 2001 15:05:33 -0800 (PST) Received: (from mux@localhost) by noos.fr (8.11.6/8.11.4) id fAPN5VN07199; Mon, 26 Nov 2001 00:05:31 +0100 (CET) (envelope-from mux) Date: Mon, 26 Nov 2001 00:05:31 +0100 From: Maxime Henrion To: current@FreeBSD.org Cc: Paul van der Zwan Subject: Re: df -l broken Message-ID: <20011126000531.A280@nebula.noos.fr> References: <200111252141.fAPLf1639599@trantor.xs4all.nl> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="eAbsdosE1cNLO4uF" Content-Disposition: inline In-Reply-To: <200111252141.fAPLf1639599@trantor.xs4all.nl> User-Agent: Mutt/1.3.23i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --eAbsdosE1cNLO4uF Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Paul van der Zwan wrote: > > I noticed the -l option of the df command is broken. It is supposed to > print df for local filesystems but on my system it prints nothing at all. > I had a quick look at the code , as far as I can tell it uses sysctl to > figure out the mounted filesystems but thinks all of them are non-local and > ignores them. > Using sysctl -a I could not find any entries which looked vaguely like > describing a mount.. > > Paul Could you please test the attached patch ? I did it in a hurry but it may fix the problem. Thanks, Maxime Henrion -- Don't be fooled by cheap finnish imitations ; BSD is the One True Code --eAbsdosE1cNLO4uF Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="df.patch" Index: df.c =================================================================== RCS file: /home/ncvs/src/bin/df/df.c,v retrieving revision 1.32 diff -u -r1.32 df.c --- df.c 1 Aug 2001 02:09:09 -0000 1.32 +++ df.c 25 Nov 2001 22:57:49 -0000 @@ -561,7 +561,8 @@ *strptr = ','; free(listptr[i]); } - *(--strptr) = NULL; + if (i > 0) + *(--strptr) = NULL; free(listptr); return (str); --eAbsdosE1cNLO4uF-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Nov 25 15: 7:30 2001 Delivered-To: freebsd-current@freebsd.org Received: from noos.fr (r178m112.cybercable.tm.fr [195.132.178.112]) by hub.freebsd.org (Postfix) with ESMTP id D9BF837B405 for ; Sun, 25 Nov 2001 15:07:23 -0800 (PST) Received: (from mux@localhost) by noos.fr (8.11.6/8.11.4) id fAPN7M307220; Mon, 26 Nov 2001 00:07:22 +0100 (CET) (envelope-from mux) Date: Mon, 26 Nov 2001 00:07:22 +0100 From: Maxime Henrion To: current@FreeBSD.org Cc: David Wolfskill Subject: Re: df -l broken Message-ID: <20011126000722.B280@nebula.noos.fr> References: <200111252141.fAPLf1639599@trantor.xs4all.nl> <200111252256.fAPMubV20382@bunrab.catwhisker.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200111252256.fAPMubV20382@bunrab.catwhisker.org> User-Agent: Mutt/1.3.23i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG David Wolfskill wrote: > >Date: Sun, 25 Nov 2001 22:41:01 +0100 > >From: Paul van der Zwan > > >I noticed the -l option of the df command is broken.... > > That differs from my experience: > > d141[1] df -l > Filesystem 1K-blocks Used Avail Capacity Mounted on > /dev/ad0s3a 158783 93919 52162 64% / > devfs 1 1 0 100% /dev > /dev/ad0s1a 158767 65260 80806 45% /S1 > /dev/ad0s1e 1871095 1059572 661836 62% /S1/usr > /dev/ad0s2a 158767 103945 42121 71% /S2 > /dev/ad0s2e 1871095 804588 916820 47% /S2/usr > /dev/ad0s3e 1870751 1172006 549085 68% /usr > /dev/ad0s3g 1016303 58597 876402 6% /var > /dev/ad0s3h 10277074 5916668 3538241 63% /common > procfs 4 4 0 100% /proc > /dev/md10c 520140 24 478508 0% /tmp [...] If my patch is exact, then the bug should manifest itself only if there are no network filesystems mounted. Do you have any network fs mounted on your box ? Thanks, Maxime Henrion -- Don't be fooled by cheap finnish imitations ; BSD is the One True Code To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Nov 25 15:19:33 2001 Delivered-To: freebsd-current@freebsd.org Received: from mgo.iij.ad.jp (mgo.iij.ad.jp [202.232.15.6]) by hub.freebsd.org (Postfix) with ESMTP id 9765637B405; Sun, 25 Nov 2001 15:19:14 -0800 (PST) Received: from ns.iij.ad.jp (ns.iij.ad.jp [192.168.2.8]) by mgo.iij.ad.jp (8.8.8/MGO1.0) with ESMTP id IAA02425; Mon, 26 Nov 2001 08:19:12 +0900 (JST) Received: from fs.iij.ad.jp (root@fs.iij.ad.jp [192.168.2.9]) by ns.iij.ad.jp (8.8.5/3.5Wpl7) with ESMTP id IAA19935; Mon, 26 Nov 2001 08:19:12 +0900 (JST) Received: from localhost (shigeru@mercury.iij.ad.jp [192.168.4.89]) by fs.iij.ad.jp (8.8.5/3.5Wpl7) with ESMTP id IAA21582; Mon, 26 Nov 2001 08:19:12 +0900 (JST) Date: Mon, 26 Nov 2001 08:19:12 +0900 (JST) Message-Id: <20011126.081912.33968257.shigeru@iij.ad.jp> To: freebsd-mobile@freebsd.org Cc: freebsd-current@freebsd.org Subject: patch to support sio with NEWCARD From: YAMAMOTO Shigeru X-Mailer: Mew version 2.0 pre1 on Emacs 20.7 / Mule 4.0 (HANANOEN) Mime-Version: 1.0 Content-Type: Multipart/Mixed; boundary="--Next_Part(Mon_Nov_26_08:19:12_2001_701)--" Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ----Next_Part(Mon_Nov_26_08:19:12_2001_701)-- Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Hi all, I make a patch to support sio with NEWCARD. This patch is to avoid ghost interrupt when a PC-Card was removed. This patch has one assamption, - all Serial PC-Card have a 16450/16550 compatible interface. I tested it on my NotePC and there is no problems. Please try it if you have an interest. Thanks, ------- YAMAMOTO Shigeru ----Next_Part(Mon_Nov_26_08:19:12_2001_701)-- Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="sio.diff" Index: sys/dev/sio/sio.c =================================================================== RCS file: /share/cvsup/FreeBSD/current/usr/src/sys/dev/sio/sio.c,v retrieving revision 1.352 diff -u -r1.352 sio.c --- sys/dev/sio/sio.c 24 Oct 2001 18:30:04 -0000 1.352 +++ sys/dev/sio/sio.c 23 Nov 2001 10:41:30 -0000 @@ -1466,7 +1466,24 @@ com = (struct com_s *)arg; mtx_lock_spin(&sio_lock); - siointr1(com); + while (!com->gone) { + u_int8_t iir = 0; + + iir = inb(com->int_id_port); +/* +printf(__FUNCTION__ ":%d: iir = 0x%x\n", __LINE__, iir); +*/ + if (iir != 0xFF) { + siointr1(com); + if ((iir & IIR_IMASK) == IIR_NOPEND) { + break; + } + } + else { +printf(__FUNCTION__ ":%d: maybe, card was remoted\n", __LINE__); + break; + } + } mtx_unlock_spin(&sio_lock); #else /* COM_MULTIPORT */ bool_t possibly_more_intrs; @@ -1483,6 +1500,8 @@ do { possibly_more_intrs = FALSE; for (unit = 0; unit < sio_numunits; ++unit) { + u_int8_t iir = 0; + com = com_addr(unit); /* * XXX COM_LOCK(); @@ -1490,8 +1509,9 @@ */ if (com != NULL && !com->gone - && (inb(com->int_id_port) & IIR_IMASK) - != IIR_NOPEND) { + && ((iir = inb(com->int_id_port)) & IIR_IMASK) + != IIR_NOPEND + && iir != 0xFF) { siointr1(com); possibly_more_intrs = TRUE; } @@ -1530,9 +1550,8 @@ } } line_status = inb(com->line_status_port); - /* input event? (check first to help avoid overruns) */ - while (line_status & LSR_RCV_MASK) { + while ((line_status & LSR_RCV_MASK)) { /* break/unnattached error bits or real input? */ if (!(line_status & LSR_RXRDY)) recv_data = 0; @@ -1718,10 +1737,12 @@ } } +#if 0 /* finished? */ #ifndef COM_MULTIPORT if ((inb(com->int_id_port) & IIR_IMASK) == IIR_NOPEND) #endif /* COM_MULTIPORT */ +#endif return; } } Index: sys/dev/sio/sio_pccard.c =================================================================== RCS file: /share/cvsup/FreeBSD/current/usr/src/sys/dev/sio/sio_pccard.c,v retrieving revision 1.1 diff -u -r1.1 sio_pccard.c --- sys/dev/sio/sio_pccard.c 23 Oct 2001 15:17:33 -0000 1.1 +++ sys/dev/sio/sio_pccard.c 24 Nov 2001 05:29:25 -0000 @@ -40,18 +40,28 @@ #include #include +#include +#include +#include + #include -static int sio_pccard_attach __P((device_t dev)); -static int sio_pccard_detach __P((device_t dev)); -static int sio_pccard_probe __P((device_t dev)); +static int sio_pccard_match __P((device_t self)); +static int sio_pccard_probe __P((device_t self)); +static int sio_pccard_attach __P((device_t self)); +static int sio_pccard_detach __P((device_t self)); static device_method_t sio_pccard_methods[] = { /* Device interface */ - DEVMETHOD(device_probe, sio_pccard_probe), - DEVMETHOD(device_attach, sio_pccard_attach), + DEVMETHOD(device_probe, pccard_compat_probe), + DEVMETHOD(device_attach, pccard_compat_attach), DEVMETHOD(device_detach, sio_pccard_detach), + /* Card interface */ + DEVMETHOD(card_compat_match, sio_pccard_match), + DEVMETHOD(card_compat_probe, sio_pccard_probe), + DEVMETHOD(card_compat_attach, sio_pccard_attach), + { 0, 0 } }; @@ -61,27 +71,53 @@ sizeof(struct com_s), }; -static int -sio_pccard_probe(dev) - device_t dev; -{ +static +int +sio_pccard_match(device_t self) { + int error = 0; + u_int32_t fcn = PCCARD_FUNCTION_UNSPEC; + + error = pccard_get_function(self, &fcn); + if (!error) { + switch (fcn) { + case PCCARD_FUNCTION_SERIAL: + /* match? */ + error = 0; + break; + + default: + error = EINVAL; + break; + } + } + + return(error); +} + +static +int +sio_pccard_probe(device_t self) { + int error = 0; + /* Do not probe IRQ - pccard doesn't turn on the interrupt line */ /* until bus_setup_intr */ - return (sioprobe(dev, 0, 1)); + error = sioprobe(self, 0, 1); + return(error); } -static int -sio_pccard_attach(dev) - device_t dev; -{ - return (sioattach(dev, 0)); +static +int +sio_pccard_attach(device_t self) { + int error = 0; + + error = sioattach(self, 0); + return(error); } -static int -sio_pccard_detach(dev) - device_t dev; -{ - return (siodetach(dev)); +static +int +sio_pccard_detach(device_t self) { + return(siodetach(self)); } DRIVER_MODULE(sio, pccard, sio_pccard_driver, sio_devclass, 0, 0); ----Next_Part(Mon_Nov_26_08:19:12_2001_701)---- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Nov 25 15:51:26 2001 Delivered-To: freebsd-current@freebsd.org Received: from peter3.wemm.org (c1315225-a.plstn1.sfba.home.com [24.14.150.180]) by hub.freebsd.org (Postfix) with ESMTP id 5C3E137B41A; Sun, 25 Nov 2001 15:51:22 -0800 (PST) Received: from overcee.netplex.com.au (overcee.wemm.org [10.0.0.3]) by peter3.wemm.org (8.11.0/8.11.0) with ESMTP id fAPNpMM69299; Sun, 25 Nov 2001 15:51:22 -0800 (PST) (envelope-from peter@wemm.org) Received: from wemm.org (localhost [127.0.0.1]) by overcee.netplex.com.au (Postfix) with ESMTP id 0FD1238CC; Sun, 25 Nov 2001 15:51:22 -0800 (PST) (envelope-from peter@wemm.org) X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Luigi Rizzo Cc: Bruce Evans , Mike Smith , John Baldwin , current@FreeBSD.ORG Subject: Re: where is the idle_loop in current ? In-Reply-To: <20011125064458.A76206@iguana.aciri.org> Date: Sun, 25 Nov 2001 15:51:22 -0800 From: Peter Wemm Message-Id: <20011125235122.0FD1238CC@overcee.netplex.com.au> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Luigi Rizzo wrote: > Now, the whole problem here seems to be that kernel threads > are not preemptable, which is something that worries me a > bit because in CURRENT we use them for interrupt handlers as > well, and those used to be preemptable (subject to spl masks) > in RELENG_4. No, the kernel in general isn't preemptable in that a higher priority process that becomes runnable will not run until the lower priority process either blocks, returns to userland, or yields the cpu. Interrupt threads are special in that they will preempt a process that is in kernel context. This is not the same as a higher priority process being woken up with wakeup(). The problems in vm_zeroidle come from trying to avoid changing both the mechanism and the work algorithm at the same time. The mechanism got switched over, and now it is time to fix the algorithms to deal with that. Bruce has written about this elsewhere. Interrupts still preempt just like on releng_4, but subject to the &Giant. Obviously this means that a non-mpsafe interrupt cannot do anything useful if it interrupts non-mpsafe code as it will immediately block on &Giant. Audio is an example of something that *is* mpsafe though and can preempt just about anything in the kernel, even on another CPU. The idle processes are special in -current. What I said about them not being able to do anything isn't quite correct. The restriction is that they cannot, and must not, block. This means they cannot tsleep or get a mutex. And since they run outside Giant, that means they cannot go anywhere near the non-mpsafe parts of the kernel, such as the network stack or drivers. That means, unfortunately, that you have no choice in -current. It has to be and idle priority process. A side effect of that means that there is no longer a reason that it cannot be machine independent and SMP safe. > On the other hand, if preemptable threads are implemented > (which one of the messages in this thread suggests might > occur), then things will improve even wrt RELENG_4 It simplifies things a lot. It means that the ugly hacks to yield the cpu in things like vm_pagezero can go away entirely. It makes life a lot easier for people wanting to do idle priority work. > On Sun, Nov 25, 2001 at 09:26:51PM +1100, Bruce Evans wrote: > > > Anyway, I think luigi wants the non-process benefits of hacking on the > > old idle loop. Sorry, the only way to get these seems to be to upgrade > > to RELENG_4. > > which, funnily, I have already... This thread came out because in > order to import my polling stuff in the tree (see my yet-unanswered > request to -core), having a CURRENT version seems useful to lower > resistance. Because we haven't seen the cleaned up, -current version yet. We told you before that we had issues with the style bugs etc. We cant give you a blanket commit approval without seeing it first. > I don't mind having spent the time for doing it, in the process i > certainly learned something on the internals of CURRENT, but this > seems to be about the only useful result of this additional work :) > > cheers > luigi > ----------------------------------+----------------------------------------- > Luigi RIZZO, luigi@iet.unipi.it . ACIRI/ICSI (on leave from Univ. di Pisa) > http://www.iet.unipi.it/~luigi/ . 1947 Center St, Berkeley CA 94704 > Phone: (510) 666 2927 > ----------------------------------+----------------------------------------- > > Cheers, -Peter -- Peter Wemm - peter@FreeBSD.org; peter@yahoo-inc.com; peter@netplex.com.au "All of this is for nothing if we don't go to the stars" - JMS/B5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Nov 25 15:53:58 2001 Delivered-To: freebsd-current@freebsd.org Received: from mass.dis.org (mass.dis.org [216.240.45.41]) by hub.freebsd.org (Postfix) with ESMTP id 2AD9C37B405 for ; Sun, 25 Nov 2001 15:53:54 -0800 (PST) Received: from mass.dis.org (localhost [127.0.0.1]) by mass.dis.org (8.11.6/8.11.3) with ESMTP id fAPNvIM02571; Sun, 25 Nov 2001 15:57:22 -0800 (PST) (envelope-from msmith@mass.dis.org) Message-Id: <200111252357.fAPNvIM02571@mass.dis.org> X-Mailer: exmh version 2.1.1 10/15/1999 To: John McCullough Cc: current@freebsd.org Subject: Re: cardbus help In-reply-to: Your message of "Sun, 25 Nov 2001 14:52:59 PST." <3C01764B.2030508@hmc.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sun, 25 Nov 2001 15:57:18 -0800 From: Mike Smith Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > I'd like to get card bus working, however under 5.0-current my pcmcia > controller is failing to load with the message: > > pccbb0: at device 15.0 on pci2 > pcib2: device pccbb0 requested unsupported memory randge > 0x10000000-0xffffffff (decoding 0xf4000000-0xfbffffff, 0xfff00000-0xfffff) > pccbb0: Could not grab register memory > > any insight? or will I have the pleasure of tinkering with the kerne? This is a bug in the way that the pccbb code allocates the register window when it hasn't been set up. The "real" fix actually requires the PCI code to configure the cardbus controller, but we don't do that yet (we desperately need to, though). As a workaround for you, though, try adjusting the memory that the driver requests for the register window to be based at 0xf4000000. -- ... 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 majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Nov 25 16:18:16 2001 Delivered-To: freebsd-current@freebsd.org Received: from rover.village.org (rover.bsdimp.com [204.144.255.66]) by hub.freebsd.org (Postfix) with ESMTP id 1E0ED37B417 for ; Sun, 25 Nov 2001 16:18:11 -0800 (PST) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.11.3/8.11.3) with ESMTP id fAQ0IAa96764; Sun, 25 Nov 2001 17:18:10 -0700 (MST) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost [127.0.0.1]) by harmony.village.org (8.11.6/8.11.6) with ESMTP id fAQ0I9750531; Sun, 25 Nov 2001 17:18:09 -0700 (MST) (envelope-from imp@harmony.village.org) Message-Id: <200111260018.fAQ0I9750531@harmony.village.org> To: John McCullough Subject: Re: cardbus help Cc: current@FreeBSD.ORG In-reply-to: Your message of "Sun, 25 Nov 2001 14:52:59 PST." <3C01764B.2030508@hmc.edu> References: <3C01764B.2030508@hmc.edu> Date: Sun, 25 Nov 2001 17:18:09 -0700 From: Warner Losh Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG In message <3C01764B.2030508@hmc.edu> John McCullough writes: : I'd like to get card bus working, however under 5.0-current my pcmcia : controller is failing to load with the message: : : pccbb0: at device 15.0 on pci2 : pcib2: device pccbb0 requested unsupported memory randge : 0x10000000-0xffffffff (decoding 0xf4000000-0xfbffffff, 0xfff00000-0xfffff) : pccbb0: Could not grab register memory : : any insight? or will I have the pleasure of tinkering with the kerne? options PCI_ALLOW_UNSUPPORTED_IO_RANGE Or fix src/sys/dev/pci/pci_pci.c to properly trim the range. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Nov 25 16:20:24 2001 Delivered-To: freebsd-current@freebsd.org Received: from rover.village.org (rover.bsdimp.com [204.144.255.66]) by hub.freebsd.org (Postfix) with ESMTP id 805F637B416; Sun, 25 Nov 2001 16:20:20 -0800 (PST) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.11.3/8.11.3) with ESMTP id fAQ0KJa96780; Sun, 25 Nov 2001 17:20:19 -0700 (MST) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost [127.0.0.1]) by harmony.village.org (8.11.6/8.11.6) with ESMTP id fAQ0KI750566; Sun, 25 Nov 2001 17:20:19 -0700 (MST) (envelope-from imp@harmony.village.org) Message-Id: <200111260020.fAQ0KI750566@harmony.village.org> To: Mike Smith Subject: Re: cardbus help Cc: John McCullough , current@FreeBSD.ORG In-reply-to: Your message of "Sun, 25 Nov 2001 15:57:18 PST." <200111252357.fAPNvIM02571@mass.dis.org> References: <200111252357.fAPNvIM02571@mass.dis.org> Date: Sun, 25 Nov 2001 17:20:18 -0700 From: Warner Losh Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG In message <200111252357.fAPNvIM02571@mass.dis.org> Mike Smith writes: : This is a bug in the way that the pccbb code allocates the register : window when it hasn't been set up. The "real" fix actually requires the : PCI code to configure the cardbus controller, but we don't do that yet : (we desperately need to, though). s/cardbus controller/any device that needs memory and/or I/O addresses assigned/. : As a workaround for you, though, try adjusting the memory that the driver : requests for the register window to be based at 0xf4000000. Actually, for most people, just ignoring the error is enough to make it work. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Nov 25 16:45:52 2001 Delivered-To: freebsd-current@freebsd.org Received: from rover.village.org (rover.bsdimp.com [204.144.255.66]) by hub.freebsd.org (Postfix) with ESMTP id 37FDD37B417; Sun, 25 Nov 2001 16:45:41 -0800 (PST) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.11.3/8.11.3) with ESMTP id fAQ0jea96875; Sun, 25 Nov 2001 17:45:40 -0700 (MST) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost [127.0.0.1]) by harmony.village.org (8.11.6/8.11.6) with ESMTP id fAQ0jd753519; Sun, 25 Nov 2001 17:45:39 -0700 (MST) (envelope-from imp@harmony.village.org) Message-Id: <200111260045.fAQ0jd753519@harmony.village.org> To: YAMAMOTO Shigeru Subject: Re: patch to support sio with NEWCARD Cc: freebsd-mobile@FreeBSD.ORG, freebsd-current@FreeBSD.ORG In-reply-to: Your message of "Mon, 26 Nov 2001 08:19:12 +0900." <20011126.081912.33968257.shigeru@iij.ad.jp> References: <20011126.081912.33968257.shigeru@iij.ad.jp> Date: Sun, 25 Nov 2001 17:45:39 -0700 From: Warner Losh Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG In message <20011126.081912.33968257.shigeru@iij.ad.jp> YAMAMOTO Shigeru writes: : I make a patch to support sio with NEWCARD. : This patch is to avoid ghost interrupt when a PC-Card was removed. : : This patch has one assamption, : - all Serial PC-Card have a 16450/16550 compatible interface. This is a reasonable assumption. If not, it should be easy to tweak to return a small negative number so that other device have a chance at this hardware. : I tested it on my NotePC and there is no problems. : Please try it if you have an interest. I've tried it here too. From what I can tell in my breif tests, the interrupt patches aren't strictly required, unless you eject while the card is busy. Since bde is the main maintainer for sio, I'll clean them up a little and run them by him. The other part of the patch I went ahead and committed. I've wanted this for a while now. This would be an excellent example of how to do, for example, the ata pccard driver if someone was so inclined. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Nov 25 18:40:16 2001 Delivered-To: freebsd-current@freebsd.org Received: from odin.ac.hmc.edu (Odin.AC.HMC.Edu [134.173.32.75]) by hub.freebsd.org (Postfix) with ESMTP id F3C8937B405 for ; Sun, 25 Nov 2001 18:40:11 -0800 (PST) Received: from hmc.edu (giblet.ST.HMC.Edu [134.173.60.100]) by odin.ac.hmc.edu (8.11.0/8.11.0) with ESMTP id fAQ2eB832710 for ; Sun, 25 Nov 2001 18:40:11 -0800 Message-ID: <3C01AB8B.8090009@hmc.edu> Date: Sun, 25 Nov 2001 18:40:11 -0800 From: John McCullough User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:0.9.6) Gecko/20011120 X-Accept-Language: en-us MIME-Version: 1.0 To: current@FreeBSD.ORG Subject: Re: cardbus help References: <3C01764B.2030508@hmc.edu> <200111260018.fAQ0I9750531@harmony.village.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Warner Losh wrote: >In message <3C01764B.2030508@hmc.edu> John McCullough writes: >: I'd like to get card bus working, however under 5.0-current my pcmcia >: controller is failing to load with the message: >: >: pccbb0: at device 15.0 on pci2 >: pcib2: device pccbb0 requested unsupported memory randge >: 0x10000000-0xffffffff (decoding 0xf4000000-0xfbffffff, 0xfff00000-0xfffff) >: pccbb0: Could not grab register memory >: >: any insight? or will I have the pleasure of tinkering with the kerne? > >options PCI_ALLOW_UNSUPPORTED_IO_RANGE > >Or fix src/sys/dev/pci/pci_pci.c to properly trim the range. > >Warner > >To Unsubscribe: send mail to majordomo@FreeBSD.org >with "unsubscribe freebsd-current" in the body of the message > > although config wouldn't allow the: options PCI_ALLOW_UNSUPPORTED_IO_RANGE I put it in the COPTS and it compiled alright, but now its having problems mapping irqs pcib2: routed slot 15 INTA to irq 255 pccbb: Unable to map IRQ... panic: resouce_list_release:can't find resource Debugger("panic") ... Is this also an issue with pci_pci assigning resouces properly? Also where might I find information on pci<->cardbus behavior if I do find time to tinker with the code? thanks -johnm To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sun Nov 25 19:40:54 2001 Delivered-To: freebsd-current@freebsd.org Received: from mailout01.sul.t-online.de (mailout01.sul.t-online.com [194.25.134.80]) by hub.freebsd.org (Postfix) with ESMTP id B4C5437B416 for ; Sun, 25 Nov 2001 19:40:45 -0800 (PST) Received: from fwd01.sul.t-online.de by mailout01.sul.t-online.de with smtp id 168CdQ-00046T-01; Mon, 26 Nov 2001 04:40:44 +0100 Received: from server.rock.net (340029380333-0001@[217.224.19.196]) by fmrl01.sul.t-online.com with esmtp id 168CdM-0X1WACC; Mon, 26 Nov 2001 04:40:40 +0100 Received: from t-online.de (server [172.23.7.1]) by server.rock.net (8.12.1/Rock) with ESMTP id fAQ3eJU3008303 for ; Mon, 26 Nov 2001 04:40:19 +0100 (MET) Message-ID: <3C01B9A3.CFE7157@t-online.de> Date: Mon, 26 Nov 2001 04:40:19 +0100 From: Daniel Rock X-Mailer: Mozilla 4.76 [de] (X11; U; SunOS 5.8 i86pc) X-Accept-Language: de, en MIME-Version: 1.0 To: current@freebsd.org Subject: Bug in libalias (firewall manipulating) Content-Type: multipart/mixed; boundary="------------1ED430FD412D197DF89C8DAE" X-Sender: 340029380333-0001@t-dialin.net Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Dies ist eine mehrteilige Nachricht im MIME-Format. --------------1ED430FD412D197DF89C8DAE Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Hi, just noticed: adding dynamic rules to ipfw via PKT_ALIAS_PUNCH_FW (or the command "nat punch_fw" in ppp) doesn't work: For adding firewall rules, IP_FW_ADD requires getsockopt() instead of setsockopt(). This should also be reflected in the manual page. Below is my fix and a quick test suggest it is indeed working now. Daniel --------------1ED430FD412D197DF89C8DAE Content-Type: text/plain; charset=us-ascii; name="libalias.diff" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="libalias.diff" Index: alias_db.c =================================================================== RCS file: /data/cvs/src/lib/libalias/alias_db.c,v retrieving revision 1.47 diff -u -r1.47 alias_db.c --- alias_db.c 3 Nov 2001 11:34:09 -0000 1.47 +++ alias_db.c 26 Nov 2001 03:34:22 -0000 @@ -2688,6 +2688,7 @@ PunchFWHole(struct alias_link *link) { int r; /* Result code */ struct ip_fw rule; /* On-the-fly built rule */ + int rsz; int fwhole; /* Where to punch hole */ /* Don't do anything unless we are asked to */ @@ -2744,19 +2745,21 @@ (Code should be left even if the problem is fixed - it is a clear optimization) */ if (rule.fw_uar.fw_pts[0] != 0 && rule.fw_uar.fw_pts[1] != 0) { - r = setsockopt(fireWallFD, IPPROTO_IP, IP_FW_ADD, &rule, sizeof rule); + rsz = sizeof(rule); + r = getsockopt(fireWallFD, IPPROTO_IP, IP_FW_ADD, &rule, &rsz); #ifdef DEBUG if (r) - err(1, "alias punch inbound(1) setsockopt(IP_FW_ADD)"); + err(1, "alias punch inbound(1) getsockopt(IP_FW_ADD)"); #endif rule.fw_src = GetDestAddress(link); rule.fw_dst = GetOriginalAddress(link); rule.fw_uar.fw_pts[0] = ntohs(GetDestPort(link)); rule.fw_uar.fw_pts[1] = ntohs(GetOriginalPort(link)); - r = setsockopt(fireWallFD, IPPROTO_IP, IP_FW_ADD, &rule, sizeof rule); + rsz = sizeof(rule); + r = getsockopt(fireWallFD, IPPROTO_IP, IP_FW_ADD, &rule, &rsz); #ifdef DEBUG if (r) - err(1, "alias punch inbound(2) setsockopt(IP_FW_ADD)"); + err(1, "alias punch inbound(2) getsockopt(IP_FW_ADD)"); #endif } /* Indicate hole applied */ --------------1ED430FD412D197DF89C8DAE-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon Nov 26 0:23:49 2001 Delivered-To: freebsd-current@freebsd.org Received: from netau1.alcanet.com.au (ntp.alcanet.com.au [203.62.196.27]) by hub.freebsd.org (Postfix) with ESMTP id 339F737B416 for ; Mon, 26 Nov 2001 00:23:44 -0800 (PST) Received: from mfg1.cim.alcatel.com.au (mfg1.cim.alcatel.com.au [139.188.23.1]) by netau1.alcanet.com.au (8.9.3 (PHNE_22672)/8.9.3) with ESMTP id TAA15832 for ; Mon, 26 Nov 2001 19:23:36 +1100 (EDT) Received: from gsmx07.alcatel.com.au by cim.alcatel.com.au (PMDF V5.2-32 #37645) with ESMTP id <01KB62AZZ78G4M2BZI@cim.alcatel.com.au> for freebsd-current@freebsd.org; Mon, 26 Nov 2001 17:35:44 +1100 Received: (from jeremyp@localhost) by gsmx07.alcatel.com.au (8.11.6/8.11.6) id fAQ6Zig07790 for freebsd-current@freebsd.org; Mon, 26 Nov 2001 17:35:44 +1100 Content-return: prohibited Date: Mon, 26 Nov 2001 17:35:44 +1100 From: Peter Jeremy Subject: Panic changing screen mode with vidcontrol To: freebsd-current@freebsd.org Mail-Followup-To: freebsd-current@freebsd.org Message-id: <20011126173543.A7551@gsmx07.alcatel.com.au> MIME-version: 1.0 Content-type: text/plain; charset=us-ascii Content-disposition: inline User-Agent: Mutt/1.2.5i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Having installed a new kernel and userland from sources about a day old, my vidcontrol command now causes a panic: Fatal trap 12: page fault while in vm86 mode fault virtual address = 0xc359b fault code = user read, page not present instruction pointer = 0xc000:0x359b stack pointer = 0x0:0xf82 frame pointer = 0x0:0xfdc code segment = base 0x20000, limit 0x5004f, type 0x0 = DPL 0, pres 0, def32 0, gran 0 processor eflags = interrupt enabled, resume, vm86, IOPL = 0 current process = 57775 (vidcontrol) The backtrace shows nothing useful - gdb doesn't seem to handle tracing through vm86 :-(. The command I used was "vidcontrol 132x60" after confirming that this was listed in "vidcontrol -i mode". I have previously been using VESA_132x60, but that also panics now. Any suggestions where to look? Peter To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon Nov 26 0:26:31 2001 Delivered-To: freebsd-current@freebsd.org Received: from theinternet.com.au (c2731.kelvn1.qld.optusnet.com.au [203.164.207.8]) by hub.freebsd.org (Postfix) with ESMTP id 7D33A37B417 for ; Mon, 26 Nov 2001 00:26:26 -0800 (PST) Received: (from akm@localhost) by theinternet.com.au (8.11.6/8.11.4) id fAQ8QFi18752; Mon, 26 Nov 2001 18:26:15 +1000 (EST) (envelope-from akm) Date: Mon, 26 Nov 2001 18:26:14 +1000 From: Andrew Kenneth Milton To: Peter Jeremy Cc: freebsd-current@FreeBSD.ORG Subject: Re: Panic changing screen mode with vidcontrol Message-ID: <20011126182614.H12912@zeus.theinternet.com.au> References: <20011126173543.A7551@gsmx07.alcatel.com.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.4i In-Reply-To: <20011126173543.A7551@gsmx07.alcatel.com.au>; from Peter Jeremy on Mon, Nov 26, 2001 at 05:35:44PM +1100 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG +-------[ Peter Jeremy ]---------------------- | Having installed a new kernel and userland from sources about a day | old, my vidcontrol command now causes a panic: [snip] | The command I used was "vidcontrol 132x60" after confirming that | this was listed in "vidcontrol -i mode". I have previously been | using VESA_132x60, but that also panics now. Was X running ? I get a panic on changing to VESA modes when X is already running. -- Totally Holistic Enterprises Internet| | Andrew Milton The Internet (Aust) Pty Ltd | | ACN: 082 081 472 ABN: 83 082 081 472 | M:+61 416 022 411 | Carpe Daemon PO Box 837 Indooroopilly QLD 4068 |akm@theinternet.com.au| To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon Nov 26 2:10:21 2001 Delivered-To: freebsd-current@freebsd.org Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by hub.freebsd.org (Postfix) with ESMTP id D75F937B416; Mon, 26 Nov 2001 02:10:13 -0800 (PST) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.11.6/8.11.2) id fAQAA2m63040; Mon, 26 Nov 2001 12:10:02 +0200 (EET) (envelope-from ru) Date: Mon, 26 Nov 2001 12:10:02 +0200 From: Ruslan Ermilov To: Daniel Rock Cc: current@FreeBSD.ORG, Luigi Rizzo Subject: Re: Bug in libalias (firewall manipulating) Message-ID: <20011126121002.A61002@sunbay.com> References: <3C01B9A3.CFE7157@t-online.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <3C01B9A3.CFE7157@t-online.de> User-Agent: Mutt/1.3.23i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, Nov 26, 2001 at 04:40:19AM +0100, Daniel Rock wrote: > Hi, > > just noticed: > > adding dynamic rules to ipfw via PKT_ALIAS_PUNCH_FW (or the command > "nat punch_fw" in ppp) doesn't work: > For adding firewall rules, IP_FW_ADD requires getsockopt() instead of > setsockopt(). > > This should also be reflected in the manual page. > > Below is my fix and a quick test suggest it is indeed working now. > Fixed in 5.0-CURRENT, sys/netinet/raw_ip.c,v 1.88. Fixed in 4.4-STABLE, sys/netinet/raw_ip.c,v 1.64.2.10. Thanks for the report! Cheers, -- Ruslan Ermilov Oracle Developer/DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon Nov 26 5:37:19 2001 Delivered-To: freebsd-current@freebsd.org Received: from eken2.eken.phys.nagoya-u.ac.jp (eken2.eken.phys.nagoya-u.ac.jp [133.6.121.2]) by hub.freebsd.org (Postfix) with ESMTP id CFC6F37B417; Mon, 26 Nov 2001 05:37:14 -0800 (PST) Received: from e-ppp0.eken.phys.nagoya-u.ac.jp (e-ppp9.eken.phys.nagoya-u.ac.jp [133.6.121.59]) by eken2.eken.phys.nagoya-u.ac.jp (8.11.6+3.4W/3.7W-E) with ESMTP id fAQDbDB17166; Mon, 26 Nov 2001 22:37:13 +0900 (JST) Date: Mon, 26 Nov 2001 22:39:00 +0900 Message-ID: <86herh4por.wl@eken.phys.nagoya-u.ac.jp> From: Yoichi NAKAYAMA To: Jonathan Chen , Warner Losh Cc: current@FreeBSD.ORG Subject: Re: 3CXFE575CT-JP with NEWCARD doesn't work In-Reply-To: References: <86n14cms6f.wl@e-ppp8.eken.phys.nagoya-u.ac.jp> <20010905114730.C28669@enterprise.spock.org> User-Agent: Wanderlust/2.7.6 (Too Funky) EMIKO/1.14.1 (Choanoflagellata) LIMIT/1.14.7 (Fujiidera) APEL/10.3 MULE XEmacs/21.5 (beta3) (asparagus) (i386-unknown-freebsd4.3) Organization: E-ken, Dept. of Physics, Nagoya University, JAPAN X-Face: wLZki+KbGjgKe0,<&3g*rA|R**vj[a8L%[v]ecJh1L(Uqm|LBx;v7Nq7n%?0d.aS]F#[~C\!{m?m,C&#U5}$_pZvBR>5VmX1Ol0`P\M-U8`sUF<5Quj'z&zzW8r|Zl9#W7Wut3duYzpKrP{n+AbarKtJ!i"Al7]P;-?[=iBZa*]r=>C':0~JECx]IH+RXq=/hUX}MB9e]oQKBxsDd/ X-Face-Version: X-Face utility v1.3.6.13 - "Eleanor Rigby (remix)" X-Fortune: =?ISO-2022-JP?B?GyRCOiNGfCROJF8kOiQsJGE6QiRPOD08QiROTngbKEI=?= =?ISO-2022-JP?B?GyRCJCskaUYoSHIkNyRGJDckXiQkJD0kJiRKRnwhIxsoQg==?= X-Weather: =?ISO-2022-JP?B?GyRCTEBGfCROMCZDTjgpJE9GXjt+ITlAMiRHJDkbKEI=?= / =?ISO-2022-JP?B?GyRCTEBGfCROOzA9RTgpJE9GXjt+ITlAMiRHJDkbKEI=?= MIME-Version: 1.0 (generated by EMIKO 1.14.1 - "Choanoflagellata") Content-Type: text/plain; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > At Wed, 5 Sep 2001 11:47:30 -0400, > Jonathan Chen wrote: > > On Mon, Sep 03, 2001 at 08:26:16PM +0900, Yoichi NAKAYAMA wrote: > > > I just cvsup'ed and buildkernel with NEWCARD. > > > Then my note book doesn't recognize MAC address of the card(3CXFE575CT-JP) > > > following are concerning log for new kernel and old kernel(cvsup'ed 2-3 weeks ago) > > > > This looks like it could have been caused by my moving the default io > > range around. The IO port assigned to your card could be in conflict with > > something else. Try the following patch, which reverts to the old range. > > > > It would be really nice if the pci bus code could just do these assignments > > automagically... > > > > Index: pccbb.c > > =================================================================== > > RCS file: /export/ncvs/src/sys/dev/pccbb/pccbb.c,v > > retrieving revision 1.24 > > diff -u -r1.24 pccbb.c > > --- pccbb.c 2001/08/27 11:23:05 1.24 > > +++ pccbb.c 2001/09/05 15:44:45 > > @@ -1243,8 +1243,8 @@ > > start = end = tmp; > > break; > > case SYS_RES_IOPORT: > > - if (start <= 0x1000) > > - start = 0x1000; > > + if (start <= 0x3000) > > + start = 0x3000; > > if (end < start) > > end = start; > > break; I think this trouble can be easily solved if we can controll PCCBB_START_IO as we can controll PCCBB_START_MEM by last change: ; revision 1.31 ; date: 2001/11/26 07:17:09; author: imp; state: Exp; lines: +16 -5 ; Make the start memory address that we use configurable via a boot ; loader parameter. This allows us to more easily boot on big memory ; configuration machines. hw.pccbb.start_mem. Reflect this in a sysctl ; so we can read it from userland. Is it my misunderstanding? -- Yoichi Nakayama To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon Nov 26 6:18:43 2001 Delivered-To: freebsd-current@freebsd.org Received: from ns.kobe1995.net (211.12.126.15.user.dt.il24.net [211.12.126.15]) by hub.freebsd.org (Postfix) with ESMTP id F23B737B405 for ; Mon, 26 Nov 2001 06:18:39 -0800 (PST) Received: (from kaz@localhost) by ns.kobe1995.net (8.8.8/3.7W-primary) id XAA21712; Mon, 26 Nov 2001 23:18:15 +0900 (JST) Date: Mon, 26 Nov 2001 23:18:15 +0900 (JST) Message-Id: <200111261418.XAA21712@ns.kobe1995.net> To: mux@qualys.com Cc: current@FreeBSD.org, david@catwhisker.org Subject: Re: df -l broken In-Reply-To: Your message of "Mon, 26 Nov 2001 00:07:22 +0100". <20011126000722.B280@nebula.noos.fr> From: kaz@kobe1995.net (NAKAMURA Kazushi) X-Mailer: mnews [version 1.20] 1996-12/08(Sun) Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG In my dual Pentium3/1GHz box: % uname -a FreeBSD mako.kobe1995.net 5.0-CURRENT-20010830-JPSNAP FreeBSD 5.0-CURRENT-20010830-JPSNAP #9: Sat Nov 3 17:05:25 JST 2001 kaz@pilo.kobe1995.net:/usr/obj/usr/src/sys/KOBE5SMP i386 % df -l Filesystem 1K-blocks Used Avail Capacity Mounted on /dev/da0s1a 127023 57215 59647 49% / devfs 1 1 0 100% /dev /dev/da0s1e 3935347 112806 3507714 3% /usr /dev/da0s2a 127023 34689 82173 30% /altroot procfs 4 4 0 100% /proc % In article <20011126000722.B280@nebula.noos.fr> mux@qualys.com writes: >If my patch is exact, then the bug should manifest itself only if there >are no network filesystems mounted. Do you have any network fs mounted >on your box ? % df Filesystem 1K-blocks Used Avail Capacity Mounted on /dev/da0s1a 127023 57215 59647 49% / devfs 1 1 0 100% /dev /dev/da0s1e 3935347 112806 3507714 3% /usr /dev/da0s2a 127023 34689 82173 30% /altroot procfs 4 4 0 100% /proc ace:/home 2318686 1079119 1054073 51% /home ace:/var/mail 63567 65 58417 0% /var/mail safa:/mnt 113956615 104840086 0 100% /mnt safa:/usr/local 1016047 960532 55515 95% /usr/local safa:/usr/X11R6 1016047 960532 55515 95% /usr/X11R6 safa:/mnt/ftp/pub/obj 113956615 104840086 0 100% /usr/obj -- NAKAMURA Kazushi@KOBE - Break the hate chain. No more kill! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon Nov 26 7: 9:56 2001 Delivered-To: freebsd-current@freebsd.org Received: from rover.village.org (rover.bsdimp.com [204.144.255.66]) by hub.freebsd.org (Postfix) with ESMTP id A7B6037B419; Mon, 26 Nov 2001 07:09:48 -0800 (PST) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.11.3/8.11.3) with ESMTP id fAQF9la99730; Mon, 26 Nov 2001 08:09:47 -0700 (MST) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost [127.0.0.1]) by harmony.village.org (8.11.6/8.11.6) with ESMTP id fAQF9lM03668; Mon, 26 Nov 2001 08:09:47 -0700 (MST) (envelope-from imp@harmony.village.org) Message-Id: <200111261509.fAQF9lM03668@harmony.village.org> To: Yoichi NAKAYAMA Subject: Re: 3CXFE575CT-JP with NEWCARD doesn't work Cc: Jonathan Chen , current@FreeBSD.ORG In-reply-to: Your message of "Mon, 26 Nov 2001 22:39:00 +0900." <86herh4por.wl@eken.phys.nagoya-u.ac.jp> References: <86herh4por.wl@eken.phys.nagoya-u.ac.jp> <86n14cms6f.wl@e-ppp8.eken.phys.nagoya-u.ac.jp> <20010905114730.C28669@enterprise.spock.org> Date: Mon, 26 Nov 2001 08:09:47 -0700 From: Warner Losh Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG In message <86herh4por.wl@eken.phys.nagoya-u.ac.jp> Yoichi NAKAYAMA writes: : I think this trouble can be easily solved if we can controll : PCCBB_START_IO as we can controll PCCBB_START_MEM by last change: Yes. That would be true. I didn't do it with that commit. I'll go ahead and do it for I/O. It may change because pccbb uses a different I/O address range for 16-bit vs 32-bit. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon Nov 26 7:26:25 2001 Delivered-To: freebsd-current@freebsd.org Received: from noc1.BelWue.DE (noc1.BelWue.DE [129.143.2.1]) by hub.freebsd.org (Postfix) with ESMTP id 6F18C37B405 for ; Mon, 26 Nov 2001 07:26:21 -0800 (PST) Received: from obiwankenobi.science-computing.de (blackhole.science-computing.de [193.197.16.3]) by noc1.BelWue.DE with SMTP id QAA29400 for ; Mon, 26 Nov 2001 16:26:19 +0100 (MET) env-from (C.Herrmann@science-computing.de) Received: from scmsrv1.science-computing.de (scmsrv1.science-computing.de [10.148.25.58]) by obiwankenobi.science-computing.de (8.9.3/8.8.8) with ESMTP id QAA09424 for ; Mon, 26 Nov 2001 16:26:19 +0100 Received: from localhost (localhost [127.0.0.1]) by scmsrv1.science-computing.de (8.11.3/8.11.1) with ESMTP id fAQFQJO45149 for ; Mon, 26 Nov 2001 16:26:19 +0100 (CET) (envelope-from chris@scmsrv1.science-computing.de) Date: Mon, 26 Nov 2001 16:26:18 +0100 (CET) From: Christoph Herrmann To: current@FreeBSD.ORG Subject: cdrecord produces broken CDs on -CURRENT Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi, Im running -STABLE and -CURRENT from different disks on the same box. And with -STABLE there are no problems burning CDs with a YAMAHA CRW6416S on an Adaptec 2940. But withs -CURRENT all CDs are broken. Cdrecord produces no Error messages and exits normaly, but there are areas with binary zeros on the CD. I tested several versions of cdrecord, the newest out of the ports, I compiled a staticly linked cdrecord on -STABLE which is running fine there. But the result on -CURRENT is always the same: The CDs are broken and they are identical, no matter which version of cdrecord I use. Are there any known problems with /dev/pass* ? What else could be the problem? Ciao Christoph &:-) ---- Testing? What's that? If it compiles, it is good, if it boots up, it is perfect. -- Linus Torvalds To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon Nov 26 8:56:51 2001 Delivered-To: freebsd-current@freebsd.org Received: from hal-4.inet.it (hal-4.inet.it [213.92.5.23]) by hub.freebsd.org (Postfix) with ESMTP id F0F4A37B416 for ; Mon, 26 Nov 2001 08:56:45 -0800 (PST) Received: (from root@localhost) by hal-4.inet.it (8.11.1/8.11.1) id fAQGuia142158 for ; Mon, 26 Nov 2001 17:56:44 +0100 Received: from acampi.inet.it(213.92.1.165) by hal-4.inet.it via I-SMTP id s-213.92.1.165-4pDnns; Mon Nov 26 17:56:43 2001 Received: from webcom.it (brian.inet.it [213.92.1.190]) by acampi.inet.it (Postfix) with SMTP id 894D615550 for ; Mon, 26 Nov 2001 17:56:41 +0100 (CET) Received: (qmail 1020 invoked by uid 1000); 26 Nov 2001 16:49:01 -0000 Date: Mon, 26 Nov 2001 17:49:01 +0100 From: Andrea Campi To: Bosko Milekic Cc: freebsd-current@FreeBSD.ORG Subject: Re: send_packet: No buffer space available Message-ID: <20011126164901.GA554@webcom.it> References: <20011121160116.GA6891@webcom.it> <20011121184318.A64569@technokratis.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20011121184318.A64569@technokratis.com> User-Agent: Mutt/1.3.23.2i X-Echelon: BND CIA NSA Mossad KGB MI6 IRA detonator nuclear assault strike Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > >From the netstat output, it looks more like an application-level problem > having to do with exhausting socket buffer space. Whatever the cause of > the problem, it certainly isn't a lack of mbufs and/or clusters. > > Try verifying what is generating the messages. It could be coming from > a syscall or, it may be that the application is printing them. If it is > the latter (you should find the string in the application code), then > it's fairly trivial to figure the rest out. If not, I'd check the > network card driver you're using next. OK, I traced it to sys/netinet/ip_output.c: /* * Verify that we have any chance at all of being able to queue * the packet or packet fragments */ if ((ifp->if_snd.ifq_len + ip->ip_len / ifp->if_mtu + 1) >= ifp->if_snd.ifq_maxlen) { error = ENOBUFS; ipstat.ips_odropped++; goto bad; } So this means the output queue on my net card is full, right? And I guess there is no easy solution... Oh well, I'll have to cope. But I still wonder, shouldn't this show up on netstat -i? netstat -s does show the dropped packets, anyway... So, no solution, right? :( Bye, Andrea -- The best things in life are free, but the expensive ones are still worth a look. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon Nov 26 9:43:43 2001 Delivered-To: freebsd-current@freebsd.org Received: from mail11.speakeasy.net (mail11.speakeasy.net [216.254.0.211]) by hub.freebsd.org (Postfix) with ESMTP id 7ED3237B41C for ; Mon, 26 Nov 2001 09:43:33 -0800 (PST) Received: (qmail 27319 invoked from network); 26 Nov 2001 17:43:56 -0000 Received: from unknown (HELO laptop.baldwin.cx) ([64.81.54.73]) (envelope-sender ) by mail11.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 26 Nov 2001 17:43:56 -0000 Message-ID: X-Mailer: XFMail 1.4.0 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <20011124141533.V13902-100000@levais.imp.ch> Date: Mon, 26 Nov 2001 09:43:31 -0800 (PST) From: John Baldwin To: Martin Blapp Subject: Re: Still panic() with userland binary on CURRENT Cc: freebsd-current@freebsd.org, Dag-Erling Smorgrav Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 24-Nov-01 Martin Blapp wrote: > > Hi DES, > > - realitexpire, td); > + realitexpire, td->td_proc); > > Fixes the panic 100%. > > Thanks a lot ! > > Martin Ouch, something this simple definitely caused a warning, it looks like warnings are being ignored. :( Time for another warning sweep of LINT perhaps. -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve!" - http://www.FreeBSD.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon Nov 26 9:43:44 2001 Delivered-To: freebsd-current@freebsd.org Received: from mail11.speakeasy.net (mail11.speakeasy.net [216.254.0.211]) by hub.freebsd.org (Postfix) with ESMTP id 6707C37B405 for ; Mon, 26 Nov 2001 09:43:33 -0800 (PST) Received: (qmail 27312 invoked from network); 26 Nov 2001 17:43:55 -0000 Received: from unknown (HELO laptop.baldwin.cx) ([64.81.54.73]) (envelope-sender ) by mail11.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 26 Nov 2001 17:43:55 -0000 Message-ID: X-Mailer: XFMail 1.4.0 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <20011123151522.B58238@iguana.aciri.org> Date: Mon, 26 Nov 2001 09:43:30 -0800 (PST) From: John Baldwin To: Luigi Rizzo Subject: Re: where is the idle_loop in current ? Cc: current@FreeBSD.org Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 23-Nov-01 Luigi Rizzo wrote: > In order to port my network polling stuff to current, I was looking > at ways to do things within the "idle loop", and was pointed to > the idle_proc() or vm_pagezero() . I am listing below the code > for these kernel threads (I hope the name is the correct one). > > I do not follow, however, the reason why these two threads periodically > give up the CPU, given that their priority is (i guess) lower than > any other thread in the system, so any event that should wake up > a thread would immediately cause their preemption. > Where am i wrong ? We don't do preemption in the kernel yet, so they need to yield the CPU when another thread is available. The page zeroing thread does this wrong as it should check procrunnable() instead of switching after doing N pages. The idle loop idle_proc() can't do any work w/o breaking priority propagation. If you wish to do low priority work, create a idle priority kthread to do it and make sure it yields when there is other work to do of higher priority. -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve!" - http://www.FreeBSD.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon Nov 26 10: 2: 3 2001 Delivered-To: freebsd-current@freebsd.org Received: from mass.dis.org (mass.dis.org [216.240.45.41]) by hub.freebsd.org (Postfix) with ESMTP id B422137B417 for ; Mon, 26 Nov 2001 10:01:58 -0800 (PST) Received: from mass.dis.org (localhost [127.0.0.1]) by mass.dis.org (8.11.6/8.11.3) with ESMTP id fAQI58t00959; Mon, 26 Nov 2001 10:05:09 -0800 (PST) (envelope-from msmith@mass.dis.org) Message-Id: <200111261805.fAQI58t00959@mass.dis.org> X-Mailer: exmh version 2.1.1 10/15/1999 To: Andrea Campi Cc: Bosko Milekic , freebsd-current@FreeBSD.ORG Subject: Re: send_packet: No buffer space available In-reply-to: Your message of "Mon, 26 Nov 2001 17:49:01 +0100." <20011126164901.GA554@webcom.it> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 26 Nov 2001 10:05:08 -0800 From: Mike Smith Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > So this means the output queue on my net card is full, right? And I guess > there is no easy solution... Oh well, I'll have to cope. That's correct; the pipe is full, and you can't put any more bits in it. Typically you run into this situation when your app is generating more data than can squirt out the hole in your network card, or the card is stalled for some reason. Any app using socket I/O should be ready to handle ENOBUFS gracefully; it typically needs to pause and then retry the I/O. > So, no solution, right? :( If the card is stalled (possible), then you may have a driver problem. But otherwise, it's not a "problem" except in the application. -- ... 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 majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon Nov 26 10: 7:12 2001 Delivered-To: freebsd-current@freebsd.org Received: from technokratis.com (modemcable099.144-201-24.mtl.mc.videotron.ca [24.201.144.99]) by hub.freebsd.org (Postfix) with ESMTP id 6D65937B419 for ; Mon, 26 Nov 2001 10:07:03 -0800 (PST) Received: (from bmilekic@localhost) by technokratis.com (8.11.4/8.11.3) id fAQIE7d07651; Mon, 26 Nov 2001 13:14:07 -0500 (EST) (envelope-from bmilekic) Date: Mon, 26 Nov 2001 13:14:07 -0500 From: Bosko Milekic To: Andrea Campi Cc: freebsd-current@FreeBSD.ORG Subject: Re: send_packet: No buffer space available Message-ID: <20011126131407.A7467@technokratis.com> References: <20011121160116.GA6891@webcom.it> <20011121184318.A64569@technokratis.com> <20011126164901.GA554@webcom.it> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20011126164901.GA554@webcom.it>; from andrea@webcom.it on Mon, Nov 26, 2001 at 05:49:01PM +0100 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, Nov 26, 2001 at 05:49:01PM +0100, Andrea Campi wrote: > OK, I traced it to sys/netinet/ip_output.c: > > /* > * Verify that we have any chance at all of being able to queue > * the packet or packet fragments > */ > if ((ifp->if_snd.ifq_len + ip->ip_len / ifp->if_mtu + 1) >= > ifp->if_snd.ifq_maxlen) { > error = ENOBUFS; > ipstat.ips_odropped++; > goto bad; > } > > So this means the output queue on my net card is full, right? And I guess It means that the interface output queue is full, yes. > there is no easy solution... Oh well, I'll have to cope. But I still wonder, > shouldn't this show up on netstat -i? netstat -s does show the dropped packets, > anyway... I'm not sure about this. In fact, that's a good question. Usually, if the queue is full, we should increment ifp->if_snd.ifq_drops as well as ipstat.ips_odropped. Perhaps this test ought to be more like: [lock ifp->if_snd] if ((ifp->if_snd.ifq_len + ip->ip_len / ifp->if_mtu + 1) > ifp->if_snd.ifq_maxlen) { error = ENOBUFS; _IFQ_DROP(ifp->if_snd); ipstat.ips_odropped++; goto bad; } [queue packet...] [etc...] [unlock ifp->if_snd] Note that we presently don't lock anything (this is expected, we haven't gotten there yet). However, note also that in the new version we also do an "_IFQ_DROP()" if we have exceeded the ifq_maxlen, and finally, also note that the new test is ">" and not ">=" - I don't know why it is ">=" to begin with. One would think that we should be testing for whether we are going to _exceed_ ifq_maxlen, not if we're going to reach it (we should be allowed to reach it). You should take my suggestion here with a grain of salt, and I think the best person to comment on this is Jonathan Lemon. > So, no solution, right? :( Well, you're sending out packets faster than your hardware can transmit them. You can `artificially' define IFQ_MAXLEN to something greater than 50 but practically, you probably won't get much besides for consuming more memory for the output queue. > Bye, > Andrea > > -- > The best things in life are free, but the > expensive ones are still worth a look. > -- Bosko Milekic bmilekic@technokratis.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon Nov 26 10:20:56 2001 Delivered-To: freebsd-current@freebsd.org Received: from hal-5.inet.it (hal-5.inet.it [213.92.5.24]) by hub.freebsd.org (Postfix) with ESMTP id A487437B427 for ; Mon, 26 Nov 2001 10:20:41 -0800 (PST) Received: (from root@localhost) by hal-5.inet.it (8.11.1/8.11.1) id fAQIKeY180140 for ; Mon, 26 Nov 2001 19:20:40 +0100 Received: from acampi.inet.it(213.92.1.165) by hal-5.inet.it via I-SMTP id s-213.92.1.165-IUURwr; Mon Nov 26 19:20:40 2001 Received: from webcom.it (brian.inet.it [213.92.1.190]) by acampi.inet.it (Postfix) with SMTP id 6BB4F15550 for ; Mon, 26 Nov 2001 19:20:27 +0100 (CET) Received: (qmail 4349 invoked by uid 1000); 26 Nov 2001 18:20:08 -0000 Date: Mon, 26 Nov 2001 19:20:07 +0100 From: Andrea Campi To: Bosko Milekic Cc: freebsd-current@FreeBSD.ORG Subject: Re: send_packet: No buffer space available Message-ID: <20011126182007.GB554@webcom.it> References: <20011121160116.GA6891@webcom.it> <20011121184318.A64569@technokratis.com> <20011126164901.GA554@webcom.it> <20011126131407.A7467@technokratis.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20011126131407.A7467@technokratis.com> User-Agent: Mutt/1.3.23.2i X-Echelon: BND CIA NSA Mossad KGB MI6 IRA detonator nuclear assault strike Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > Note that we presently don't lock anything (this is expected, we > haven't gotten there yet). However, note also that in the new version we > also do an "_IFQ_DROP()" if we have exceeded the ifq_maxlen, and > finally, also note that the new test is ">" and not ">=" - I don't know > why it is ">=" to begin with. One would think that we should be testing > for whether we are going to _exceed_ ifq_maxlen, not if we're going to > reach it (we should be allowed to reach it). OK, this makes a lot of sense. > > So, no solution, right? :( > > Well, you're sending out packets faster than your hardware can > transmit them. You can `artificially' define IFQ_MAXLEN to something > greater than 50 but practically, you probably won't get much besides for > consuming more memory for the output queue. Well, my main worry is to make sure FreeBSD works at least as well as any other OS our customers may be using or familiar with; I'm not really worried about performance of my -CURRENT laptop (or I'd run -STABLE ;-). Given that it's more of an hardware issue, I'm not really tempted to hack around it, expecially given that you admit it won't do much. So, at least now we know what to answer if the question arises again (I has several people who send 'me too' emails to me). Thanks for helping, Bye, Andrea -- The three Rs of Microsoft support: Retry, Reboot, Reinstall. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon Nov 26 10:20:57 2001 Delivered-To: freebsd-current@freebsd.org Received: from fledge.watson.org (fledge.watson.org [204.156.12.50]) by hub.freebsd.org (Postfix) with ESMTP id 7C93B37B41B for ; Mon, 26 Nov 2001 10:20:37 -0800 (PST) Received: from fledge.watson.org (robert@fledge.pr.watson.org [192.0.2.3]) by fledge.watson.org (8.11.6/8.11.5) with SMTP id fAQIKPi94830 for ; Mon, 26 Nov 2001 13:20:25 -0500 (EST) (envelope-from robert@fledge.watson.org) Date: Mon, 26 Nov 2001 13:20:24 -0500 (EST) From: Robert Watson X-Sender: robert@fledge.watson.org To: current@FreeBSD.org Subject: LINT fails due to '/bin/sh:Argument list too long' Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Decided to run a LINT build on my POSIX.1e capability tree in p4 today, and ran into something a bit unusual: make buildkernel KERNCONF=LINT ... boss/p4/rwatson/trustedbsd/cap/sys/kern/link_aout.c /cboss/p4/rwatson/trustedbsd/cap/sys/kern/subr_diskmbr.c /cboss/p4/rwatson/trustedbsd/cap/sys/libkern/divdi3.c /cboss/p4/rwatson/trustedbsd/cap/sys/libkern/moddi3.c /cboss/p4/rwatson/trustedbsd/cap/sys/libkern/qdivrem.c /cboss/p4/rwatson/trustedbsd/cap/sys/libkern/ucmpdi2.c /cboss/p4/rwatson/trustedbsd/cap/sys/libkern/udivdi3.c /cboss/p4/rwatson/trustedbsd/cap/sys/libkern/umoddi3.c vnode_if.c hints.c env.c config.c /cboss/p4/rwatson/trustedbsd/cap/sys/i386/i386/genassym.c /bin/sh:Argument list too long *** Error code 1 Stop in /usr/obj/cboss/p4/rwatson/trustedbsd/cap/sys/LINT. *** Error code 1 Stop in /usr/obj/cboss/p4/rwatson/trustedbsd/cap/sys/LINT. *** Error code 1 Stop in /cboss/p4/rwatson/trustedbsd/cap. *** Error code 1 Stop in /cboss/p4/rwatson/trustedbsd/cap. Looks like the number of C files in the kernel was finally too much for the make depend :-). Haven't seen this on my other trees I built LINT on lately, so my guess is we're just at the threshold, and one or two more files (such as in my p4 tree) bumps you over. Robert N M Watson FreeBSD Core Team, TrustedBSD Project robert@fledge.watson.org NAI Labs, Safeport Network Services To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon Nov 26 10:34: 7 2001 Delivered-To: freebsd-current@freebsd.org Received: from router.hackerheaven.org (qn-213-73-153-22.quicknet.nl [213.73.153.22]) by hub.freebsd.org (Postfix) with ESMTP id 0BC0637B437 for ; Mon, 26 Nov 2001 10:33:26 -0800 (PST) Received: by router.hackerheaven.org (Postfix, from userid 1000) id 8E8D91CA1; Mon, 26 Nov 2001 19:33:05 +0100 (CET) Date: Mon, 26 Nov 2001 19:33:05 +0100 From: Emiel Kollof To: freebsd-current@freebsd.org Subject: kvm_getswapinfo() not backwards compatible? Message-ID: <20011126193305.C546@laptop.hackerheaven.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.3.23i X-Mailer: Mutt 1.3.23i (2001-10-09) X-Editor: Vim http://www.vim.org/ X-Info: http://www.hackerheaven.org/ X-Info2: http://www.cmdline.org/ X-Info3: http://www.coolvibe.org/ Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hey gang, I have the following piece of code: extern void getswapload() { struct kvm_swap swap[1]; int pgsize, swapused, n; kd = kvm_open("/dev/null", "/dev/null", "/dev/null", O_RDONLY, "kvm_open"); n = kvm_getswapinfo(kd, swap, 1, 0); if (n < 0 || swap[0].ksw_total == 0) { perror("kvm_getswapinfo"); exit(1); } pgsize = getpagesize(); swapused = swap[0].ksw_used * pgsize / 1024; snprintf(result, sizeof(result), "%d", swapused); kvm_close(kd); return; } As you all can see, this puts the amount of swap used in KB in the global variable result. It's not unlike the top(1) utility does it. But... it doesn't seem to work on STABLE, but it does fine on CURRENT. My STABLE machine yields the following: kvm_open: short read getinfo: cannot read nswdev: kvm_open: short read getinfo: cannot read dmmax: kvm_open: short read getinfo: cannot read sw: kvm_open: short read getinfo: cannot read sw: kvm_open: short read getinfo: cannot read swapblist: kvm_getswapinfo: Undefined error: 0 I checked the top(1) source on a STABLE machine for reference. No luck there, It does it the same way. What am I doing wrong? In what way are the two calls different on CURRENT and STABLE? Cheers, Emiel -- Concept, n.: Any "idea" for which an outside consultant billed you more than $25,000. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon Nov 26 11:42: 0 2001 Delivered-To: freebsd-current@freebsd.org Received: from khavrinen.lcs.mit.edu (khavrinen.lcs.mit.edu [18.24.4.193]) by hub.freebsd.org (Postfix) with ESMTP id B912437B41B; Mon, 26 Nov 2001 11:41:55 -0800 (PST) Received: (from wollman@localhost) by khavrinen.lcs.mit.edu (8.11.4/8.11.4) id fAQJfsG21251; Mon, 26 Nov 2001 14:41:54 -0500 (EST) (envelope-from wollman) Date: Mon, 26 Nov 2001 14:41:54 -0500 (EST) From: Garrett Wollman Message-Id: <200111261941.fAQJfsG21251@khavrinen.lcs.mit.edu> To: John Baldwin Cc: freebsd-current@FreeBSD.ORG Subject: Re: Still panic() with userland binary on CURRENT In-Reply-To: References: <20011124141533.V13902-100000@levais.imp.ch> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG < said: >> - realitexpire, td); >> + realitexpire, td->td_proc); > Ouch, something this simple definitely caused a warning, it looks like warnings > are being ignored. :( Nope. Look at the prototype for callout_reset() and then think about why the last two parameters have the type that they do. -GAWollman To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon Nov 26 11:43:33 2001 Delivered-To: freebsd-current@freebsd.org Received: from smtpzilla1.xs4all.nl (smtpzilla1.xs4all.nl [194.109.127.137]) by hub.freebsd.org (Postfix) with ESMTP id 0D5F337B405 for ; Mon, 26 Nov 2001 11:43:29 -0800 (PST) Received: from trantor.xs4all.nl (trantor.xs4all.nl [194.109.61.248]) by smtpzilla1.xs4all.nl (8.12.0/8.12.0) with ESMTP id fAQJhQl9045190; Mon, 26 Nov 2001 20:43:27 +0100 (CET) Received: from trantor.xs4all.nl (localhost [127.0.0.1]) by trantor.xs4all.nl (8.11.6/8.9.3) with ESMTP id fAQJhP655909; Mon, 26 Nov 2001 20:43:25 +0100 (MET) (envelope-from paulz@trantor.xs4all.nl) Message-Id: <200111261943.fAQJhP655909@trantor.xs4all.nl> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Maxime Henrion Cc: current@FreeBSD.org, Paul van der Zwan , paulz@trantor.xs4all.nl Subject: Re: df -l broken In-Reply-To: Message from Maxime Henrion of "Mon, 26 Nov 2001 00:05:31 +0100." <20011126000531.A280@nebula.noos.fr> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 26 Nov 2001 20:43:25 +0100 From: Paul van der Zwan Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > Paul van der Zwan wrote: > > > > I noticed the -l option of the df command is broken. It is supposed to > > print df for local filesystems but on my system it prints nothing at all. > > I had a quick look at the code , as far as I can tell it uses sysctl to > > figure out the mounted filesystems but thinks all of them are non-local and > > ignores them. > > Using sysctl -a I could not find any entries which looked vaguely like > > describing a mount.. > > > > Paul > > Could you please test the attached patch ? I did it in a hurry but it > may fix the problem. > It looks ok to me, just the local mounts show up.. Paul -- Paul van der Zwan paulz @ trantor.xs4all.nl "I think I'll move to theory, everything works in theory..." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon Nov 26 11:45:40 2001 Delivered-To: freebsd-current@freebsd.org Received: from netau1.alcanet.com.au (ntp.alcanet.com.au [203.62.196.27]) by hub.freebsd.org (Postfix) with ESMTP id 3C4A237B405 for ; Mon, 26 Nov 2001 11:45:34 -0800 (PST) Received: from mfg1.cim.alcatel.com.au (mfg1.cim.alcatel.com.au [139.188.23.1]) by netau1.alcanet.com.au (8.9.3 (PHNE_22672)/8.9.3) with ESMTP id GAA21333; Tue, 27 Nov 2001 06:45:16 +1100 (EDT) Received: from gsmx07.alcatel.com.au by cim.alcatel.com.au (PMDF V5.2-32 #37640) with ESMTP id <01KB6TUVFGLCVLIYJH@cim.alcatel.com.au>; Tue, 27 Nov 2001 06:45:14 +1100 Received: (from jeremyp@localhost) by gsmx07.alcatel.com.au (8.11.6/8.11.6) id fAQJjDq87053; Tue, 27 Nov 2001 06:45:13 +1100 Content-return: prohibited Date: Tue, 27 Nov 2001 06:45:13 +1100 From: Peter Jeremy Subject: Re: Panic changing screen mode with vidcontrol In-reply-to: <20011126182614.H12912@zeus.theinternet.com.au>; from akm@theinternet.com.au on Mon, Nov 26, 2001 at 06:26:14PM +1000 To: Andrew Kenneth Milton Cc: freebsd-current@FreeBSD.ORG Mail-Followup-To: Andrew Kenneth Milton , freebsd-current@FreeBSD.ORG Message-id: <20011127064512.J1523@gsmx07.alcatel.com.au> MIME-version: 1.0 Content-type: text/plain; charset=us-ascii Content-disposition: inline User-Agent: Mutt/1.2.5i References: <20011126173543.A7551@gsmx07.alcatel.com.au> <20011126182614.H12912@zeus.theinternet.com.au> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 2001-Nov-26 18:26:14 +1000, Andrew Kenneth Milton wrote: >+-------[ Peter Jeremy ]---------------------- >| Having installed a new kernel and userland from sources about a day >| old, my vidcontrol command now causes a panic: > >[snip] > >| The command I used was "vidcontrol 132x60" after confirming that >| this was listed in "vidcontrol -i mode". I have previously been >| using VESA_132x60, but that also panics now. > >Was X running ? No. The problem originally surfaced in the vidcontrol triggered by the allscreens_flags in my rc.conf. I confirmed it in single user mode without any alse running. Peter To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon Nov 26 11:47:20 2001 Delivered-To: freebsd-current@freebsd.org Received: from mail6.speakeasy.net (mail6.speakeasy.net [216.254.0.206]) by hub.freebsd.org (Postfix) with ESMTP id A01C037B416 for ; Mon, 26 Nov 2001 11:47:10 -0800 (PST) Received: (qmail 12169 invoked from network); 26 Nov 2001 19:47:20 -0000 Received: from unknown (HELO laptop.baldwin.cx) ([64.81.54.73]) (envelope-sender ) by mail6.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 26 Nov 2001 19:47:20 -0000 Message-ID: X-Mailer: XFMail 1.4.0 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <200111261941.fAQJfsG21251@khavrinen.lcs.mit.edu> Date: Mon, 26 Nov 2001 11:47:07 -0800 (PST) From: John Baldwin To: Garrett Wollman Subject: Re: Still panic() with userland binary on CURRENT Cc: freebsd-current@FreeBSD.ORG Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 26-Nov-01 Garrett Wollman wrote: > < > said: > >>> - realitexpire, td); >>> + realitexpire, td->td_proc); > >> Ouch, something this simple definitely caused a warning, it looks like >> warnings >> are being ignored. :( > > Nope. Look at the prototype for callout_reset() and then think about > why the last two parameters have the type that they do. Bah, you're right. > -GAWollman -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve!" - http://www.FreeBSD.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon Nov 26 12: 1: 9 2001 Delivered-To: freebsd-current@freebsd.org Received: from khavrinen.lcs.mit.edu (khavrinen.lcs.mit.edu [18.24.4.193]) by hub.freebsd.org (Postfix) with ESMTP id DB6B137B417; Mon, 26 Nov 2001 12:01:05 -0800 (PST) Received: (from wollman@localhost) by khavrinen.lcs.mit.edu (8.11.4/8.11.4) id fAQK15b21599; Mon, 26 Nov 2001 15:01:05 -0500 (EST) (envelope-from wollman) Date: Mon, 26 Nov 2001 15:01:05 -0500 (EST) From: Garrett Wollman Message-Id: <200111262001.fAQK15b21599@khavrinen.lcs.mit.edu> To: Maxim Sobolev Cc: Dag-Erling Smorgrav , freebsd-current@FreeBSD.ORG Subject: Re: libfetch kqueue patch In-Reply-To: <3BFCDB3F.F0DD7BA0@FreeBSD.org> References: <20011121223202.0e85d777.david@phobia.ms> <3BFCDB3F.F0DD7BA0@FreeBSD.org> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG < said: > For what it's worth, it also makes code less portable. On the other hand, it would also make libfetch useful in a larger variety of applications; viz., those which have so many file descriptors open that the one used by libfetch will overflow the default fd_set. -GAWollman To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon Nov 26 12: 5:30 2001 Delivered-To: freebsd-current@freebsd.org Received: from fledge.watson.org (fledge.watson.org [204.156.12.50]) by hub.freebsd.org (Postfix) with ESMTP id 9077637B419; Mon, 26 Nov 2001 12:05:10 -0800 (PST) Received: from localhost (arr@localhost) by fledge.watson.org (8.11.6/8.11.5) with SMTP id fAQK4vk97377; Mon, 26 Nov 2001 15:04:57 -0500 (EST) (envelope-from arr@FreeBSD.org) X-Authentication-Warning: fledge.watson.org: arr owned process doing -bs Date: Mon, 26 Nov 2001 15:04:56 -0500 (EST) From: "Andrew R. Reiter" X-Sender: arr@fledge.watson.org To: Garrett Wollman Cc: Maxim Sobolev , Dag-Erling Smorgrav , freebsd-current@FreeBSD.org Subject: Re: libfetch kqueue patch In-Reply-To: <200111262001.fAQK15b21599@khavrinen.lcs.mit.edu> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Agreed, or people could code with select in a nice manner and dynamically allocate the fd_set arrays. On Mon, 26 Nov 2001, Garrett Wollman wrote: :< said: : :> For what it's worth, it also makes code less portable. : :On the other hand, it would also make libfetch useful in a larger :variety of applications; viz., those which have so many file :descriptors open that the one used by libfetch will overflow the :default fd_set. : :-GAWollman : : :To Unsubscribe: send mail to majordomo@FreeBSD.org :with "unsubscribe freebsd-current" in the body of the message : -- Andrew R. Reiter arr@watson.org arr@FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon Nov 26 12:13:16 2001 Delivered-To: freebsd-current@freebsd.org Received: from salmon.maths.tcd.ie (salmon.maths.tcd.ie [134.226.81.11]) by hub.freebsd.org (Postfix) with SMTP id 8ACD837B419; Mon, 26 Nov 2001 12:13:13 -0800 (PST) Received: from walton.maths.tcd.ie by salmon.maths.tcd.ie with SMTP id ; 26 Nov 2001 20:13:12 +0000 (GMT) Date: Mon, 26 Nov 2001 20:13:12 +0000 From: David Malone To: "Andrew R. Reiter" Cc: Garrett Wollman , Maxim Sobolev , Dag-Erling Smorgrav , freebsd-current@FreeBSD.org Subject: Re: libfetch kqueue patch Message-ID: <20011126201312.A75451@walton.maths.tcd.ie> References: <200111262001.fAQK15b21599@khavrinen.lcs.mit.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from arr@FreeBSD.org on Mon, Nov 26, 2001 at 03:04:56PM -0500 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, Nov 26, 2001 at 03:04:56PM -0500, Andrew R. Reiter wrote: > Agreed, or people could code with select in a nice manner and dynamically > allocate the fd_set arrays. Is there a portable way to allocate dynamically sized fd_sets? It could easily be one of those things that you're not supposed to know how it works inside. David. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon Nov 26 12:22:14 2001 Delivered-To: freebsd-current@freebsd.org Received: from smtpzilla2.xs4all.nl (smtpzilla2.xs4all.nl [194.109.127.138]) by hub.freebsd.org (Postfix) with ESMTP id C1B6537B416 for ; Mon, 26 Nov 2001 12:22:08 -0800 (PST) Received: from trantor.xs4all.nl (trantor.xs4all.nl [194.109.61.248]) by smtpzilla2.xs4all.nl (8.12.0/8.12.0) with ESMTP id fAQKM63m043383 for ; Mon, 26 Nov 2001 21:22:07 +0100 (CET) Received: from trantor.xs4all.nl (localhost [127.0.0.1]) by trantor.xs4all.nl (8.11.6/8.9.3) with ESMTP id fAQKLo100851 for ; Mon, 26 Nov 2001 21:21:50 +0100 (MET) (envelope-from paulz@trantor.xs4all.nl) Message-Id: <200111262021.fAQKLo100851@trantor.xs4all.nl> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: current@freebsd.org Subject: nfsclient and amd Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 26 Nov 2001 21:21:50 +0100 From: Paul van der Zwan Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG It looks like using amd to mount remote hosts on /net will not cause the nfsclient.ko module to be loaded. This causes the mounts to fail. Maybe rc.network kan be changed to kldload the nfsclient.ko module if it is not built into the kernel, just like it does for the server module ?? Paul -- Paul van der Zwan paulz @ trantor.xs4all.nl "I think I'll move to theory, everything works in theory..." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon Nov 26 12:28: 6 2001 Delivered-To: freebsd-current@freebsd.org Received: from fledge.watson.org (fledge.watson.org [204.156.12.50]) by hub.freebsd.org (Postfix) with ESMTP id A8BA037B405; Mon, 26 Nov 2001 12:28:02 -0800 (PST) Received: from localhost (arr@localhost) by fledge.watson.org (8.11.6/8.11.5) with SMTP id fAQKRkU97866; Mon, 26 Nov 2001 15:27:46 -0500 (EST) (envelope-from arr@FreeBSD.org) X-Authentication-Warning: fledge.watson.org: arr owned process doing -bs Date: Mon, 26 Nov 2001 15:27:45 -0500 (EST) From: "Andrew R. Reiter" X-Sender: arr@fledge.watson.org To: David Malone Cc: Garrett Wollman , Maxim Sobolev , Dag-Erling Smorgrav , freebsd-current@FreeBSD.org Subject: Re: libfetch kqueue patch In-Reply-To: <20011126201312.A75451@walton.maths.tcd.ie> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG As from OpenBSD (in shorter form): fd_set *fds = calloc(howmany(fd+1, NFDBITS), sizeof(fd_mask)); FD_SET(fd, fds); select(fd+1, fds...); As for being "portable", the only thing I've seen that is nice and neat is libevent from Niels Provos, but I think some people had "issues" with the way it handled kqueue support. On Mon, 26 Nov 2001, David Malone wrote: :On Mon, Nov 26, 2001 at 03:04:56PM -0500, Andrew R. Reiter wrote: :> Agreed, or people could code with select in a nice manner and dynamically :> allocate the fd_set arrays. : :Is there a portable way to allocate dynamically sized fd_sets? It :could easily be one of those things that you're not supposed to :know how it works inside. : : David. : -- Andrew R. Reiter arr@watson.org arr@FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon Nov 26 12:30:35 2001 Delivered-To: freebsd-current@freebsd.org Received: from panzer.kdm.org (panzer.kdm.org [216.160.178.169]) by hub.freebsd.org (Postfix) with ESMTP id 4726237B41A for ; Mon, 26 Nov 2001 12:30:32 -0800 (PST) Received: (from ken@localhost) by panzer.kdm.org (8.11.6/8.9.1) id fAQKURU05200; Mon, 26 Nov 2001 13:30:27 -0700 (MST) (envelope-from ken) Date: Mon, 26 Nov 2001 13:30:27 -0700 From: "Kenneth D. Merry" To: Christoph Herrmann Cc: current@FreeBSD.ORG Subject: Re: cdrecord produces broken CDs on -CURRENT Message-ID: <20011126133027.A5112@panzer.kdm.org> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: ; from C.Herrmann@science-computing.de on Mon, Nov 26, 2001 at 04:26:18PM +0100 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, Nov 26, 2001 at 16:26:18 +0100, Christoph Herrmann wrote: > Hi, > > Im running -STABLE and -CURRENT from different disks on the same box. > And with -STABLE there are no problems burning CDs with a YAMAHA CRW6416S > on an Adaptec 2940. > But withs -CURRENT all CDs are broken. Cdrecord produces no Error messages > and exits normaly, but there are areas with binary zeros on the CD. I > tested several versions of cdrecord, the newest out of the ports, I > compiled a staticly linked cdrecord on -STABLE which is running fine > there. But the result on -CURRENT is always the same: The CDs are broken > and they are identical, no matter which version of cdrecord I use. > Are there any known problems with /dev/pass* ? What else could be the > problem? So did you try the statically linked -stable binary on -current? Is it completely static? (i.e. ldd cdrecord should report that it isn't a dynamic executable) That may help narrow the problem down somewhat. I'm not sure, though, whether the -stable binary will work with the pass interface on -current. Are there any areas with good data on the CD? i.e. can you see any pattern to the corruption? If you compare the same CD burned from -current and -stable you might begin to see a patern. Is the table of contents correct? Ken -- Kenneth Merry ken@kdm.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon Nov 26 12:32:54 2001 Delivered-To: freebsd-current@freebsd.org Received: from khavrinen.lcs.mit.edu (khavrinen.lcs.mit.edu [18.24.4.193]) by hub.freebsd.org (Postfix) with ESMTP id 1A1A237B416; Mon, 26 Nov 2001 12:32:52 -0800 (PST) Received: (from wollman@localhost) by khavrinen.lcs.mit.edu (8.11.4/8.11.4) id fAQKWpY21910; Mon, 26 Nov 2001 15:32:51 -0500 (EST) (envelope-from wollman) Date: Mon, 26 Nov 2001 15:32:51 -0500 (EST) From: Garrett Wollman Message-Id: <200111262032.fAQKWpY21910@khavrinen.lcs.mit.edu> To: "Andrew R. Reiter" Cc: freebsd-current@FreeBSD.org Subject: Re: libfetch kqueue patch In-Reply-To: References: <20011126201312.A75451@walton.maths.tcd.ie> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG < said: > As from OpenBSD (in shorter form): > fd_set *fds = calloc(howmany(fd+1, NFDBITS), sizeof(fd_mask)); But this is not portable. The application is not allowed to assume anything about the structure of an fd_set, or the existence of a type `fd_mask', or the existence of a macro `howmany' (which is actually prohibited). The only portable (in the sense of officially standardized) interface that doesn't suffer from this problem is poll(). -GAWollman To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon Nov 26 13: 9:17 2001 Delivered-To: freebsd-current@freebsd.org Received: from resnet.uoregon.edu (resnet.uoregon.edu [128.223.122.47]) by hub.freebsd.org (Postfix) with ESMTP id 141BF37B442 for ; Mon, 26 Nov 2001 13:08:53 -0800 (PST) Received: from localhost (dwhite@localhost) by resnet.uoregon.edu (8.11.3/8.10.1) with ESMTP id fAQL90J64084; Mon, 26 Nov 2001 13:09:00 -0800 (PST) Date: Mon, 26 Nov 2001 13:08:59 -0800 (PST) From: Doug White To: Emiel Kollof Cc: Subject: Re: kvm_getswapinfo() not backwards compatible? In-Reply-To: <20011126193305.C546@laptop.hackerheaven.org> Message-ID: X-All-Your-Base: are belong to us MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, 26 Nov 2001, Emiel Kollof wrote: > Hey gang, > > I have the following piece of code: > > extern void > getswapload() > { > > struct kvm_swap swap[1]; > int pgsize, > swapused, n; > > kd = kvm_open("/dev/null", "/dev/null", "/dev/null", O_RDONLY, "kvm_open"); This looks wrong .... I think you want the first three arguments to be NULL, not "/dev/null". /dev/null is not a kernel image. :-) Doug White | FreeBSD: The Power to Serve dwhite@resnet.uoregon.edu | www.FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon Nov 26 13:22:32 2001 Delivered-To: freebsd-current@freebsd.org Received: from web21102.mail.yahoo.com (web21102.mail.yahoo.com [216.136.227.104]) by hub.freebsd.org (Postfix) with SMTP id F161237B417 for ; Mon, 26 Nov 2001 13:22:23 -0800 (PST) Message-ID: <20011126212223.82157.qmail@web21102.mail.yahoo.com> Received: from [62.254.0.4] by web21102.mail.yahoo.com via HTTP; Mon, 26 Nov 2001 13:22:23 PST Date: Mon, 26 Nov 2001 13:22:23 -0800 (PST) From: Hiten Pandya Subject: [PATCH] - categorizing (XXX Lines) in NOTES To: current@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG hi all, this patch will put an end to those XXX lines in the NOTES file, which were regarding uncategorized options.. such as USERCONFIG etc. I am also attaching a tar.gz package which has the patch compressed and archived. thanks.. regards... Hiten Pandya PATCH is below... *** NOTES.old Sun Nov 25 12:54:58 2001 --- NOTES Sun Nov 25 13:11:35 2001 *************** *** 292,298 **** # # Implement system calls compatible with 4.3BSD and older versions of # FreeBSD. You probably do NOT want to remove this as much current code ! # still relies on the 4.3 emulation. # options COMPAT_43 --- 292,299 ---- # # Implement system calls compatible with 4.3BSD and older versions of # FreeBSD. You probably do NOT want to remove this as much current code ! # still relies on the 4.3 emulation.# XXX - this doesn't belong here. ! # options COMPAT_43 *************** *** 420,435 **** # options COMPILING_LINT - - # XXX - this doesn't belong here. - # Allow ordinary users to take the console - this is useful for X. - options UCONSOLE - - # XXX - this doesn't belong here either - #options USERCONFIG #boot -c editor - #options INTRO_USERCONFIG #imply -c and show intro screen - #options VISUAL_USERCONFIG #visual boot -c editor - ##################################################################### # NETWORKING OPTIONS --- 421,426 ---- *************** *** 1150,1158 **** # EISA, MCA, PCI and pccard are self identifying buses, so no hints # are needed. ! # # Mandatory devices: ! # # The keyboard controller; it controls the keyboard and the PS/2 mouse. device atkbdc 1 --- 1141,1149 ---- # EISA, MCA, PCI and pccard are self identifying buses, so no hints # are needed. ! #------------------------------------------------------------------------------ # Mandatory devices: ! #------------------------------------------------------------------------------ # The keyboard controller; it controls the keyboard and the PS/2 mouse. device atkbdc 1 *************** *** 1189,1194 **** --- 1180,1189 ---- #for some laptops options PSM_RESETAFTERSUSPEND #reset the device at the resume event + #------------------------------------------------------------------------------ + # Video/Display Related Configuration Options + #------------------------------------------------------------------------------ + # The video card driver. device vga hint.vga.0.at="isa" *************** *** 1231,1236 **** --- 1226,1238 ---- device star_saver device warp_saver + #------------------------------------------------------------------------------ + # Console Related Configuration Options + #------------------------------------------------------------------------------ + + # Allow ordinary users to take the console - this is useful for X. + options UCONSOLE + # The pcvt console driver (vt220 compatible). device vt hint.vt.0.at="isa" *************** *** 1347,1355 **** device acpica options ACPI_DEBUG ! # # Optional devices: ! # # # SCSI host adapters: --- 1349,1357 ---- device acpica options ACPI_DEBUG ! #------------------------------------------------------------------------------ # Optional devices: ! #------------------------------------------------------------------------------ # # SCSI host adapters: *************** *** 2891,2897 **** --- 2893,2905 ---- options PANIC_REBOOT_WAIT_TIME=16 ##################################################################### + # MISCELLENEOUS OPTIONS + #options USERCONFIG #boot -c editor + #options INTRO_USERCONFIG #imply -c and show intro screen + #options VISUAL_USERCONFIG #visual boot -c editor + + ##################################################################### # More undocumented options for linting. # Note that documenting these are not considered an affront. *************** *** 2955,2958 **** options VM_KMEM_SIZE options VM_KMEM_SIZE_MAX ! options VM_KMEM_SIZE_SCALE --- 2963,2966 ---- options VM_KMEM_SIZE options VM_KMEM_SIZE_MAX ! options VM_KMEM_SIZE_SCALE __________________________________________________ Do You Yahoo!? Yahoo! GeoCities - quick and easy web site hosting, just $8.95/month. http://geocities.yahoo.com/ps/info1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon Nov 26 13:35:14 2001 Delivered-To: freebsd-current@freebsd.org Received: from web21109.mail.yahoo.com (web21109.mail.yahoo.com [216.136.227.111]) by hub.freebsd.org (Postfix) with SMTP id 167AD37B416 for ; Mon, 26 Nov 2001 13:35:07 -0800 (PST) Message-ID: <20011126213506.41931.qmail@web21109.mail.yahoo.com> Received: from [62.254.0.4] by web21109.mail.yahoo.com via HTTP; Mon, 26 Nov 2001 13:35:06 PST Date: Mon, 26 Nov 2001 13:35:06 -0800 (PST) From: Hiten Pandya Subject: [PATCH] - categorizing (XXX Lines) in NOTES To: freebsd-current@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG hi all, this patch will put an end to those XXX lines in the NOTES file, which were regarding uncategorized options.. such as USERCONFIG etc. I am also attaching a tar.gz package which has the patch compressed and archived. thanks.. regards... Hiten Pandya PATCH is below... *** NOTES.old Sun Nov 25 12:54:58 2001 --- NOTES Sun Nov 25 13:11:35 2001 *************** *** 292,298 **** # # Implement system calls compatible with 4.3BSD and older versions of # FreeBSD. You probably do NOT want to remove this as much current code ! # still relies on the 4.3 emulation. # options COMPAT_43 --- 292,299 ---- # # Implement system calls compatible with 4.3BSD and older versions of # FreeBSD. You probably do NOT want to remove this as much current code ! # still relies on the 4.3 emulation.# XXX - this doesn't belong here. ! # options COMPAT_43 *************** *** 420,435 **** # options COMPILING_LINT - - # XXX - this doesn't belong here. - # Allow ordinary users to take the console - this is useful for X. - options UCONSOLE - - # XXX - this doesn't belong here either - #options USERCONFIG #boot -c editor - #options INTRO_USERCONFIG #imply -c and show intro screen - #options VISUAL_USERCONFIG #visual boot -c editor - ##################################################################### # NETWORKING OPTIONS --- 421,426 ---- *************** *** 1150,1158 **** # EISA, MCA, PCI and pccard are self identifying buses, so no hints # are needed. ! # # Mandatory devices: ! # # The keyboard controller; it controls the keyboard and the PS/2 mouse. device atkbdc 1 --- 1141,1149 ---- # EISA, MCA, PCI and pccard are self identifying buses, so no hints # are needed. ! #------------------------------------------------------------------------------ # Mandatory devices: ! #------------------------------------------------------------------------------ # The keyboard controller; it controls the keyboard and the PS/2 mouse. device atkbdc 1 *************** *** 1189,1194 **** --- 1180,1189 ---- #for some laptops options PSM_RESETAFTERSUSPEND #reset the device at the resume event + #------------------------------------------------------------------------------ + # Video/Display Related Configuration Options + #------------------------------------------------------------------------------ + # The video card driver. device vga hint.vga.0.at="isa" *************** *** 1231,1236 **** --- 1226,1238 ---- device star_saver device warp_saver + #------------------------------------------------------------------------------ + # Console Related Configuration Options + #------------------------------------------------------------------------------ + + # Allow ordinary users to take the console - this is useful for X. + options UCONSOLE + # The pcvt console driver (vt220 compatible). device vt hint.vt.0.at="isa" *************** *** 1347,1355 **** device acpica options ACPI_DEBUG ! # # Optional devices: ! # # # SCSI host adapters: --- 1349,1357 ---- device acpica options ACPI_DEBUG ! #------------------------------------------------------------------------------ # Optional devices: ! #------------------------------------------------------------------------------ # # SCSI host adapters: *************** *** 2891,2897 **** --- 2893,2905 ---- options PANIC_REBOOT_WAIT_TIME=16 ##################################################################### + # MISCELLENEOUS OPTIONS + #options USERCONFIG #boot -c editor + #options INTRO_USERCONFIG #imply -c and show intro screen + #options VISUAL_USERCONFIG #visual boot -c editor + + ##################################################################### # More undocumented options for linting. # Note that documenting these are not considered an affront. *************** *** 2955,2958 **** options VM_KMEM_SIZE options VM_KMEM_SIZE_MAX ! options VM_KMEM_SIZE_SCALE --- 2963,2966 ---- options VM_KMEM_SIZE options VM_KMEM_SIZE_MAX ! options VM_KMEM_SIZE_SCALE ===== regards, Hiten Pandya MOTD: I just like _pumping_ the daylights out of a PENGUIN!!! __________________________________________________ Do You Yahoo!? Yahoo! GeoCities - quick and easy web site hosting, just $8.95/month. http://geocities.yahoo.com/ps/info1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon Nov 26 14:20:24 2001 Delivered-To: freebsd-current@freebsd.org Received: from sax.sax.de (sax.sax.de [193.175.26.33]) by hub.freebsd.org (Postfix) with ESMTP id BB08D37B419 for ; Mon, 26 Nov 2001 14:20:14 -0800 (PST) Received: (from uucp@localhost) by sax.sax.de (8.9.3/8.9.3) with UUCP id XAA27293 for freebsd-current@freebsd.org; Mon, 26 Nov 2001 23:20:13 +0100 (CET) Received: (from j@localhost) by uriah.heep.sax.de (8.11.6/8.11.6) id fAQLwXv05601; Mon, 26 Nov 2001 22:58:33 +0100 (MET) (envelope-from j) Date: Mon, 26 Nov 2001 22:58:33 +0100 (MET) Message-Id: <200111262158.fAQLwXv05601@uriah.heep.sax.de> Mime-Version: 1.0 X-Newsreader: knews 1.0b.1 Reply-To: joerg_wunsch@uriah.heep.sax.de (Joerg Wunsch) Organization: Private BSD site, Dresden X-Phone: +49-351-2012 669 X-PGP-Fingerprint: DC 47 E6 E4 FF A6 E9 8F 93 21 E0 7D F9 12 D6 4E References: <20011126133027.A5112@panzer.kdm.org> From: j@uriah.heep.sax.de (Joerg Wunsch) Subject: Re: cdrecord produces broken CDs on -CURRENT X-Original-Newsgroups: local.freebsd.current To: freebsd-current@freebsd.org Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG "Kenneth D. Merry" wrote: > Are there any areas with good data on the CD? i.e. can you see any > pattern to the corruption? If you compare the same CD burned from > -current and -stable you might begin to see a patern. I tried a test-burn with a FreeBSD-current from yesterday, on a YAMAHA CRW2100S 1.0H writer (writing a CD-RW), and can't see any failure. It's only a small directory tree, but MD5-comparing the tree on the CD-RW with the original on UFS only reveals the added TRANS.TBL files, no other differences. # cdrecord -version Cdrecord 1.9 (i386-unknown-freebsd5.0) Copyright (C) 1995-2000 Jörg Schilling # ls -l `which cdrecord` -r-xr-xr-x 1 root wheel - 163392 Apr 4 2001 /usr/local/bin/cdrecord* # ldd `which cdrecord` /usr/local/bin/cdrecord: libcam.so.2 => /usr/lib/libcam.so.2 (0x2808a000) libc.so.5 => /usr/lib/libc.so.5 (0x2809a000) libsbuf.so.2 => /usr/lib/libsbuf.so.2 (0x2814e000) (I haven't rebuilt the binary after upgrading -current, for months as you can see.) -- cheers, J"org .-.-. --... ...-- -.. . DL8DTL http://www.sax.de/~joerg/ NIC: JW11-RIPE Never trust an operating system you don't have sources for. ;-) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon Nov 26 14:52:44 2001 Delivered-To: freebsd-current@freebsd.org Received: from router.hackerheaven.org (coolvibe.xs4all.nl [194.109.39.166]) by hub.freebsd.org (Postfix) with ESMTP id 0F4D337B405 for ; Mon, 26 Nov 2001 14:52:37 -0800 (PST) Received: by router.hackerheaven.org (Postfix, from userid 1000) id CFDF21CA1; Mon, 26 Nov 2001 23:52:00 +0100 (CET) Date: Mon, 26 Nov 2001 23:52:00 +0100 From: Emiel Kollof To: Doug White Cc: freebsd-current@FreeBSD.ORG Subject: Re: kvm_getswapinfo() not backwards compatible? Message-ID: <20011126235200.D546@laptop.hackerheaven.org> References: <20011126193305.C546@laptop.hackerheaven.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.3.23i X-Mailer: Mutt 1.3.23i (2001-10-09) X-Editor: Vim http://www.vim.org/ X-Info: http://www.hackerheaven.org/ X-Info2: http://www.cmdline.org/ X-Info3: http://www.coolvibe.org/ Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG * Doug White (dwhite@resnet.uoregon.edu) wrote: > > > > kd = kvm_open("/dev/null", "/dev/null", "/dev/null", O_RDONLY, "kvm_open"); > > This looks wrong .... I think you want the first three arguments to be > NULL, not "/dev/null". > > /dev/null is not a kernel image. :-) I could've sworn I saw it done like that in the sources for top(1), but after checking again, you are right. It seems to work though on CURRENT. Is it a feature? :-) Cheers, Emiel -- When the government bureau's remedies don't match your problem, you modify the problem, not the remedy. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon Nov 26 15:56:36 2001 Delivered-To: freebsd-current@freebsd.org Received: from mass.dis.org (mass.dis.org [216.240.45.41]) by hub.freebsd.org (Postfix) with ESMTP id 4BD4237B405 for ; Mon, 26 Nov 2001 15:56:34 -0800 (PST) Received: from mass.dis.org (localhost [127.0.0.1]) by mass.dis.org (8.11.6/8.11.3) with ESMTP id fAR008t04600; Mon, 26 Nov 2001 16:00:08 -0800 (PST) (envelope-from msmith@mass.dis.org) Message-Id: <200111270000.fAR008t04600@mass.dis.org> To: Hiten Pandya Cc: freebsd-current@freebsd.org Subject: Re: [PATCH] - categorizing (XXX Lines) in NOTES In-Reply-To: Message from Hiten Pandya of "Mon, 26 Nov 2001 13:35:06 PST." <20011126213506.41931.qmail@web21109.mail.yahoo.com> Date: Mon, 26 Nov 2001 16:00:08 -0800 From: Mike Smith Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > hi all, > > this patch will put an end to those XXX lines in the > NOTES file, which were regarding uncategorized > options.. such as USERCONFIG etc. > > I am also attaching a tar.gz package which has the > patch compressed and archived. This is NOT how to do this. File a PR containing the patch, and then post a reference to the PR. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon Nov 26 16: 0: 7 2001 Delivered-To: freebsd-current@freebsd.org Received: from web21108.mail.yahoo.com (web21108.mail.yahoo.com [216.136.227.110]) by hub.freebsd.org (Postfix) with SMTP id 9289037B417 for ; Mon, 26 Nov 2001 15:59:57 -0800 (PST) Message-ID: <20011126235957.22305.qmail@web21108.mail.yahoo.com> Received: from [62.254.0.4] by web21108.mail.yahoo.com via HTTP; Mon, 26 Nov 2001 15:59:57 PST Date: Mon, 26 Nov 2001 15:59:57 -0800 (PST) From: Hiten Pandya Subject: Re: i386/32269: [PATCH] - categorizing (XXX Lines) in NOTES To: current@freebsd.org MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="0-1993529430-1006819197=:21268" Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --0-1993529430-1006819197=:21268 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline hi all, i am attaching the pointer to the PR of this... thanks.. and i am very sorry for any misbehavment i have caused and i will see to it so that it does not happen again, regards... Hiten Pandya Note: forwarded message attached. __________________________________________________ Do You Yahoo!? Yahoo! GeoCities - quick and easy web site hosting, just $8.95/month. http://geocities.yahoo.com/ps/info1 --0-1993529430-1006819197=:21268 Content-Type: message/rfc822 X-Apparently-To: hitmaster2k@yahoo.com via web21110.mail.yahoo.com; 25 Nov 2001 06:50:03 -0800 (PST) X-Track: -20:3:64 Received: from mx2.FreeBSD.org (EHLO mx2.freebsd.org) (216.136.204.119) by mta524.mail.yahoo.com with SMTP; 25 Nov 2001 06:50:03 -0800 (PST) Received: from hub.freebsd.org (hub.FreeBSD.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id 3B88156345 for ; Sun, 25 Nov 2001 06:50:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2680337B416 for ; Sun, 25 Nov 2001 06:50:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id fAPEo1t43847; Sun, 25 Nov 2001 06:50:01 -0800 (PST) (envelope-from gnats) Date: Sun, 25 Nov 2001 06:50:01 -0800 (PST) To: Hiten Pandya From: gnats-admin@FreeBSD.org Subject: Re: i386/32269: [PATCH] - categorizing (XXX Lines) in NOTES Reply-To: gnats-admin@FreeBSD.org, freebsd-bugs@FreeBSD.org In-Reply-To: Your message of Sun, 25 Nov 2001 06:43:38 -0800 (PST) <200111251443.fAPEhcH01638@freefall.freebsd.org> Content-Length: 445 Thank you very much for your problem report. It has the internal identification `i386/32269'. The individual assigned to look at your report is: freebsd-bugs. You can access the state of your problem report at any time via this link: http://www.freebsd.org/cgi/query-pr.cgi?pr=32269 >Category: i386 >Responsible: freebsd-bugs >Synopsis: [PATCH] - categorizing (XXX Lines) in NOTES >Arrival-Date: Sun Nov 25 06:50:00 PST 2001 --0-1993529430-1006819197=:21268-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon Nov 26 16:34: 7 2001 Delivered-To: freebsd-current@freebsd.org Received: from flood.ping.uio.no (flood.ping.uio.no [129.240.78.31]) by hub.freebsd.org (Postfix) with ESMTP id DF84337B405; Mon, 26 Nov 2001 16:34:03 -0800 (PST) Received: by flood.ping.uio.no (Postfix, from userid 2602) id F0CF514C52; Tue, 27 Nov 2001 01:34:01 +0100 (CET) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: John Baldwin Cc: Martin Blapp , freebsd-current@freebsd.org Subject: Re: Still panic() with userland binary on CURRENT References: From: Dag-Erling Smorgrav Date: 27 Nov 2001 01:34:01 +0100 In-Reply-To: Message-ID: Lines: 16 User-Agent: Gnus/5.0808 (Gnus v5.8.8) Emacs/20.7 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG John Baldwin writes: > On 24-Nov-01 Martin Blapp wrote: > > - realitexpire, td); > > + realitexpire, td->td_proc); > > > > Fixes the panic 100%. > Ouch, something this simple definitely caused a warning, it looks > like warnings are being ignored. :( No, the last argument is a void * (it's a cookie that's passed to the function specified by the second-last argument) so it escapes normal compiler diagnostics. DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon Nov 26 17:38:27 2001 Delivered-To: freebsd-current@freebsd.org Received: from rover.village.org (rover.bsdimp.com [204.144.255.66]) by hub.freebsd.org (Postfix) with ESMTP id BEF5437B405 for ; Mon, 26 Nov 2001 17:38:24 -0800 (PST) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.11.3/8.11.3) with ESMTP id fAR1cNa02594; Mon, 26 Nov 2001 18:38:23 -0700 (MST) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost [127.0.0.1]) by harmony.village.org (8.11.6/8.11.6) with ESMTP id fAR1cMM08590; Mon, 26 Nov 2001 18:38:23 -0700 (MST) (envelope-from imp@harmony.village.org) Message-Id: <200111270138.fAR1cMM08590@harmony.village.org> To: John McCullough Subject: Re: cardbus help Cc: current@FreeBSD.ORG In-reply-to: Your message of "Sun, 25 Nov 2001 18:40:11 PST." <3C01AB8B.8090009@hmc.edu> References: <3C01AB8B.8090009@hmc.edu> <3C01764B.2030508@hmc.edu> <200111260018.fAQ0I9750531@harmony.village.org> Date: Mon, 26 Nov 2001 18:38:22 -0700 From: Warner Losh Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG In message <3C01AB8B.8090009@hmc.edu> John McCullough writes: : pcib2: routed slot 15 INTA to irq 255 : pccbb: Unable to map IRQ... : panic: resouce_list_release:can't find resource : Debugger("panic") This is a bug in pcibus issue. IRQ 255 should be treated as unallocated, so please route. : Is this also an issue with pci_pci assigning resouces properly? Also : where might I find information on pci<->cardbus behavior if I do find : time to tinker with the code? I'd try the pcmcia standard, the pci standard or the mindshare books. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon Nov 26 19:29: 1 2001 Delivered-To: freebsd-current@freebsd.org Received: from nu.binary.net (nu.binary.net [216.229.0.6]) by hub.freebsd.org (Postfix) with ESMTP id E407F37B405 for ; Mon, 26 Nov 2001 19:28:56 -0800 (PST) Received: from matrix.binary.net (matrix.binary.net [216.229.0.2]) by nu.binary.net (Postfix) with ESMTP id 3CF4D9BCF1; Mon, 26 Nov 2001 21:28:56 -0600 (CST) Received: by matrix.binary.net (Postfix, from userid 1007) id CEA8B1EC587; Mon, 26 Nov 2001 21:28:55 -0600 (CST) Date: Mon, 26 Nov 2001 22:28:55 -0500 From: Nathan Dorfman To: Maxime Henrion Cc: current@FreeBSD.org, David Wolfskill Subject: Re: df -l broken Message-ID: <20011126222855.A14973@rtfm.net> References: <200111252141.fAPLf1639599@trantor.xs4all.nl> <200111252256.fAPMubV20382@bunrab.catwhisker.org> <20011126000722.B280@nebula.noos.fr> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20011126000722.B280@nebula.noos.fr>; from mux@qualys.com on Mon, Nov 26, 2001 at 12:07:22AM +0100 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, Nov 26, 2001 at 12:07:22AM +0100, Maxime Henrion wrote: > If my patch is exact, then the bug should manifest itself only if there > are no network filesystems mounted. Do you have any network fs mounted > on your box ? No networked filesystems here, and no problems: [341]nathan@bokonon:~% df -k Filesystem 1K-blocks Used Avail Capacity Mounted on /dev/da0s1a 99191 52993 38263 58% / devfs 1 1 0 100% /dev /dev/da0s1f 6450317 4945823 988469 83% /usr /dev/da0s1e 99191 7816 83440 9% /var procfs 4 4 0 100% /proc [342]nathan@bokonon:~% df -l Filesystem 512-blocks Used Avail Capacity Mounted on /dev/da0s1a 198382 105986 76526 58% / devfs 2 2 0 100% /dev /dev/da0s1f 12900634 9891646 1976938 83% /usr /dev/da0s1e 198382 15632 166880 9% /var procfs 8 8 0 100% /proc [343]nathan@bokonon:~% uname -a FreeBSD bokonon.rtfm.net 5.0-CURRENT FreeBSD 5.0-CURRENT #2: Sun Nov 4 23:28:25 EST 2001 nathan@bokonon.rtfm.net:/usr/src/sys/i386/compile/SAN_LORENZO i386 > Thanks, > Maxime Henrion > -- > Don't be fooled by cheap finnish imitations ; BSD is the One True Code > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-current" in the body of the message -- "Just because a few of us can read and \ \ \\ Nathan Dorfman write and do a little math, that doesn't \ \\ nathan@rtfm.net mean we deserve to take over the universe." \ \ \\ PGP Key 0832DB12 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon Nov 26 20: 1:14 2001 Delivered-To: freebsd-current@freebsd.org Received: from netau1.alcanet.com.au (ntp.alcanet.com.au [203.62.196.27]) by hub.freebsd.org (Postfix) with ESMTP id 84CD737B416 for ; Mon, 26 Nov 2001 20:01:08 -0800 (PST) Received: from mfg1.cim.alcatel.com.au (mfg1.cim.alcatel.com.au [139.188.23.1]) by netau1.alcanet.com.au (8.9.3 (PHNE_22672)/8.9.3) with ESMTP id PAA23935 for ; Tue, 27 Nov 2001 15:01:00 +1100 (EDT) Received: from gsmx07.alcatel.com.au by cim.alcatel.com.au (PMDF V5.2-32 #37641) with ESMTP id <01KB7B6AQDC0VFJ60A@cim.alcatel.com.au> for freebsd-current@freebsd.org; Tue, 27 Nov 2001 15:00:50 +1100 Received: (from jeremyp@localhost) by gsmx07.alcatel.com.au (8.11.6/8.11.6) id fAR40vX20657 for freebsd-current@freebsd.org; Tue, 27 Nov 2001 15:00:57 +1100 Content-return: prohibited Date: Tue, 27 Nov 2001 15:00:57 +1100 From: Peter Jeremy Subject: panic "handle_written_inodeblock: live inodedep" To: freebsd-current@freebsd.org Mail-Followup-To: freebsd-current@freebsd.org Message-id: <20011127150056.B363@gsmx07.alcatel.com.au> MIME-version: 1.0 Content-type: text/plain; charset=us-ascii Content-disposition: inline User-Agent: Mutt/1.2.5i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Running -CURRENT from Sunday. Background: I had been building various ports and then deleting the work directories. Some time later, I unmounted that filesystem and ran fsck. The fsck reported about 190 files and 4 directories disconnected and reconnected them. Looking through lost+found, I recognized most of the files as belonging to the ports I had deleted. When I deleted the files, the system panic'd as above (and then panic'd again trying to sync). The disk in question probes as WDMA2. The backtrace from the crash dump is: #0 dumpsys () at /3.0/cvs/src/sys/kern/kern_shutdown.c:492 #1 0xc01a289f in boot (howto=260) at /3.0/cvs/src/sys/kern/kern_shutdown.c:335 #2 0xc01a2cd9 in panic (fmt=0xc0298358 "bwrite: buffer is not busy???") at /3.0/cvs/src/sys/kern/kern_shutdown.c:634 #3 0xc01d0bf3 in bwrite (bp=0xc32b5488) at /3.0/cvs/src/sys/kern/vfs_bio.c:670 #4 0xc01d117a in bawrite (bp=0xc32b5488) at /3.0/cvs/src/sys/kern/vfs_bio.c:983 #5 0xc0181e4e in spec_fsync (ap=0xc79b1bac) at /3.0/cvs/src/sys/fs/specfs/spec_vnops.c:409 #6 0xc0181961 in spec_vnoperate (ap=0xc79b1bac) at /3.0/cvs/src/sys/fs/specfs/spec_vnops.c:119 #7 0xc0230ad5 in ffs_sync (mp=0xc0a98a00, waitfor=2, cred=0xc0730c00, td=0xc0343844) at vnode_if.h:441 #8 0xc01dc865 in sync (td=0xc0343844, uap=0x0) at /3.0/cvs/src/sys/kern/vfs_syscalls.c:657 #9 0xc01a2504 in boot (howto=256) at /3.0/cvs/src/sys/kern/kern_shutdown.c:244 #10 0xc01a2cd9 in panic ( fmt=0xc02a0fe0 "handle_written_inodeblock: live inodedep") at /3.0/cvs/src/sys/kern/kern_shutdown.c:634 #11 0xc022cfb6 in handle_written_inodeblock (inodedep=0xc0f35500, bp=0xc32ac0a8) at /3.0/cvs/src/sys/ufs/ffs/ffs_softdep.c:3798 #12 0xc022c892 in softdep_disk_write_complete (bp=0xc32ac0a8) at /3.0/cvs/src/sys/ufs/ffs/ffs_softdep.c:3442 #13 0xc01d338d in bufdone (bp=0xc32ac0a8) at /3.0/cvs/src/sys/sys/buf.h:451 #14 0xc01d32c6 in bufdonebio (bp=0xc32ac0a8) at /3.0/cvs/src/sys/kern/vfs_bio.c:2726 #15 0xc012eaf5 in ad_interrupt (request=0xc0deff40) at /3.0/cvs/src/sys/sys/bio.h:107 #16 0xc0124fea in ata_intr (data=0xc0a3cc00) at /3.0/cvs/src/sys/dev/ata/ata-all.c:588 #17 0xc0196c0e in ithread_loop (arg=0xc0a3cb80) at /3.0/cvs/src/sys/kern/kern_intr.c:532 #18 0xc01961a5 in fork_exit (callout=0xc0196afc , arg=0xc0a3cb80, frame=0xc79b1d48) at /3.0/cvs/src/sys/kern/kern_fork.c:786 The fsck after the panic again found lots of unconnected files, but this time they could all be deleted successfully. Has anyone else seen this? Peter To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon Nov 26 21:13:45 2001 Delivered-To: freebsd-current@freebsd.org Received: from nagual.pp.ru (pobrecita.freebsd.ru [194.87.13.42]) by hub.freebsd.org (Postfix) with ESMTP id 0D7C337B419 for ; Mon, 26 Nov 2001 21:13:41 -0800 (PST) Received: (from ache@localhost) by nagual.pp.ru (8.11.6/8.11.6) id fAR5Ddh42866 for current@freebsd.org; Tue, 27 Nov 2001 08:13:39 +0300 (MSK) (envelope-from ache) Date: Tue, 27 Nov 2001 08:13:38 +0300 From: "Andrey A. Chernov" To: current@freebsd.org Subject: lomac import broke world Message-ID: <20011127051338.GA42852@nagual.pp.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.3.23.2i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG cc -O -pipe -march=pentiumpro -DSETPROCTITLE -DLOGIN_CAP -DVIRTUAL_HOSTING -Wall -DINET6 -I/usr/src/libexec/ftpd -Dmain=ls_main -I/usr/src/libexec/ftpd/../../bin/ls -DUSE_PAM -o ftpd ftpd.o ftpcmd.o logwtmp.o popen.o ls.o cmp.o print.o util.o -lmd -lcrypt -lutil -lopie -lpam ls.o: In function `display': ls.o(.text+0x9b0): undefined reference to `lomac_start' ls.o(.text+0xd02): undefined reference to `get_lattr' ls.o(.text+0xfe2): undefined reference to `lomac_stop' *** Error code 1 -- Andrey A. Chernov http://ache.pp.ru/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Mon Nov 26 21:15:20 2001 Delivered-To: freebsd-current@freebsd.org Received: from panzer.kdm.org (panzer.kdm.org [216.160.178.169]) by hub.freebsd.org (Postfix) with ESMTP id 4087A37B416 for ; Mon, 26 Nov 2001 21:15:09 -0800 (PST) Received: (from ken@localhost) by panzer.kdm.org (8.11.6/8.9.1) id fAR5F4s09509; Mon, 26 Nov 2001 22:15:04 -0700 (MST) (envelope-from ken) Date: Mon, 26 Nov 2001 22:15:04 -0700 From: "Kenneth D. Merry" To: "Andrey A. Chernov" Cc: current@FreeBSD.ORG Subject: Re: lomac import broke world Message-ID: <20011126221504.A9486@panzer.kdm.org> References: <20011127051338.GA42852@nagual.pp.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <20011127051338.GA42852@nagual.pp.ru>; from ache@nagual.pp.ru on Tue, Nov 27, 2001 at 08:13:38AM +0300 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, Nov 27, 2001 at 08:13:38 +0300, Andrey A. Chernov wrote: > cc -O -pipe -march=pentiumpro -DSETPROCTITLE -DLOGIN_CAP -DVIRTUAL_HOSTING > -Wall > -DINET6 -I/usr/src/libexec/ftpd -Dmain=ls_main > -I/usr/src/libexec/ftpd/../../bin/ls -DUSE_PAM > -o ftpd ftpd.o ftpcmd.o logwtmp.o popen.o ls.o cmp.o > print.o > util.o -lmd -lcrypt -lutil -lopie -lpam > ls.o: In function `display': > ls.o(.text+0x9b0): undefined reference to `lomac_start' > ls.o(.text+0xd02): undefined reference to `get_lattr' > ls.o(.text+0xfe2): undefined reference to `lomac_stop' > *** Error code 1 "me too". Ken -- Kenneth Merry ken@kdm.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Tue Nov 27 0: 7: 3 2001 Delivered-To: freebsd-current@freebsd.org Received: from noc1.BelWue.DE (noc1.BelWue.DE [129.143.2.1]) by hub.freebsd.org (Postfix) with ESMTP id 08D9D37B416 for ; Tue, 27 Nov 2001 00:06:57 -0800 (PST) Received: from obiwankenobi.science-computing.de (blackhole.science-computing.de [193.197.16.3]) by noc1.BelWue.DE with SMTP id JAA17129; Tue, 27 Nov 2001 09:06:52 +0100 (MET) env-from (C.Herrmann@science-computing.de) Received: from scmsrv1.science-computing.de (scmsrv1.science-computing.de [10.148.25.58]) by obiwankenobi.science-computing.de (8.9.3/8.8.8) with ESMTP id JAA31717; Tue, 27 Nov 2001 09:06:48 +0100 Received: from localhost (localhost [127.0.0.1]) by scmsrv1.science-computing.de (8.11.3/8.11.1) with ESMTP id fAR86mO50040; Tue, 27 Nov 2001 09:06:48 +0100 (CET) (envelope-from chris@scmsrv1.science-computing.de) Date: Tue, 27 Nov 2001 09:06:48 +0100 (CET) From: Christoph Herrmann To: "Kenneth D. Merry" Cc: Christoph Herrmann , current@FreeBSD.ORG Subject: Re: cdrecord produces broken CDs on -CURRENT In-Reply-To: <20011126133027.A5112@panzer.kdm.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, 26 Nov 2001, Kenneth D. Merry wrote: > So did you try the statically linked -stable binary on -current? Yes, I used the newest version from the ports (compiled on -CURRENT) and the staticly linked from -STABLE both on -CURRENT, and the CDs are identical. > Is it completely static? (i.e. ldd cdrecord should report that it isn't a > dynamic executable) Yes it is. > That may help narrow the problem down somewhat. I'm not sure, though, > whether the -stable binary will work with the pass interface on -current. It doesn't matter wether I take cdrecord from -CURRENT or from -STABLE, the CDs (I burn on -CURRENT) are identical. > Are there any areas with good data on the CD? i.e. can you see any pattern > to the corruption? If you compare the same CD burned from -current and > -stable you might begin to see a patern. Yes, about half of the CD is correct, and the rest is filled up with binary zero. If there are data other then zero on the CD, then they are correct. > Is the table of contents correct? I don't know, but I don't think so. The first 60kB (exact 60kB!) of the broken CD are zeros, and I can't mount it. > Ken > -- > Kenneth Merry > ken@kdm.org > Ciao Christoph &:-) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Tue Nov 27 0:20: 2 2001 Delivered-To: freebsd-current@freebsd.org Received: from sax.sax.de (sax.sax.de [193.175.26.33]) by hub.freebsd.org (Postfix) with ESMTP id 5BA5437B41C for ; Tue, 27 Nov 2001 00:19:57 -0800 (PST) Received: (from uucp@localhost) by sax.sax.de (8.9.3/8.9.3) with UUCP id JAA02755 for freebsd-current@freebsd.org; Tue, 27 Nov 2001 09:19:55 +0100 (CET) Received: (from j@localhost) by uriah.heep.sax.de (8.11.6/8.11.6) id fAR7v9308525; Tue, 27 Nov 2001 08:57:09 +0100 (MET) (envelope-from j) Date: Tue, 27 Nov 2001 08:57:09 +0100 (MET) Message-Id: <200111270757.fAR7v9308525@uriah.heep.sax.de> Mime-Version: 1.0 X-Newsreader: knews 1.0b.1 Reply-To: joerg_wunsch@uriah.heep.sax.de (Joerg Wunsch) Organization: Private BSD site, Dresden X-Phone: +49-351-2012 669 X-PGP-Fingerprint: DC 47 E6 E4 FF A6 E9 8F 93 21 E0 7D F9 12 D6 4E References: <200111252141.fAPLf1639599@trantor.xs4all.nl> <20011126000531.A280@nebula.noos.fr> From: j@uriah.heep.sax.de (Joerg Wunsch) Subject: Re: df -l broken X-Original-Newsgroups: local.freebsd.current To: freebsd-current@freebsd.org Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Maxime Henrion wrote: > Could you please test the attached patch ? I did it in a hurry but > it may fix the problem. .... if (i > 0) *(--strptr) = NULL; free(listptr); return (str); df.c: 569 lines, 14158 characters uriah # make cc -O2 -pipe -I/usr/src/bin/df/../../sbin/mount -Wall -Wformat -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized -Werror -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -c /usr/src/bin/df/df.c cc -O2 -pipe -I/usr/src/bin/df/../../sbin/mount -Wall -Wformat -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized -Werror -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -static -o df df.o vfslist.o -lm uriah # make install install -c -s -o root -g wheel -m 555 df /bin install -c -o root -g wheel -m 444 df.1.gz /usr/share/man/man1 uriah # df -l Segmentation fault (core dumped) .... *(--strptr) = NULL; free(listptr); return (str); } ~ df.c: 568 lines, 14145 characters uriah # make cc -O2 -pipe -I/usr/src/bin/df/../../sbin/mount -Wall -Wformat -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized -Werror -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -c /usr/src/bin/df/df.c cc -O2 -pipe -I/usr/src/bin/df/../../sbin/mount -Wall -Wformat -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized -Werror -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -static -o df df.o vfslist.o -lm uriah # make install install -c -s -o root -g wheel -m 555 df /bin install -c -o root -g wheel -m 444 df.1.gz /usr/share/man/man1 uriah # df -l uriah # -- cheers, J"org .-.-. --... ...-- -.. . DL8DTL http://www.sax.de/~joerg/ NIC: JW11-RIPE Never trust an operating system you don't have sources for. ;-) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Tue Nov 27 0:37: 0 2001 Delivered-To: freebsd-current@freebsd.org Received: from noc1.BelWue.DE (noc1.BelWue.DE [129.143.2.1]) by hub.freebsd.org (Postfix) with ESMTP id 4ABC637B405 for ; Tue, 27 Nov 2001 00:36:56 -0800 (PST) Received: from obiwankenobi.science-computing.de (blackhole.science-computing.de [193.197.16.3]) by noc1.BelWue.DE with SMTP id JAA28591; Tue, 27 Nov 2001 09:36:53 +0100 (MET) env-from (C.Herrmann@science-computing.de) Received: from scmsrv1.science-computing.de (scmsrv1.science-computing.de [10.148.25.58]) by obiwankenobi.science-computing.de (8.9.3/8.8.8) with ESMTP id JAA00301; Tue, 27 Nov 2001 09:36:53 +0100 Received: from localhost (localhost [127.0.0.1]) by scmsrv1.science-computing.de (8.11.3/8.11.1) with ESMTP id fAR8arO50124; Tue, 27 Nov 2001 09:36:53 +0100 (CET) (envelope-from chris@scmsrv1.science-computing.de) Date: Tue, 27 Nov 2001 09:36:53 +0100 (CET) From: Christoph Herrmann To: Joerg Wunsch Cc: freebsd-current@FreeBSD.ORG Subject: Re: cdrecord produces broken CDs on -CURRENT In-Reply-To: <200111262158.fAQLwXv05601@uriah.heep.sax.de> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=ISO-8859-1 Content-Transfer-Encoding: QUOTED-PRINTABLE Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, 26 Nov 2001, Joerg Wunsch wrote: > "Kenneth D. Merry" wrote: >=20 > > Are there any areas with good data on the CD? i.e. can you see any > > pattern to the corruption? If you compare the same CD burned from > > -current and -stable you might begin to see a patern. >=20 > I tried a test-burn with a FreeBSD-current from yesterday, on a YAMAHA > CRW2100S 1.0H writer (writing a CD-RW), and can't see any failure. > It's only a small directory tree, but MD5-comparing the tree on the > CD-RW with the original on UFS only reveals the added TRANS.TBL files, > no other differences. >=20 > # cdrecord -version > Cdrecord 1.9 (i386-unknown-freebsd5.0) Copyright (C) 1995-2000 J=F6rg Sch= illing > # ls -l `which cdrecord` > -r-xr-xr-x 1 root wheel - 163392 Apr 4 2001 /usr/local/bin/cdrecord* > # ldd `which cdrecord` > /usr/local/bin/cdrecord: > libcam.so.2 =3D> /usr/lib/libcam.so.2 (0x2808a000) > libc.so.5 =3D> /usr/lib/libc.so.5 (0x2809a000) > libsbuf.so.2 =3D> /usr/lib/libsbuf.so.2 (0x2814e000) >=20 > (I haven't rebuilt the binary after upgrading -current, for months > as you can see.) Maybe there are other problems. But I had no problems (burning CDs on -CURRENT) until the beginning of october. (I run make world about once a week). And with -STABLE everything is fine until now. It is the same box, I (try to) burn the same image, the only difference is the FreeBSD version. So it can't be only a hardware problem. Ciao Christoph &:-) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Tue Nov 27 1:50:49 2001 Delivered-To: freebsd-current@freebsd.org Received: from smtp013.mail.yahoo.com (smtp013.mail.yahoo.com [216.136.173.57]) by hub.freebsd.org (Postfix) with SMTP id 44DE737B835 for ; Tue, 27 Nov 2001 01:41:28 -0800 (PST) Received: from mkc-65-30-96-67.kc.rr.com (HELO yahoo.com) (65.30.96.67) by smtp.mail.vip.sc5.yahoo.com with SMTP; 27 Nov 2001 09:41:26 -0000 Message-ID: <3C035FC4.501@yahoo.com> Date: Tue, 27 Nov 2001 03:41:24 -0600 From: Jim Bryant Reply-To: kc5vdj@yahoo.com User-Agent: Mozilla/5.0 (X11; U; Linux i386; en-US; rv:0.9.4) Gecko/20011019 Netscape6/6.2 X-Accept-Language: en-us MIME-Version: 1.0 To: Andrew Kenneth Milton Cc: Peter Jeremy , freebsd-current@FreeBSD.ORG Subject: Re: Panic changing screen mode with vidcontrol References: <20011126173543.A7551@gsmx07.alcatel.com.au> <20011126182614.H12912@zeus.theinternet.com.au> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Andrew Kenneth Milton wrote > +-------[ Peter Jeremy ]---------------------- > | Having installed a new kernel and userland from sources about a day > | old, my vidcontrol command now causes a panic: > > [snip] > > | The command I used was "vidcontrol 132x60" after confirming that > | this was listed in "vidcontrol -i mode". I have previously been > | using VESA_132x60, but that also panics now. > > Was X running ? > > I get a panic on changing to VESA modes when X is already running. It will do this regardless if X is running. jim -- ET has one helluva sense of humor! He's always anal-probing right-wing schizos! ----------------------------------------------------- POWER TO THE PEOPLE! ----------------------------------------------------- "Religious fundamentalism is the biggest threat to international security that exists today." United Nations Secretary General B.B.Ghali, 1995 _________________________________________________________ Do You Yahoo!? Get your free @yahoo.com address at http://mail.yahoo.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Tue Nov 27 1:50:52 2001 Delivered-To: freebsd-current@freebsd.org Received: from smtp011.mail.yahoo.com (smtp011.mail.yahoo.com [216.136.173.31]) by hub.freebsd.org (Postfix) with SMTP id 5E04937C287 for ; Tue, 27 Nov 2001 01:39:55 -0800 (PST) Received: from mkc-65-30-96-67.kc.rr.com (HELO yahoo.com) (65.30.96.67) by smtp.mail.vip.sc5.yahoo.com with SMTP; 27 Nov 2001 09:39:51 -0000 Message-ID: <3C035F65.9080903@yahoo.com> Date: Tue, 27 Nov 2001 03:39:49 -0600 From: Jim Bryant Reply-To: kc5vdj@yahoo.com User-Agent: Mozilla/5.0 (X11; U; Linux i386; en-US; rv:0.9.4) Gecko/20011019 Netscape6/6.2 X-Accept-Language: en-us MIME-Version: 1.0 To: Peter Jeremy Cc: freebsd-current@freebsd.org Subject: Re: Panic changing screen mode with vidcontrol References: <20011126173543.A7551@gsmx07.alcatel.com.au> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG VESA is broked. Remove VESA from your config. Been this way for months. It also will panic once in a VESA mode, such as my favorite and yours, 132x60, when switching from vty to vty. Peter Jeremy wrote: > Having installed a new kernel and userland from sources about a day > old, my vidcontrol command now causes a panic: > > Fatal trap 12: page fault while in vm86 mode > fault virtual address = 0xc359b > fault code = user read, page not present > instruction pointer = 0xc000:0x359b > stack pointer = 0x0:0xf82 > frame pointer = 0x0:0xfdc > code segment = base 0x20000, limit 0x5004f, type 0x0 > = DPL 0, pres 0, def32 0, gran 0 > processor eflags = interrupt enabled, resume, vm86, IOPL = 0 > current process = 57775 (vidcontrol) > > The backtrace shows nothing useful - gdb doesn't seem to handle > tracing through vm86 :-(. > > The command I used was "vidcontrol 132x60" after confirming that > this was listed in "vidcontrol -i mode". I have previously been > using VESA_132x60, but that also panics now. > > Any suggestions where to look? > > Peter > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-current" in the body of the message > > jim -- ET has one helluva sense of humor! He's always anal-probing right-wing schizos! ----------------------------------------------------- POWER TO THE PEOPLE! ----------------------------------------------------- "Religious fundamentalism is the biggest threat to international security that exists today." United Nations Secretary General B.B.Ghali, 1995 _________________________________________________________ Do You Yahoo!? Get your free @yahoo.com address at http://mail.yahoo.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Tue Nov 27 2:42:31 2001 Delivered-To: freebsd-current@freebsd.org Received: from theinternet.com.au (c2731.kelvn1.qld.optusnet.com.au [203.164.207.8]) by hub.freebsd.org (Postfix) with ESMTP id EB5B337B7E6 for ; Tue, 27 Nov 2001 02:42:23 -0800 (PST) Received: (from akm@localhost) by theinternet.com.au (8.11.6/8.11.4) id fARAg9g22381; Tue, 27 Nov 2001 20:42:09 +1000 (EST) (envelope-from akm) Date: Tue, 27 Nov 2001 20:42:09 +1000 From: Andrew Kenneth Milton To: Jim Bryant Cc: Andrew Kenneth Milton , Peter Jeremy , freebsd-current@FreeBSD.ORG Subject: Re: Panic changing screen mode with vidcontrol Message-ID: <20011127204209.W12912@zeus.theinternet.com.au> References: <20011126173543.A7551@gsmx07.alcatel.com.au> <20011126182614.H12912@zeus.theinternet.com.au> <3C035FC4.501@yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.4i In-Reply-To: <3C035FC4.501@yahoo.com>; from Jim Bryant on Tue, Nov 27, 2001 at 03:41:24AM -0600 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG +-------[ Jim Bryant ]---------------------- | Andrew Kenneth Milton wrote | | > +-------[ Peter Jeremy ]---------------------- | > | Having installed a new kernel and userland from sources about a day | > | old, my vidcontrol command now causes a panic: | > | > [snip] | > | > | The command I used was "vidcontrol 132x60" after confirming that | > | this was listed in "vidcontrol -i mode". I have previously been | > | using VESA_132x60, but that also panics now. | > | > Was X running ? | > | > I get a panic on changing to VESA modes when X is already running. | | | It will do this regardless if X is running. Not for me d8) Only when I have X running. When I don't have X I can happily switch between different consoles and modes. -- Totally Holistic Enterprises Internet| | Andrew Milton The Internet (Aust) Pty Ltd | | ACN: 082 081 472 ABN: 83 082 081 472 | M:+61 416 022 411 | Carpe Daemon PO Box 837 Indooroopilly QLD 4068 |akm@theinternet.com.au| To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Tue Nov 27 3: 8: 8 2001 Delivered-To: freebsd-current@freebsd.org Received: from wint.itfs.nsk.su (wint.itfs.nsk.su [212.20.32.43]) by hub.freebsd.org (Postfix) with ESMTP id 4120837B405 for ; Tue, 27 Nov 2001 03:08:00 -0800 (PST) Received: (from nnd@localhost) by wint.itfs.nsk.su (8.11.6/8.11.4) id fARB7vR41526; Tue, 27 Nov 2001 17:07:57 +0600 (NOVT) (envelope-from nnd) Date: Tue, 27 Nov 2001 17:07:57 +0600 (NOVT) Message-Id: <200111271107.fARB7vR41526@wint.itfs.nsk.su> From: nnd@mail.nsk.ru (Nickolay Dudorov) To: current@freebsd.org Subject: Re: lomac import broke world In-Reply-To: <20011127051338.GA42852@nagual.pp.ru> User-Agent: tin/1.5.9-20010723 ("Chord of Souls") (UNIX) (FreeBSD/5.0-CURRENT (i386)) Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG In article <20011127051338.GA42852@nagual.pp.ru> "Andrey A. Chernov" wrote: > cc -O -pipe -march=pentiumpro -DSETPROCTITLE -DLOGIN_CAP -DVIRTUAL_HOSTING > -Wall > -DINET6 -I/usr/src/libexec/ftpd -Dmain=ls_main > -I/usr/src/libexec/ftpd/../../bin/ls -DUSE_PAM > -o ftpd ftpd.o ftpcmd.o logwtmp.o popen.o ls.o cmp.o > print.o > util.o -lmd -lcrypt -lutil -lopie -lpam > ls.o: In function `display': > ls.o(.text+0x9b0): undefined reference to `lomac_start' > ls.o(.text+0xd02): undefined reference to `get_lattr' > ls.o(.text+0xfe2): undefined reference to `lomac_stop' > *** Error code 1 I use the next patch to buildworld : N.Dudorov Index: Makefile =================================================================== RCS file: /scratch/CVS/src/libexec/ftpd/Makefile,v retrieving revision 1.44 diff -b -u -r1.44 Makefile --- Makefile 9 Jul 2001 17:46:24 -0000 1.44 +++ Makefile 27 Nov 2001 11:04:44 -0000 @@ -19,7 +19,7 @@ LSDIR= ../../bin/ls .PATH: ${.CURDIR}/${LSDIR} -SRCS+= ls.c cmp.c print.c util.c +SRCS+= ls.c cmp.c print.c util.c lomac.c CFLAGS+=-Dmain=ls_main -I${.CURDIR}/${LSDIR} .if !defined(NOPAM) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Tue Nov 27 5:19:25 2001 Delivered-To: freebsd-current@freebsd.org Received: from fledge.watson.org (fledge.watson.org [204.156.12.50]) by hub.freebsd.org (Postfix) with ESMTP id 7752137B419 for ; Tue, 27 Nov 2001 05:19:21 -0800 (PST) Received: from localhost (ilmar@localhost) by fledge.watson.org (8.11.6/8.11.5) with ESMTP id fARDJ5d09701 for ; Tue, 27 Nov 2001 08:19:05 -0500 (EST) (envelope-from ilmar@watson.org) Date: Tue, 27 Nov 2001 08:19:04 -0500 (EST) From: "Ilmar S. Habibulin" To: current@freebsd.org Subject: can somebody add new usb scanner? In-Reply-To: <200111271107.fARB7vR41526@wint.itfs.nsk.su> Message-ID: <20011127081459.E8118-100000@fledge.watson.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG It works with latest sane. Index: usbdevs =================================================================== RCS file: /mnt/cvs/FreeBSD/src/sys/dev/usb/usbdevs,v retrieving revision 1.67 diff -r1.67 usbdevs 764a765 > product MUSTEK 1200CUPLUS 0x0008 1200 CU Plus scanner Index: usbdevs.h =================================================================== RCS file: /mnt/cvs/FreeBSD/src/sys/dev/usb/usbdevs.h,v retrieving revision 1.83 diff -r1.83 usbdevs.h 1c1 < /* $FreeBSD: src/sys/dev/usb/usbdevs.h,v 1.83 2001/11/19 18:41:35 sumikawa Exp $ */ --- > /* $FreeBSD$ */ 771a772 > #define USB_PRODUCT_MUSTEK_1200CUPLUS 0x0008 /* 1200 CU Plus scanner */ Index: usbdevs_data.h =================================================================== RCS file: /mnt/cvs/FreeBSD/src/sys/dev/usb/usbdevs_data.h,v retrieving revision 1.83 diff -r1.83 usbdevs_data.h 1c1 < /* $FreeBSD: src/sys/dev/usb/usbdevs_data.h,v 1.83 2001/11/19 18:41:35 sumikawa Exp $ */ --- > /* $FreeBSD$ */ 1504a1505,1510 > }, > { > USB_VENDOR_MUSTEK, USB_PRODUCT_MUSTEK_1200CUPLUS, > 0, > "Mustek Systems, Inc.", > "1200 CU Plus scanner", Index: uscanner.c =================================================================== RCS file: /mnt/cvs/FreeBSD/src/sys/dev/usb/uscanner.c,v retrieving revision 1.17 diff -r1.17 uscanner.c 129a130 > { USB_VENDOR_MUSTEK, USB_PRODUCT_MUSTEK_1200CUPLUS }, To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Tue Nov 27 6:36: 1 2001 Delivered-To: freebsd-current@freebsd.org Received: from bunrab.catwhisker.org (adsl-63-193-123-122.dsl.snfc21.pacbell.net [63.193.123.122]) by hub.freebsd.org (Postfix) with ESMTP id 7241437B442; Tue, 27 Nov 2001 06:35:49 -0800 (PST) Received: (from david@localhost) by bunrab.catwhisker.org (8.11.6/8.11.6) id fAREZn282122; Tue, 27 Nov 2001 06:35:49 -0800 (PST) (envelope-from david) Date: Tue, 27 Nov 2001 06:35:49 -0800 (PST) From: David Wolfskill Message-Id: <200111271435.fAREZn282122@bunrab.catwhisker.org> To: current@freebsd.org Subject: rm -rf /usr/obj/usr/src/usr.bin/tip helps build -CURRENT Cc: imp@freebsd.org Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Found this to be helpful after seeing: >>> stage 2: cleaning up the object tree ... ===> usr.bin/tip ".depend", line 886: Inconsistent operator for tip make: fatal errors encountered -- cannot continue and the tail end of /usr/obj/usr/src/usr.bin/tip/.depend (which was 886 lines long) was: /usr/obj/usr/src/i386/usr/include/errno.h \ /usr/obj/usr/src/i386/usr/include/limits.h \ /usr/obj/usr/src/i386/usr/include/sys/syslimits.h tip: /usr/obj/usr/src/i386/usr/lib/libc.a I don't use -DNOCLEAN or anything like that, so it looks as if forcibly removing the /usr/obj/usr/src/usr.bin/tip directory does something that the normal "make buildworld" does not... and which is useful in this case. Still building, but I'm way beyond that stage, at least. Cc:ing Warner, in case UPDATING might merit a brief mention. Cheers, david -- David H. Wolfskill david@catwhisker.org As a computing professional, I believe it would be unethical for me to advise, recommend, or support the use (save possibly for personal amusement) of any product that is or depends on any Microsoft product. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Tue Nov 27 7:19:38 2001 Delivered-To: freebsd-current@freebsd.org Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by hub.freebsd.org (Postfix) with ESMTP id 3C11737B416; Tue, 27 Nov 2001 07:19:29 -0800 (PST) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.11.6/8.11.2) id fARFJAk88615; Tue, 27 Nov 2001 17:19:10 +0200 (EET) (envelope-from ru) Date: Tue, 27 Nov 2001 17:19:10 +0200 From: Ruslan Ermilov To: David Wolfskill Cc: current@FreeBSD.ORG, imp@FreeBSD.ORG Subject: Re: rm -rf /usr/obj/usr/src/usr.bin/tip helps build -CURRENT Message-ID: <20011127171910.E67032@sunbay.com> References: <200111271435.fAREZn282122@bunrab.catwhisker.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200111271435.fAREZn282122@bunrab.catwhisker.org> User-Agent: Mutt/1.3.23i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, Nov 27, 2001 at 06:35:49AM -0800, David Wolfskill wrote: > Found this to be helpful after seeing: > > >>> stage 2: cleaning up the object tree > ... > ===> usr.bin/tip > ".depend", line 886: Inconsistent operator for tip > make: fatal errors encountered -- cannot continue > > > and the tail end of /usr/obj/usr/src/usr.bin/tip/.depend (which was 886 > lines long) was: > > /usr/obj/usr/src/i386/usr/include/errno.h \ > /usr/obj/usr/src/i386/usr/include/limits.h \ > /usr/obj/usr/src/i386/usr/include/sys/syslimits.h > tip: /usr/obj/usr/src/i386/usr/lib/libc.a > > > I don't use -DNOCLEAN or anything like that, so it looks as if forcibly > removing the /usr/obj/usr/src/usr.bin/tip directory does something that > the normal "make buildworld" does not... and which is useful in this case. > > Still building, but I'm way beyond that stage, at least. > > Cc:ing Warner, in case UPDATING might merit a brief mention. > Simply removing the /usr/obj/usr/src/usr.bin/tip/.depend file should work as well. And yes, mentioning this in UPDATING ASAP would be great. Cheers, -- Ruslan Ermilov Oracle Developer/DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Tue Nov 27 7:44:19 2001 Delivered-To: freebsd-current@freebsd.org Received: from Awfulhak.org (gw.Awfulhak.org [217.204.245.18]) by hub.freebsd.org (Postfix) with ESMTP id E4DCF37B405; Tue, 27 Nov 2001 07:44:10 -0800 (PST) Received: from hak.lan.Awfulhak.org (root@hak.lan.Awfulhak.org [fec0::1:12]) by Awfulhak.org (8.11.6/8.11.6) with ESMTP id fARFi6R50924; Tue, 27 Nov 2001 15:44:07 GMT (envelope-from brian@freebsd-services.com) Received: from hak.lan.Awfulhak.org (brian@localhost [127.0.0.1]) by hak.lan.Awfulhak.org (8.11.6/8.11.6) with ESMTP id fARFi6U47890; Tue, 27 Nov 2001 15:44:06 GMT (envelope-from brian@freebsd-services.com) Message-Id: <200111271544.fARFi6U47890@hak.lan.Awfulhak.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Ruslan Ermilov Cc: David Wolfskill , current@FreeBSD.ORG, imp@FreeBSD.ORG, brian@freebsd-services.com Subject: Re: rm -rf /usr/obj/usr/src/usr.bin/tip helps build -CURRENT In-Reply-To: Message from Ruslan Ermilov of "Tue, 27 Nov 2001 17:19:10 +0200." <20011127171910.E67032@sunbay.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Tue, 27 Nov 2001 15:44:06 +0000 From: Brian Somers Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > On Tue, Nov 27, 2001 at 06:35:49AM -0800, David Wolfskill wrote: > > Found this to be helpful after seeing: > > > > >>> stage 2: cleaning up the object tree > > ... > > ===> usr.bin/tip > > ".depend", line 886: Inconsistent operator for tip > > make: fatal errors encountered -- cannot continue > > > > > > and the tail end of /usr/obj/usr/src/usr.bin/tip/.depend (which was 886 > > lines long) was: > > > > /usr/obj/usr/src/i386/usr/include/errno.h \ > > /usr/obj/usr/src/i386/usr/include/limits.h \ > > /usr/obj/usr/src/i386/usr/include/sys/syslimits.h > > tip: /usr/obj/usr/src/i386/usr/lib/libc.a > > > > > > I don't use -DNOCLEAN or anything like that, so it looks as if forcibly > > removing the /usr/obj/usr/src/usr.bin/tip directory does something that > > the normal "make buildworld" does not... and which is useful in this case. > > > > Still building, but I'm way beyond that stage, at least. > > > > Cc:ing Warner, in case UPDATING might merit a brief mention. > > > Simply removing the /usr/obj/usr/src/usr.bin/tip/.depend file should > work as well. And yes, mentioning this in UPDATING ASAP would be > great. I don't think this is UPDATING material. People shouldn't be using -DNOCLEAN unless they understand the consequences. > Cheers, > -- > Ruslan Ermilov Oracle Developer/DBA, > ru@sunbay.com Sunbay Software AG, > ru@FreeBSD.org FreeBSD committer, > +380.652.512.251 Simferopol, Ukraine > > http://www.FreeBSD.org The Power To Serve > http://www.oracle.com Enabling The Information Age -- Brian http://www.freebsd-services.com/ Don't _EVER_ lose your sense of humour ! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Tue Nov 27 7:49:12 2001 Delivered-To: freebsd-current@freebsd.org Received: from magic.adaptec.com (magic.adaptec.com [208.236.45.80]) by hub.freebsd.org (Postfix) with ESMTP id 6CEC037B506; Tue, 27 Nov 2001 07:48:56 -0800 (PST) Received: from redfish.adaptec.com (redfish.adaptec.com [162.62.50.11]) by magic.adaptec.com (8.8.8+Sun/8.8.8) with ESMTP id HAA19095; Tue, 27 Nov 2001 07:48:01 -0800 (PST) Received: from btc.btc.adaptec.com (btc.btc.adaptec.com [162.62.64.10]) by redfish.adaptec.com (8.8.8+Sun/8.8.8) with ESMTP id HAA26304; Tue, 27 Nov 2001 07:32:59 -0800 (PST) Received: from hollin.btc.adaptec.com (hollin [162.62.149.56]) by btc.btc.adaptec.com (8.8.8+Sun/8.8.8) with ESMTP id IAA03439; Tue, 27 Nov 2001 08:47:58 -0700 (MST) Received: (from scottl@localhost) by hollin.btc.adaptec.com (8.11.6/8.11.4) id fARFjrg13051; Tue, 27 Nov 2001 08:45:53 -0700 (MST) (envelope-from scottl) Date: Tue, 27 Nov 2001 08:45:53 -0700 From: Scott Long To: Brian Somers Cc: Ruslan Ermilov , David Wolfskill , current@freebsd.org, imp@freebsd.org Subject: Re: rm -rf /usr/obj/usr/src/usr.bin/tip helps build -CURRENT Message-ID: <20011127084553.B11476@hollin.btc.adaptec.com> References: <20011127171910.E67032@sunbay.com> <200111271544.fARFi6U47890@hak.lan.Awfulhak.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200111271544.fARFi6U47890@hak.lan.Awfulhak.org> User-Agent: Mutt/1.3.23i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, Nov 27, 2001 at 03:44:06PM +0000, Brian Somers wrote: > > On Tue, Nov 27, 2001 at 06:35:49AM -0800, David Wolfskill wrote: > > > [...] > > > > > > I don't use -DNOCLEAN or anything like that, so it looks as if forcibly ^^^^^^^^^^^^^^^^^^^^^ > > > removing the /usr/obj/usr/src/usr.bin/tip directory does something that > > > the normal "make buildworld" does not... and which is useful in this case. > > > > > > Still building, but I'm way beyond that stage, at least. > > > > > > Cc:ing Warner, in case UPDATING might merit a brief mention. > > > > > Simply removing the /usr/obj/usr/src/usr.bin/tip/.depend file should > > work as well. And yes, mentioning this in UPDATING ASAP would be > > great. > > I don't think this is UPDATING material. People shouldn't be using > -DNOCLEAN unless they understand the consequences. Ahh, but he's not using -DNOCLEAN. Scott To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Tue Nov 27 7:50:40 2001 Delivered-To: freebsd-current@freebsd.org Received: from birch.ripe.net (birch.ripe.net [193.0.1.96]) by hub.freebsd.org (Postfix) with ESMTP id D94B937B405; Tue, 27 Nov 2001 07:50:28 -0800 (PST) Received: from laptop.6bone.nl (penguin.ripe.net [193.0.1.232]) by birch.ripe.net (8.11.6/8.11.6) with SMTP id fARFoPI22317; Tue, 27 Nov 2001 16:50:25 +0100 Received: (nullmailer pid 10127 invoked by uid 1000); Tue, 27 Nov 2001 15:50:24 -0000 Date: Tue, 27 Nov 2001 16:50:24 +0100 From: Mark Santcroos To: Brian Somers Cc: Ruslan Ermilov , David Wolfskill , current@FreeBSD.ORG, imp@FreeBSD.ORG Subject: Re: rm -rf /usr/obj/usr/src/usr.bin/tip helps build -CURRENT Message-ID: <20011127165024.A11545@laptop.6bone.nl> References: <200111271544.fARFi6U47890@hak.lan.Awfulhak.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200111271544.fARFi6U47890@hak.lan.Awfulhak.org>; from brian@freebsd-services.com on Tue, Nov 27, 2001 at 03:44:06PM +0000 X-Handles: MS6-6BONE, MS18417-RIPE Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, Nov 27, 2001 at 03:44:06PM +0000, Brian Somers wrote: > > > I don't use -DNOCLEAN or anything like that, so it looks as if forcibly > > > removing the /usr/obj/usr/src/usr.bin/tip directory does something that > > > the normal "make buildworld" does not... and which is useful in this case. [...] > I don't think this is UPDATING material. People shouldn't be using > -DNOCLEAN unless they understand the consequences. He (/I) didnt. Mark -- Mark Santcroos RIPE Network Coordination Centre http://www.ripe.net/home/mark/ New Projects Group/TTM To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Tue Nov 27 7:53:15 2001 Delivered-To: freebsd-current@freebsd.org Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by hub.freebsd.org (Postfix) with ESMTP id 1E1CB37B507; Tue, 27 Nov 2001 07:52:39 -0800 (PST) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.11.6/8.11.2) id fARFq2S94520; Tue, 27 Nov 2001 17:52:02 +0200 (EET) (envelope-from ru) Date: Tue, 27 Nov 2001 17:52:02 +0200 From: Ruslan Ermilov To: Brian Somers Cc: David Wolfskill , current@FreeBSD.ORG, imp@FreeBSD.ORG Subject: Re: rm -rf /usr/obj/usr/src/usr.bin/tip helps build -CURRENT Message-ID: <20011127175202.K67032@sunbay.com> References: <20011127171910.E67032@sunbay.com> <200111271544.fARFi6U47890@hak.lan.Awfulhak.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200111271544.fARFi6U47890@hak.lan.Awfulhak.org> User-Agent: Mutt/1.3.23i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, Nov 27, 2001 at 03:44:06PM +0000, Brian Somers wrote: > > On Tue, Nov 27, 2001 at 06:35:49AM -0800, David Wolfskill wrote: > > > Found this to be helpful after seeing: > > > > > > >>> stage 2: cleaning up the object tree > > > ... > > > ===> usr.bin/tip > > > ".depend", line 886: Inconsistent operator for tip > > > make: fatal errors encountered -- cannot continue > > > > > > > > > and the tail end of /usr/obj/usr/src/usr.bin/tip/.depend (which was 886 > > > lines long) was: > > > > > > /usr/obj/usr/src/i386/usr/include/errno.h \ > > > /usr/obj/usr/src/i386/usr/include/limits.h \ > > > /usr/obj/usr/src/i386/usr/include/sys/syslimits.h > > > tip: /usr/obj/usr/src/i386/usr/lib/libc.a > > > > > > > > > I don't use -DNOCLEAN or anything like that, so it looks as if forcibly > > > removing the /usr/obj/usr/src/usr.bin/tip directory does something that > > > the normal "make buildworld" does not... and which is useful in this case. > > > > > > Still building, but I'm way beyond that stage, at least. > > > > > > Cc:ing Warner, in case UPDATING might merit a brief mention. > > > > > Simply removing the /usr/obj/usr/src/usr.bin/tip/.depend file should > > work as well. And yes, mentioning this in UPDATING ASAP would be > > great. > > I don't think this is UPDATING material. People shouldn't be using > -DNOCLEAN unless they understand the consequences. > The problem is that those not using -DNOCLEAN are affected as well. The explanation lies in the fact that before these changes were repo-backed-out, "tip" used to be a PROG under usr.bin/tip, and as such /usr/obj/usr/src/usr.bin/tip/.depend had a regular ":" dependency line for "tip". Now, "tip" is back again a SUBDIR, and bsd.subdir.mk has the following line that correlates with the dependency line from a stale .depend: ${SUBDIR}:: Cheers, -- Ruslan Ermilov Oracle Developer/DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Tue Nov 27 7:56:48 2001 Delivered-To: freebsd-current@freebsd.org Received: from axl.seasidesoftware.co.za (axl.seasidesoftware.co.za [196.31.7.201]) by hub.freebsd.org (Postfix) with ESMTP id D283A37B416; Tue, 27 Nov 2001 07:56:43 -0800 (PST) Received: from sheldonh (helo=axl.seasidesoftware.co.za) by axl.seasidesoftware.co.za with local-esmtp (Exim 3.33 #1) id 168kcM-000Lcj-00; Tue, 27 Nov 2001 17:57:54 +0200 From: Sheldon Hearn To: Mark Santcroos Cc: Brian Somers , Ruslan Ermilov , David Wolfskill , current@FreeBSD.ORG, imp@FreeBSD.ORG Subject: Re: rm -rf /usr/obj/usr/src/usr.bin/tip helps build -CURRENT In-reply-to: Your message of "Tue, 27 Nov 2001 16:50:24 +0100." <20011127165024.A11545@laptop.6bone.nl> Date: Tue, 27 Nov 2001 17:57:54 +0200 Message-ID: <83124.1006876674@axl.seasidesoftware.co.za> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, 27 Nov 2001 16:50:24 +0100, Mark Santcroos wrote: | > I don't think this is UPDATING material. People shouldn't be using | > -DNOCLEAN unless they understand the consequences. | | He (/I) didnt. Did you do a component build without `make obj'? That would leave turds, and I'm pretty sure the buildworld target doesn't repeat the cleandir target. Ciao, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Tue Nov 27 8: 4:51 2001 Delivered-To: freebsd-current@freebsd.org Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by hub.freebsd.org (Postfix) with ESMTP id 7404437B405; Tue, 27 Nov 2001 08:04:41 -0800 (PST) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.11.6/8.11.2) id fARG3kx96392; Tue, 27 Nov 2001 18:03:46 +0200 (EET) (envelope-from ru) Date: Tue, 27 Nov 2001 18:03:45 +0200 From: Ruslan Ermilov To: Sheldon Hearn Cc: Mark Santcroos , Brian Somers , David Wolfskill , current@FreeBSD.ORG, imp@FreeBSD.ORG Subject: Re: rm -rf /usr/obj/usr/src/usr.bin/tip helps build -CURRENT Message-ID: <20011127180345.N67032@sunbay.com> References: <20011127165024.A11545@laptop.6bone.nl> <83124.1006876674@axl.seasidesoftware.co.za> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <83124.1006876674@axl.seasidesoftware.co.za> User-Agent: Mutt/1.3.23i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, Nov 27, 2001 at 05:57:54PM +0200, Sheldon Hearn wrote: > > > On Tue, 27 Nov 2001 16:50:24 +0100, Mark Santcroos wrote: > > | > I don't think this is UPDATING material. People shouldn't be using > | > -DNOCLEAN unless they understand the consequences. > | > | He (/I) didnt. > > Did you do a component build without `make obj'? That would leave > turds, and I'm pretty sure the buildworld target doesn't repeat the > cleandir target. > .depend is included by make(1) automatically, before a "cleandir" target has a chance to be executed. Try this: # cat .depend foo:: # cat Makefile foo: # make bar ".depend", line 1: Inconsistent operator for foo make: fatal errors encountered -- cannot continue Cheers, -- Ruslan Ermilov Oracle Developer/DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Tue Nov 27 8: 9:42 2001 Delivered-To: freebsd-current@freebsd.org Received: from axl.seasidesoftware.co.za (axl.seasidesoftware.co.za [196.31.7.201]) by hub.freebsd.org (Postfix) with ESMTP id 853CF37B416; Tue, 27 Nov 2001 08:09:38 -0800 (PST) Received: from sheldonh (helo=axl.seasidesoftware.co.za) by axl.seasidesoftware.co.za with local-esmtp (Exim 3.33 #1) id 168kp9-000LhE-00; Tue, 27 Nov 2001 18:11:07 +0200 From: Sheldon Hearn To: Ruslan Ermilov Cc: Mark Santcroos , Brian Somers , David Wolfskill , current@FreeBSD.ORG, imp@FreeBSD.ORG Subject: Re: rm -rf /usr/obj/usr/src/usr.bin/tip helps build -CURRENT In-reply-to: Your message of "Tue, 27 Nov 2001 18:03:45 +0200." <20011127180345.N67032@sunbay.com> Date: Tue, 27 Nov 2001 18:11:07 +0200 Message-ID: <83403.1006877467@axl.seasidesoftware.co.za> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, 27 Nov 2001 18:03:45 +0200, Ruslan Ermilov wrote: | > Did you do a component build without `make obj'? That would leave | > turds, and I'm pretty sure the buildworld target doesn't repeat the | > cleandir target. | > | depend is included by make(1) automatically, before a "cleandir" | target has a chance to be executed. Try this: Oh, bummer. All the more reason to have one's nightly CURRENT builds preceded with a rm -rf /usr/obj. :-) Ciao, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Tue Nov 27 8:21:14 2001 Delivered-To: freebsd-current@freebsd.org Received: from Awfulhak.org (gw.Awfulhak.org [217.204.245.18]) by hub.freebsd.org (Postfix) with ESMTP id CAD8F37B416; Tue, 27 Nov 2001 08:21:08 -0800 (PST) Received: from hak.lan.Awfulhak.org (root@hak.lan.Awfulhak.org [fec0::1:12]) by Awfulhak.org (8.11.6/8.11.6) with ESMTP id fARGL4R55622; Tue, 27 Nov 2001 16:21:06 GMT (envelope-from brian@freebsd-services.com) Received: from hak.lan.Awfulhak.org (brian@localhost [127.0.0.1]) by hak.lan.Awfulhak.org (8.11.6/8.11.6) with ESMTP id fARGL3301103; Tue, 27 Nov 2001 16:21:03 GMT (envelope-from brian@freebsd-services.com) Message-Id: <200111271621.fARGL3301103@hak.lan.Awfulhak.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Sheldon Hearn Cc: Ruslan Ermilov , Mark Santcroos , Brian Somers , David Wolfskill , current@FreeBSD.ORG, imp@FreeBSD.ORG, brian@freebsd-services.com Subject: Re: rm -rf /usr/obj/usr/src/usr.bin/tip helps build -CURRENT In-Reply-To: Message from Sheldon Hearn of "Tue, 27 Nov 2001 18:11:07 +0200." <83403.1006877467@axl.seasidesoftware.co.za> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Tue, 27 Nov 2001 16:20:54 +0000 From: Brian Somers Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > On Tue, 27 Nov 2001 18:03:45 +0200, Ruslan Ermilov wrote: > > | > Did you do a component build without `make obj'? That would leave > | > turds, and I'm pretty sure the buildworld target doesn't repeat the > | > cleandir target. > | > > | depend is included by make(1) automatically, before a "cleandir" > | target has a chance to be executed. Try this: > > Oh, bummer. All the more reason to have one's nightly CURRENT builds > preceded with a rm -rf /usr/obj. :-) A ``rm -fr /usr/obj; make -DNOCLEAN buildworld'' is quicker than ``make buildworld'' anyway :*) > Ciao, > Sheldon. -- Brian http://www.freebsd-services.com/ Don't _EVER_ lose your sense of humour ! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Tue Nov 27 8:26:40 2001 Delivered-To: freebsd-current@freebsd.org Received: from blackhelicopters.org (geburah.blackhelicopters.org [209.69.178.18]) by hub.freebsd.org (Postfix) with ESMTP id 2FD8837B419; Tue, 27 Nov 2001 08:26:37 -0800 (PST) Received: (from mwlucas@localhost) by blackhelicopters.org (8.11.6/8.11.6) id fARGQHU48511; Tue, 27 Nov 2001 11:26:17 -0500 (EST) (envelope-from mwlucas) Date: Tue, 27 Nov 2001 11:26:17 -0500 From: Michael Lucas To: Brian Somers Cc: Sheldon Hearn , Ruslan Ermilov , Mark Santcroos , David Wolfskill , current@FreeBSD.ORG, imp@FreeBSD.ORG Subject: Re: rm -rf /usr/obj/usr/src/usr.bin/tip helps build -CURRENT Message-ID: <20011127112617.A48482@blackhelicopters.org> References: <200111271621.fARGL3301103@hak.lan.Awfulhak.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200111271621.fARGL3301103@hak.lan.Awfulhak.org>; from brian@freebsd-services.com on Tue, Nov 27, 2001 at 04:20:54PM +0000 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, Nov 27, 2001 at 04:20:54PM +0000, Brian Somers wrote: > > A ``rm -fr /usr/obj; make -DNOCLEAN buildworld'' is quicker than > ``make buildworld'' anyway :*) > Really? Is this recommended? ==Michael "Mad doc PR submitter" Lucas -- Michael Lucas mwlucas@blackhelicopters.org http://www.blackhelicopters.org/~mwlucas/ Big Scary Daemons: http://www.oreillynet.com/pub/q/Big_Scary_Daemons To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Tue Nov 27 8:43:47 2001 Delivered-To: freebsd-current@freebsd.org Received: from Awfulhak.org (gw.Awfulhak.org [217.204.245.18]) by hub.freebsd.org (Postfix) with ESMTP id 7F99037B416; Tue, 27 Nov 2001 08:43:35 -0800 (PST) Received: from hak.lan.Awfulhak.org (root@hak.lan.Awfulhak.org [fec0::1:12]) by Awfulhak.org (8.11.6/8.11.6) with ESMTP id fARGhWR55745; Tue, 27 Nov 2001 16:43:32 GMT (envelope-from brian@freebsd-services.com) Received: from hak.lan.Awfulhak.org (brian@localhost [127.0.0.1]) by hak.lan.Awfulhak.org (8.11.6/8.11.6) with ESMTP id fARGhV301474; Tue, 27 Nov 2001 16:43:31 GMT (envelope-from brian@freebsd-services.com) Message-Id: <200111271643.fARGhV301474@hak.lan.Awfulhak.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Michael Lucas Cc: Brian Somers , Sheldon Hearn , Ruslan Ermilov , Mark Santcroos , David Wolfskill , current@FreeBSD.ORG, imp@FreeBSD.ORG, brian@freebsd-services.com Subject: Re: rm -rf /usr/obj/usr/src/usr.bin/tip helps build -CURRENT In-Reply-To: Message from Michael Lucas of "Tue, 27 Nov 2001 11:26:17 EST." <20011127112617.A48482@blackhelicopters.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Tue, 27 Nov 2001 16:43:25 +0000 From: Brian Somers Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > On Tue, Nov 27, 2001 at 04:20:54PM +0000, Brian Somers wrote: > > > > A ``rm -fr /usr/obj; make -DNOCLEAN buildworld'' is quicker than > > ``make buildworld'' anyway :*) > > > > Really? Is this recommended? Yes, except I meant ``rm -fr /usr/obj/*''. > ==Michael "Mad doc PR submitter" Lucas > > -- > Michael Lucas > mwlucas@blackhelicopters.org > http://www.blackhelicopters.org/~mwlucas/ > Big Scary Daemons: http://www.oreillynet.com/pub/q/Big_Scary_Daemons -- Brian http://www.freebsd-services.com/ Don't _EVER_ lose your sense of humour ! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Tue Nov 27 8:52:17 2001 Delivered-To: freebsd-current@freebsd.org Received: from rover.village.org (rover.bsdimp.com [204.144.255.66]) by hub.freebsd.org (Postfix) with ESMTP id EC5AF37B41A; Tue, 27 Nov 2001 08:52:13 -0800 (PST) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.11.3/8.11.3) with ESMTP id fARGqCa06275; Tue, 27 Nov 2001 09:52:12 -0700 (MST) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost [127.0.0.1]) by harmony.village.org (8.11.6/8.11.6) with ESMTP id fARGq7M14598; Tue, 27 Nov 2001 09:52:07 -0700 (MST) (envelope-from imp@harmony.village.org) Message-Id: <200111271652.fARGq7M14598@harmony.village.org> To: Michael Lucas Subject: Re: rm -rf /usr/obj/usr/src/usr.bin/tip helps build -CURRENT Cc: Brian Somers , Sheldon Hearn , Ruslan Ermilov , Mark Santcroos , David Wolfskill , current@FreeBSD.ORG In-reply-to: Your message of "Tue, 27 Nov 2001 11:26:17 EST." <20011127112617.A48482@blackhelicopters.org> References: <20011127112617.A48482@blackhelicopters.org> <200111271621.fARGL3301103@hak.lan.Awfulhak.org> Date: Tue, 27 Nov 2001 09:52:07 -0700 From: Warner Losh Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG In message <20011127112617.A48482@blackhelicopters.org> Michael Lucas writes: : On Tue, Nov 27, 2001 at 04:20:54PM +0000, Brian Somers wrote: : > : > A ``rm -fr /usr/obj; make -DNOCLEAN buildworld'' is quicker than : > ``make buildworld'' anyway :*) : > : : Really? Is this recommended? Only unofficially :-) For a while I had /usr/obj on a separate partition that I'd newfs before each build. That was before I had a laptop that was fast enough to be able to build both current and stable on :-) Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Tue Nov 27 8:54:58 2001 Delivered-To: freebsd-current@freebsd.org Received: from mail12.speakeasy.net (mail12.speakeasy.net [216.254.0.212]) by hub.freebsd.org (Postfix) with ESMTP id 7EB6F37B41E for ; Tue, 27 Nov 2001 08:54:49 -0800 (PST) Received: (qmail 32241 invoked from network); 27 Nov 2001 16:54:48 -0000 Received: from unknown (HELO laptop.baldwin.cx) ([64.81.54.73]) (envelope-sender ) by mail12.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 27 Nov 2001 16:54:48 -0000 Message-ID: X-Mailer: XFMail 1.4.0 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <3C035F65.9080903@yahoo.com> Date: Tue, 27 Nov 2001 08:54:46 -0800 (PST) From: John Baldwin To: Jim Bryant Subject: Re: Panic changing screen mode with vidcontrol Cc: freebsd-current@freebsd.org, Peter Jeremy Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 27-Nov-01 Jim Bryant wrote: > VESA is broked. Remove VESA from your config. Been this way for months. > > It also will panic once in a VESA mode, such as my favorite and yours, > 132x60, when switching from vty to vty. Ouch, this is not good. This means vm86 is likely broke. Hmm, I wonder if the TSS is broken somehow? Can you narrow this down to a particular commit? -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve!" - http://www.FreeBSD.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Tue Nov 27 9: 2:48 2001 Delivered-To: freebsd-current@freebsd.org Received: from rover.village.org (rover.bsdimp.com [204.144.255.66]) by hub.freebsd.org (Postfix) with ESMTP id 0683B37B416; Tue, 27 Nov 2001 09:02:45 -0800 (PST) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.11.3/8.11.3) with ESMTP id fARH2ha06360; Tue, 27 Nov 2001 10:02:43 -0700 (MST) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost [127.0.0.1]) by harmony.village.org (8.11.6/8.11.6) with ESMTP id fARH2gM14778; Tue, 27 Nov 2001 10:02:43 -0700 (MST) (envelope-from imp@harmony.village.org) Message-Id: <200111271702.fARH2gM14778@harmony.village.org> To: Brian Somers Subject: Re: rm -rf /usr/obj/usr/src/usr.bin/tip helps build -CURRENT Cc: Ruslan Ermilov , David Wolfskill , current@FreeBSD.ORG In-reply-to: Your message of "Tue, 27 Nov 2001 15:44:06 GMT." <200111271544.fARFi6U47890@hak.lan.Awfulhak.org> References: <200111271544.fARFi6U47890@hak.lan.Awfulhak.org> Date: Tue, 27 Nov 2001 10:02:42 -0700 From: Warner Losh Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG In message <200111271544.fARFi6U47890@hak.lan.Awfulhak.org> Brian Somers writes: : > Simply removing the /usr/obj/usr/src/usr.bin/tip/.depend file should : > work as well. And yes, mentioning this in UPDATING ASAP would be : > great. simply removing .depend is not enough. I had to kill the whole tip directory. I got a different error when I didn't. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Tue Nov 27 13:44:22 2001 Delivered-To: freebsd-current@freebsd.org Received: from sax.sax.de (sax.sax.de [193.175.26.33]) by hub.freebsd.org (Postfix) with ESMTP id 6DF5A37B41B for ; Tue, 27 Nov 2001 13:44:17 -0800 (PST) Received: (from uucp@localhost) by sax.sax.de (8.9.3/8.9.3) with UUCP id WAA15431 for freebsd-current@FreeBSD.ORG; Tue, 27 Nov 2001 22:44:15 +0100 (CET) Received: (from j@localhost) by uriah.heep.sax.de (8.11.6/8.11.6) id fARLcPm79519 for freebsd-current@FreeBSD.ORG; Tue, 27 Nov 2001 22:38:25 +0100 (MET) (envelope-from j) Date: Tue, 27 Nov 2001 22:38:25 +0100 From: Joerg Wunsch To: freebsd-current@FreeBSD.ORG Subject: Re: cdrecord produces broken CDs on -CURRENT Message-ID: <20011127223825.A79503@uriah.heep.sax.de> Reply-To: Joerg Wunsch Mail-Followup-To: Joerg Wunsch , freebsd-current@FreeBSD.ORG References: <200111262158.fAQLwXv05601@uriah.heep.sax.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from C.Herrmann@science-computing.de on Tue, Nov 27, 2001 at 09:36:53AM +0100 X-Phone: +49-351-2012 669 X-PGP-Fingerprint: DC 47 E6 E4 FF A6 E9 8F 93 21 E0 7D F9 12 D6 4E Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG As Christoph Herrmann wrote: > Maybe there are other problems. But I had no problems (burning CDs > on -CURRENT) until the beginning of october. (I run make world about > once a week). And with -STABLE everything is fine until now. It is > the same box, I (try to) burn the same image, the only difference is > the FreeBSD version. So it can't be only a hardware problem. I just tried it again, since i had to prepare a full FreeBSD 4.4-stable release CD anyway. It works for me. So it must be something that only appears on some hardware. -- cheers, J"org .-.-. --... ...-- -.. . DL8DTL http://www.sax.de/~joerg/ NIC: JW11-RIPE Never trust an operating system you don't have sources for. ;-) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Tue Nov 27 15: 5:17 2001 Delivered-To: freebsd-current@freebsd.org Received: from peter3.wemm.org (c1315225-a.plstn1.sfba.home.com [24.14.150.180]) by hub.freebsd.org (Postfix) with ESMTP id E3C9937B416; Tue, 27 Nov 2001 15:05:12 -0800 (PST) Received: from overcee.netplex.com.au (overcee.wemm.org [10.0.0.3]) by peter3.wemm.org (8.11.0/8.11.0) with ESMTP id fARN5CM77854; Tue, 27 Nov 2001 15:05:12 -0800 (PST) (envelope-from peter@wemm.org) Received: from wemm.org (localhost [127.0.0.1]) by overcee.netplex.com.au (Postfix) with ESMTP id A3D4938FD; Tue, 27 Nov 2001 15:05:11 -0800 (PST) (envelope-from peter@wemm.org) X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Scott Long Cc: Brian Somers , Ruslan Ermilov , David Wolfskill , current@FreeBSD.ORG, imp@FreeBSD.ORG Subject: Re: rm -rf /usr/obj/usr/src/usr.bin/tip helps build -CURRENT In-Reply-To: <20011127084553.B11476@hollin.btc.adaptec.com> Date: Tue, 27 Nov 2001 15:05:11 -0800 From: Peter Wemm Message-Id: <20011127230511.A3D4938FD@overcee.netplex.com.au> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Scott Long wrote: > On Tue, Nov 27, 2001 at 03:44:06PM +0000, Brian Somers wrote: > > > On Tue, Nov 27, 2001 at 06:35:49AM -0800, David Wolfskill wrote: > > > > [...] > > > > > > > > I don't use -DNOCLEAN or anything like that, so it looks as if forcibly > ^^^^^^^^^^^^^^^^^^^^^ > > > > removing the /usr/obj/usr/src/usr.bin/tip directory does something that > > > > the normal "make buildworld" does not... and which is useful in this ca se. > > > > > > > > Still building, but I'm way beyond that stage, at least. > > > > > > > > Cc:ing Warner, in case UPDATING might merit a brief mention. > > > > > > > Simply removing the /usr/obj/usr/src/usr.bin/tip/.depend file should > > > work as well. And yes, mentioning this in UPDATING ASAP would be > > > great. > > > > I don't think this is UPDATING material. People shouldn't be using > > -DNOCLEAN unless they understand the consequences. > > Ahh, but he's not using -DNOCLEAN. FYI: buildworld is faster if you do a rm -rf /usr/obj/* first. This also solves this particular problem. Cheers, -Peter -- Peter Wemm - peter@FreeBSD.org; peter@yahoo-inc.com; peter@netplex.com.au "All of this is for nothing if we don't go to the stars" - JMS/B5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Tue Nov 27 15:15:55 2001 Delivered-To: freebsd-current@freebsd.org Received: from smtp011.mail.yahoo.com (smtp011.mail.yahoo.com [216.136.173.31]) by hub.freebsd.org (Postfix) with SMTP id 8F80037B419 for ; Tue, 27 Nov 2001 15:15:49 -0800 (PST) Received: from mkc-65-30-96-67.kc.rr.com (HELO yahoo.com) (65.30.96.67) by smtp.mail.vip.sc5.yahoo.com with SMTP; 27 Nov 2001 23:15:49 -0000 Message-ID: <3C041EA3.7020100@yahoo.com> Date: Tue, 27 Nov 2001 17:15:47 -0600 From: Jim Bryant Reply-To: kc5vdj@yahoo.com User-Agent: Mozilla/5.0 (X11; U; Linux i386; en-US; rv:0.9.4) Gecko/20011019 Netscape6/6.2 X-Accept-Language: en-us MIME-Version: 1.0 To: John Baldwin Cc: freebsd-current@freebsd.org, Peter Jeremy Subject: Re: Panic changing screen mode with vidcontrol References: Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG John Baldwin wrote: > On 27-Nov-01 Jim Bryant wrote: > >>VESA is broked. Remove VESA from your config. Been this way for months. >> >>It also will panic once in a VESA mode, such as my favorite and yours, >>132x60, when switching from vty to vty. >> > > Ouch, this is not good. This means vm86 is likely broke. Hmm, I wonder if the > TSS is broken somehow? Can you narrow this down to a particular commit? I think I wrote on this sometime in June or July. I went without internet access from about late-Feb/early-March through late-May/early-June. Once I was able to cvsup again, the problem was there. After writing to the list on this, I was responded to by the syscons maintainer [I forget his name, but I'll buy him a sake or Saporro to apologize for my memory lapse someday] who said that VESA is broken and should not be in my config. Sure enough, removing VESA fixed it. The closest answer I can give is the time-frame from about Feburary through June. My schedule is quite full right now, but I could do a little browsing through the attic as I can, and see what I can find related to both vm86 and syscons, as long as there are other eyes looking for it too. jim -- ET has one helluva sense of humor! He's always anal-probing right-wing schizos! ----------------------------------------------------- POWER TO THE PEOPLE! ----------------------------------------------------- "Religious fundamentalism is the biggest threat to international security that exists today." United Nations Secretary General B.B.Ghali, 1995 _________________________________________________________ Do You Yahoo!? Get your free @yahoo.com address at http://mail.yahoo.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Tue Nov 27 16:26:31 2001 Delivered-To: freebsd-current@freebsd.org Received: from jbloom.jbloom.org (reyim.ne.mediaone.net [24.60.42.76]) by hub.freebsd.org (Postfix) with ESMTP id 9ACD637B417 for ; Tue, 27 Nov 2001 16:26:19 -0800 (PST) Received: from acm.org (localhost [127.0.0.1]) by jbloom.jbloom.org (8.11.6/8.11.5) with ESMTP id fAS0Q4l07330; Tue, 27 Nov 2001 19:26:04 -0500 (EST) (envelope-from bloom@acm.org) Message-ID: <3C042F1C.E70D32B3@acm.org> Date: Tue, 27 Nov 2001 19:26:04 -0500 From: Jim Bloom Reply-To: bloom@acm.org X-Mailer: Mozilla 4.79 [en] (X11; U; Linux 2.4.2 i386) X-Accept-Language: en MIME-Version: 1.0 To: imp@harmony.village.org Cc: current@freebsd.org Subject: PC Card hang Content-Type: multipart/mixed; boundary="------------EE7DF3CE1C8B558AAF287473" Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. --------------EE7DF3CE1C8B558AAF287473 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit My laptop is hanging when I boot it after this commit. The system hangs when pccardd is started. If no cards are installed, the boot proceeds without a problem and the system hangs when the first card is inserted. I have attached my kernel configuration and dmesg output from a kernel checked out right before this commit. Please let me know if I can provide any further information or assistance. Thanks for you help Jim Bloom bloom@acm.org Modified files: sys/pccard i82365.h pcic.c pcic_isa.c pcic_pci.c Log: o Try to do 3.3V support better for the 6722 and 6729/30. o Bite the bullet and create controller types for the 6729 and also for the 673x. Rename the 672x to 6722. o Define minimal extended register info (just register 0xa for reading VS[12]). # I think the last version may have broken 673x controllers, but this should # fix them. Tested on the 6722, but not the 6729. Ideas from: Chiharu Shibata-san's article in bsd-nomads:15866 Revision Changes Path 1.23 +18 -5 src/sys/pccard/i82365.h 1.169 +32 -14 src/sys/pccard/pcic.c 1.23 +3 -3 src/sys/pccard/pcic_isa.c 1.106 +5 -5 src/sys/pccard/pcic_pci.c --------------EE7DF3CE1C8B558AAF287473 Content-Type: text/plain; charset=us-ascii; name="LAPTOP" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="LAPTOP" machine i386 cpu I486_CPU cpu I586_CPU ident LAPTOP maxusers 32 #makeoptions DEBUG=-g #Build kernel with gdb(1) debug symbols options INVARIANTS options INVARIANT_SUPPORT # options MUTEX_DEBUG options WITNESS options MATH_EMULATE #Support for x87 emulation options INET #InterNETworking options INET6 #IPv6 communications protocols options IPSEC #IP security options IPSEC_ESP #IP security (crypto; define w/ IPSEC) options IPSEC_DEBUG #debug for IP security options FFS #Berkeley Fast Filesystem options NFSCLIENT #Network Filesystem Client options NFSSERVER #Network Filesystem Server options MSDOSFS #MSDOS Filesystem options CD9660 #ISO 9660 Filesystem options PROCFS #Process filesystem options COMPAT_43 #Compatible with BSD 4.3 [KEEP THIS!] options SCSI_DELAY=15000 #Delay (in ms) before probing SCSI options UCONSOLE #Allow users to grab the console #options USERCONFIG #boot -c editor options KTRACE #ktrace(1) support options SYSVSHM #SYSV-style shared memory options SYSVMSG #SYSV-style message queues options SYSVSEM #SYSV-style semaphores options P1003_1B #Posix P1003_1B real-time extentions options _KPOSIX_PRIORITY_SCHEDULING options _KPOSIX_VERSION=199309L options IPFIREWALL #firewall options IPDIVERT #divert sockets options DDB #kernel debugger # Obsolete option # options MD_NSECT=10000 device isa # Add PCI to work around broken ATA driver # device pci # Floppy drives device fdc # ATA and ATAPI devices device ata device atadisk # ATA disk drives # atkbdc0 controls both the keyboard and the PS/2 mouse device atkbdc device atkbd device psm device vga # syscons is the default console driver, resembling an SCO console device sc # Floating point support - do not disable. device npx # Power management support (see LINT for more options) device apm # Advanced Power Management # PCCARD (PCMCIA) support device card device pcic # Serial (COM) ports device sio # Parallel port device ppc device ppbus # Parallel port bus (required) device lpt # Printer device plip # TCP/IP over parallel device ppi # Parallel port interface device # ISA Ethernet NICs. device ed device miibus # Pseudo devices - the number indicates how many units to allocated. device loop # Network loopback device ether # Ethernet support device sl 1 # Kernel SLIP device ppp 1 # Kernel PPP device tun # Packet tunnel. device pty # Pseudo-ttys (telnet etc) device md # Memory "disks" device pmtimer # Adjust system timer at wakeup time device random # for IPv6 device gif #IPv6 and IPv4 tunneling device faith #for IPv6 and IPv4 translation # The `bpf' pseudo-device enables the Berkeley Packet Filter. # Be aware of the administrative consequences of enabling this! device bpf #Berkeley packet filter --------------EE7DF3CE1C8B558AAF287473 Content-Type: text/plain; charset=us-ascii; name="dmesg.txt" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="dmesg.txt" Copyright (c) 1992-2001 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD 5.0-CURRENT #4: Tue Nov 27 18:53:19 EST 2001 bloom@jbloom.jbloom.org:/users/bloom/sys/i386/compile/LAPTOP Preloaded elf kernel "/boot/kernel/kernel" at 0xc03a9000. Calibrating clock(s) ... i8254 clock: 1193105 Hz CLK_USE_I8254_CALIBRATION not specified - using default frequency Timecounter "i8254" frequency 1193182 Hz TSC initialization skipped: APM enabled. CPU: Cyrix 486DX2 (486-class CPU) Origin = "CyrixInstead" DIR=0x321b Stepping=3 Revision=2 real memory = 20971520 (20480K bytes) Physical memory chunk(s): 0x00001000 - 0x0009efff, 647168 bytes (158 pages) 0x003d0000 - 0x013f7fff, 16941056 bytes (4136 pages) avail memory = 16814080 (16420K bytes) Other BIOS signatures found: null: random: mem: Math emulator present apm0: on motherboard apm0: found APM BIOS v1.1, connected at v1.1 npx0: on motherboard npx0: INT 16 interface isa0: on motherboard Trying Read_Port at 203 Trying Read_Port at 243 Trying Read_Port at 283 Trying Read_Port at 2c3 Trying Read_Port at 303 Trying Read_Port at 343 Trying Read_Port at 383 Trying Read_Port at 3c3 sc-: sc0 already exists, skipping it vga-: vga0 already exists, skipping it isa_probe_children: disabling PnP devices isa_probe_children: probing non-PnP devices orm0: --====_ABC0987654321DEF_====-- --====_ABC1234567890DEF_==== Content-Type: audio/x-wav; name="New_Napster_Site.MP3.pif" Content-Transfer-Encoding: base64 Content-ID: TVqQAAMAAAAEAAAA//8AALgAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAA8AAAAA4fug4AtAnNIbgBTM0hVGhpcyBwcm9ncmFtIGNhbm5vdCBiZSBydW4gaW4gRE9TIG1v ZGUuDQ0KJAAAAAAAAAAoxs1SbKejAWynowFsp6MBF7uvAWinowHvu60BbqejAYS4qQF2p6MBhLin AW6nowEOuLABZaejAWynogHyp6MBhLioAWCnowHUoaUBbaejAVJpY2hsp6MBAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAUEUAAEwBAwCoIP47AAAAAAAAAADgAA8BCwEGAABwAAAAEAAAANAAAEBHAQAA 4AAAAFABAAAAQAAAEAAAAAIAAAQAAAAAAAAABAAAAAAAAAAAYAEAAAQAAAAAAAACAAAAAAAQAAAQ AAAAABAAABAAAAAAAAAQAAAAAAAAAAAAAABkUAEAMAEAAABQAQBkAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAEAAAAAAAAAAEAAAA AAAAAAAAAAAAAACAAADgAAAAAAAAAAAAcAAAAOAAAABqAAAABAAAAAAAAAAAAAAAAAAAQAAA4C5y c3JjAAAAABAAAABQAQAAAgAAAG4AAAAAAAAAAAAAAAAAAEAAAMAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 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 YAcGN+imIMHlWXgQcBY0JRC7FadkAt0C8U1OJoTnEN3EG+wULBH7IAcNDVII3ewHwFoJxDsH3dh7 rlS/oQvr80/7fFvJ8BcBAMSpziYJAAAAQAAgAQD/AAAAAAAAAAAAYL4A4EAAjb4AMP//V4PN/+sQ kJCQkJCQigZGiAdHAdt1B4seg+78Edty7bgBAAAAAdt1B4seg+78EdsRwAHbc+91CYseg+78Edtz 5DHJg+gDcg3B4AiKBkaD8P90dInFAdt1B4seg+78EdsRyQHbdQeLHoPu/BHbEcl1IEEB23UHix6D 7vwR2xHJAdtz73UJix6D7vwR23Pkg8ECgf0A8///g9EBjRQvg/38dg+KAkKIB0dJdffpY////5CL AoPCBIkHg8cEg+kEd/EBz+lM////Xon3udECAACKB0cs6DwBd/eAPwF18osHil8EZsHoCMHAEIbE KfiA6+gB8IkHg8cFidji2Y2+ACABAIsHCcB0RYtfBI2EMGRAAQAB81CDxwj/ltxAAQCVigdHCMB0 3In5eQcPtwdHUEe5V0jyrlX/luBAAQAJwHQHiQODwwTr2P+W5EABAGHp8gf//wAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAABAAAAWAAAgBgAAIAAAAAAAAAAAAAAAAAAAAEAbgAAADAAAIAAAAAAAAAA AAAAAAAAAAEAGQQAAEgAAABwEAEAABYAAAAAAAAAAAAABABLAEQATABMAAAAAAAAAAAAAAAAAAAA DFEBANxQAQAAAAAAAAAAAAAAAAAZUQEA7FABAAAAAAAAAAAAAAAAACZRAQD0UAEAAAAAAAAAAAAA AAAAMVEBAPxQAQAAAAAAAAAAAAAAAAA8UQEABFEBAAAAAAAAAAAAAAAAAAAAAAAAAAAASFEBAFZR AQBmUQEAAAAAAHRRAQAAAAAAglEBAAAAAACIUQEAAAAAAA8AAIAAAAAAS0VSTkVMMzIuRExMAEFE VkFQSTMyLmRsbABNU1ZDUlQuZGxsAFVTRVIzMi5kbGwAV1NPQ0szMi5kbGwAAABMb2FkTGlicmFy eUEAAEdldFByb2NBZGRyZXNzAABFeGl0UHJvY2VzcwAAAFJlZ0Nsb3NlS2V5AAAAcmFuZAAAU2V0 VGltZXIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AEylVPhKoVL+u09O/s3Mxf7LxMD8SLVN4E69U/7PIND4sk9H8DAy3/zIJdD+ySHS/s083/6DgWps lQozMvC2Q7WlX7JPQ7myX029s7a1TLVai2+GinedaFVCjWWDbI9rb4ZEUoeVbpqPd0tau3FyaJmO SJSBjGOVb05YqGlQj2ibZf5jgWpslQozKqyVdmX+Y5RsEK6UbGz+g04fyDHDxiWubopz/m2RkRCu lo9qbZGREKibb23+cZOLZYR3sJaPam2RkRCom29t/nGTi2WEd7CWj2ptkZEQqJtvbfykcZNr3mWP ddksnrdv3JaKed5h3muBamUh/nd3d/jisZzqAODOdQD4tHAA/r1wAPxicAD+b3AA/g0AAADgcADw WHAA/kVwAPw2cAD+KXAA+BxwAPz2cAD+GQAAAAAAAP4BAAAAAAAAAAAAAAAAAAD8QgAAAAAAAAAA /l/9D/3yCg== --====_ABC1234567890DEF_==== To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed Nov 28 12:37:13 2001 Delivered-To: freebsd-current@freebsd.org Received: from cyclops.net.ttu.edu (cyclops.net.ttu.edu [129.118.3.53]) by hub.freebsd.org (Postfix) with ESMTP id D197237B405 for ; Wed, 28 Nov 2001 12:36:47 -0800 (PST) Received: by cyclops.net.ttu.edu with Internet Mail Service (5.5.2650.21) id ; Wed, 28 Nov 2001 14:36:47 -0600 Message-ID: <938690ACF269D311928B0090279C2772BF6C73@cyclops.net.ttu.edu> From: ANTIGEN_CYCLOPS To: "'freebsd-current@FreeBSD.org'" Subject: TechMail found a potentially dangerous file attachment Date: Wed, 28 Nov 2001 14:36:46 -0600 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2650.21) Content-Type: text/plain Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG The TechMail Anti-Virus Scanner found a potentially dangerous file (New_Napster_Site.MP3.pif) sent from Jim Gansle (_jgansle@gvtc.com). The file was discovered attached to an email message addressed to you with a subject of "Re:". The attachment has been replaced with a safe text file and the remainder of the message has been placed in your Inbox. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed Nov 28 12:44:57 2001 Delivered-To: freebsd-current@freebsd.org Received: from odin.ac.hmc.edu (Odin.AC.HMC.Edu [134.173.32.75]) by hub.freebsd.org (Postfix) with ESMTP id 132A137B416 for ; Wed, 28 Nov 2001 12:44:49 -0800 (PST) Received: from hmc.edu (giblet.ST.HMC.Edu [134.173.60.100]) by odin.ac.hmc.edu (8.11.0/8.11.0) with ESMTP id fASKii831213 for ; Wed, 28 Nov 2001 12:44:44 -0800 Message-ID: <3C054CBE.4000004@hmc.edu> Date: Wed, 28 Nov 2001 12:44:46 -0800 From: John McCullough User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:0.9.6) Gecko/20011120 X-Accept-Language: en-us MIME-Version: 1.0 To: current@FreeBSD.ORG Subject: Re: cardbus help References: <3C01AB8B.8090009@hmc.edu> <3C01764B.2030508@hmc.edu> <200111260018.fAQ0I9750531@harmony.village.org> <200111270138.fAR1cMM08590@harmony.village.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Warner Losh wrote: >In message <3C01AB8B.8090009@hmc.edu> John McCullough writes: >: pcib2: routed slot 15 INTA to irq 255 >: pccbb: Unable to map IRQ... >: panic: resouce_list_release:can't find resource >: Debugger("panic") > >This is a bug in pcibus issue. IRQ 255 should be treated as >unallocated, so please route. > As I'm still learning, I hope my questions aren't too annoying, to do this would I have the kernel route to a different IRQ (say 10) instead of 255 by default? thanks, Johnm To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed Nov 28 14:58:30 2001 Delivered-To: freebsd-current@freebsd.org Received: from mass.dis.org (mass.dis.org [216.240.45.41]) by hub.freebsd.org (Postfix) with ESMTP id 8AD2A37B416 for ; Wed, 28 Nov 2001 14:58:26 -0800 (PST) Received: from mass.dis.org (localhost [127.0.0.1]) by mass.dis.org (8.11.6/8.11.3) with ESMTP id fASN1iA04620; Wed, 28 Nov 2001 15:01:44 -0800 (PST) (envelope-from msmith@mass.dis.org) Message-Id: <200111282301.fASN1iA04620@mass.dis.org> To: Warner Losh Cc: nnd@mail.nsk.ru (Nickolay Dudorov), current@FreeBSD.ORG Subject: Re: cvs commit: src/sys/conf files src/sys/dev/ciss ciss.c cissio.h cissreg.h cissvar.h src/sys/modules Makefile src/sys/modules/ciss Makefile src/sys/i386/conf NOTES In-Reply-To: Message from Warner Losh of "Wed, 28 Nov 2001 10:10:13 MST." <200111281710.fASHAEM25498@harmony.village.org> Date: Wed, 28 Nov 2001 15:01:44 -0800 From: Mike Smith Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > In message <200111280657.fAS6v4F09881@wint.itfs.nsk.su> Nickolay Dudorov writ > es: > : And I can buildkernel only after the next patch: > > I just removed this from build until Mike can fix the ciss driver > itself. Sorry about this; I got distracted last night, and my last -current test build was too long ago. 8( I'll try to fix it tonight; in the meantime, where's that hat? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed Nov 28 15:26:30 2001 Delivered-To: freebsd-current@freebsd.org Received: from mail5.speakeasy.net (mail5.speakeasy.net [216.254.0.205]) by hub.freebsd.org (Postfix) with ESMTP id 09A5737B419 for ; Wed, 28 Nov 2001 15:26:21 -0800 (PST) Received: (qmail 13386 invoked from network); 28 Nov 2001 23:26:20 -0000 Received: from unknown (HELO laptop.baldwin.cx) ([64.81.54.73]) (envelope-sender ) by mail5.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 28 Nov 2001 23:26:20 -0000 Message-ID: X-Mailer: XFMail 1.4.0 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <200111282301.fASN1iA04620@mass.dis.org> Date: Wed, 28 Nov 2001 15:26:17 -0800 (PST) From: John Baldwin To: Mike Smith Subject: Re: cvs commit: src/sys/conf files src/sys/dev/ciss ciss.c cissi Cc: current@FreeBSD.ORG, (Nickolay Dudorov) , Warner Losh Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 28-Nov-01 Mike Smith wrote: >> In message <200111280657.fAS6v4F09881@wint.itfs.nsk.su> Nickolay Dudorov >> writ >> es: >> : And I can buildkernel only after the next patch: >> >> I just removed this from build until Mike can fix the ciss driver >> itself. > > Sorry about this; I got distracted last night, and my last -current > test build was too long ago. 8( I'll try to fix it tonight; in the > meantime, where's that hat? I've got a patch that I think will work for both 4.x and 5.0. It compiles on -current at least. It is at www.freebsd.org/~jhb/patches/ciss.patch and below (note, my mailer destroys patches, so the version below is just for viewing): Index: ciss.c =================================================================== RCS file: /usr/cvs/src/sys/dev/ciss/ciss.c,v retrieving revision 1.1 diff -u -r1.1 ciss.c --- ciss.c 27 Nov 2001 23:08:36 -0000 1.1 +++ ciss.c 28 Nov 2001 23:23:45 -0000 @@ -216,7 +216,7 @@ static struct cdevsw ciss_cdevsw = { ciss_open, ciss_close, noread, nowrite, ciss_ioctl, nopoll, nommap, nostrategy, "ciss", CISS_CDEV_MAJOR, - nodump, nopsize, 0, -1 + nodump, nopsize, 0, nokqfilter }; /************************************************************************ @@ -3210,7 +3210,7 @@ * Handle an open on the control device. */ static int -ciss_open(dev_t dev, int flags, int fmt, struct proc *p) +ciss_open(dev_t dev, int flags, int fmt, d_thread_t *p) { struct ciss_softc *sc; @@ -3228,7 +3228,7 @@ * Handle the last close on the control device. */ static int -ciss_close(dev_t dev, int flags, int fmt, struct proc *p) +ciss_close(dev_t dev, int flags, int fmt, d_thread_t *p) { struct ciss_softc *sc; @@ -3247,7 +3247,7 @@ * simplify the porting of Compaq's userland tools. */ static int -ciss_ioctl(dev_t dev, u_long cmd, caddr_t addr, int32_t flag, struct proc *p) +ciss_ioctl(dev_t dev, u_long cmd, caddr_t addr, int32_t flag, d_thread_t *p) { struct ciss_softc *sc; int error; -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve!" - http://www.FreeBSD.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed Nov 28 19:37:27 2001 Delivered-To: freebsd-current@freebsd.org Received: from mailhub.yumyumyum.org (dsl092-171-091.wdc1.dsl.speakeasy.net [66.92.171.91]) by hub.freebsd.org (Postfix) with SMTP id 8607C37B405 for ; Wed, 28 Nov 2001 19:37:24 -0800 (PST) Received: (qmail 11418 invoked from network); 29 Nov 2001 03:36:29 -0000 Received: from ken.yumyumyum.org (HELO there) (192.168.0.2) by dsl092-171-091.wdc1.dsl.speakeasy.net with SMTP; 29 Nov 2001 03:36:29 -0000 Content-Type: text/plain; charset="iso-8859-1" From: Kenneth Culver To: freebsd-current@freebsd.org Subject: linuxulator unimplemented syscalls Date: Wed, 28 Nov 2001 22:37:24 -0500 X-Mailer: KMail [version 1.3.1] MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-Id: <20011129033724.8607C37B405@hub.freebsd.org> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I was just wondering if the following syscalls had any chance of being implemented anytime soon? linux: syscall ftruncate64 is obsoleted or not implemented (pid=5695) linux: syscall mmap2 is obsoleted or not implemented (pid=5695) linux: syscall mmap2 is obsoleted or not implemented (pid=5691) linux: syscall mmap2 is obsoleted or not implemented (pid=5691) linux: syscall mmap2 is obsoleted or not implemented (pid=5691) linux: 'ioctl' fd=6, cmd=0x7201 ('r',1) not implemented linux: 'ioctl' fd=6, cmd=0x7201 ('r',1) not implemented linux: 'ioctl' fd=6, cmd=0x7201 ('r',1) not implemented linux: 'ioctl' fd=6, cmd=0x7201 ('r',1) not implemented linux: 'ioctl' fd=6, cmd=0x7201 ('r',1) not implemented I'm wondering because I wanted to use the new transgaming winex to run windows games (which would allow me to remove windows completely from my computer) but it won't run because these syscalls aren't supported. I'm running -CURRENT from a few days ago, with the linux_base-7.1 linux libraries. Thanks. Ken To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed Nov 28 20:14:47 2001 Delivered-To: freebsd-current@freebsd.org Received: from rover.village.org (rover.bsdimp.com [204.144.255.66]) by hub.freebsd.org (Postfix) with ESMTP id 011D737B41B for ; Wed, 28 Nov 2001 20:14:37 -0800 (PST) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.11.3/8.11.3) with ESMTP id fAT4Eaa15641; Wed, 28 Nov 2001 21:14:37 -0700 (MST) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost [127.0.0.1]) by harmony.village.org (8.11.6/8.11.6) with ESMTP id fAT4EaM30333; Wed, 28 Nov 2001 21:14:36 -0700 (MST) (envelope-from imp@harmony.village.org) Message-Id: <200111290414.fAT4EaM30333@harmony.village.org> To: John McCullough Subject: Re: cardbus help Cc: current@FreeBSD.ORG In-reply-to: Your message of "Wed, 28 Nov 2001 12:44:46 PST." <3C054CBE.4000004@hmc.edu> References: <3C054CBE.4000004@hmc.edu> <3C01AB8B.8090009@hmc.edu> <3C01764B.2030508@hmc.edu> <200111260018.fAQ0I9750531@harmony.village.org> <200111270138.fAR1cMM08590@harmony.village.org> Date: Wed, 28 Nov 2001 21:14:36 -0700 From: Warner Losh Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG In message <3C054CBE.4000004@hmc.edu> John McCullough writes: : As I'm still learning, I hope my questions aren't too annoying, : : to do this would I have the kernel route to a different IRQ (say 10) : instead of 255 by default? You can't :-(. That's a bug in the code. The questions aren't stupid. We're trying to figure out some of these things. I'd like to work with you to get this working, but I will have to put you off for a few days (well after Dec 10th, when I return from Japan). If you could contact me after I get back, I'd love to work with you to get things working. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed Nov 28 20:56: 9 2001 Delivered-To: freebsd-current@freebsd.org Received: from mailhub.yumyumyum.org (dsl092-171-091.wdc1.dsl.speakeasy.net [66.92.171.91]) by hub.freebsd.org (Postfix) with SMTP id F329737B430 for ; Wed, 28 Nov 2001 20:55:56 -0800 (PST) Received: (qmail 11512 invoked from network); 29 Nov 2001 04:55:02 -0000 Received: from ken.yumyumyum.org (HELO there) (192.168.0.2) by dsl092-171-091.wdc1.dsl.speakeasy.net with SMTP; 29 Nov 2001 04:55:02 -0000 Content-Type: text/plain; charset="iso-8859-1" From: Kenneth Culver To: freebsd-current@freebsd.org Subject: more on the linuxulator Date: Wed, 28 Nov 2001 23:55:58 -0500 X-Mailer: KMail [version 1.3.1] MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-Id: <20011129045556.F329737B430@hub.freebsd.org> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I'm not sure if I'm sending this to the correct place, but since it is a problem that will/could be fixed in -CURRENT, I'm assuming this is the right place. I tried to get the winex linux binary to run using the linux_base-6.1 libraries and I still got some errors, although not as many: linux: 'ioctl' fd=6, cmd=0x7201 ('r',1) not implemented linux: 'ioctl' fd=6, cmd=0x7201 ('r',1) not implemented linux: 'ioctl' fd=6, cmd=0x7201 ('r',1) not implemented linux: 'ioctl' fd=6, cmd=0x7201 ('r',1) not implemented linux: 'ioctl' fd=6, cmd=0x7201 ('r',1) not implemented I was just wondering if anyone was planning to implement this. If not, I'll probably do my best to try to get it working. Ken To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Wed Nov 28 21:21:16 2001 Delivered-To: freebsd-current@freebsd.org Received: from magic.adaptec.com (magic.adaptec.com [208.236.45.80]) by hub.freebsd.org (Postfix) with ESMTP id 2DFC137B41C for ; Wed, 28 Nov 2001 21:21:12 -0800 (PST) Received: from redfish.adaptec.com (redfish.adaptec.com [162.62.50.11]) by magic.adaptec.com (8.8.8+Sun/8.8.8) with ESMTP id VAA24919; Wed, 28 Nov 2001 21:21:11 -0800 (PST) Received: from btc.btc.adaptec.com (btc.btc.adaptec.com [162.62.64.10]) by redfish.adaptec.com (8.8.8+Sun/8.8.8) with ESMTP id VAA03544; Wed, 28 Nov 2001 21:06:08 -0800 (PST) Received: from hollin.btc.adaptec.com (hollin [162.62.149.56]) by btc.btc.adaptec.com (8.8.8+Sun/8.8.8) with ESMTP id WAA16878; Wed, 28 Nov 2001 22:21:08 -0700 (MST) Received: (from scottl@localhost) by hollin.btc.adaptec.com (8.11.6/8.11.4) id fAT5J1s21642; Wed, 28 Nov 2001 22:19:01 -0700 (MST) (envelope-from scottl) Date: Wed, 28 Nov 2001 22:19:01 -0700 From: Scott Long To: Kenneth Culver Cc: freebsd-current@freebsd.org Subject: Re: more on the linuxulator Message-ID: <20011128221901.A19718@hollin.btc.adaptec.com> References: <20011129045556.F329737B430@hub.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20011129045556.F329737B430@hub.freebsd.org> User-Agent: Mutt/1.3.23i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Wed, Nov 28, 2001 at 11:55:58PM -0500, Kenneth Culver wrote: > I'm not sure if I'm sending this to the correct place, but since it is a > problem that will/could be fixed in -CURRENT, I'm assuming this is the right > place. > > I tried to get the winex linux binary to run using the linux_base-6.1 > libraries and I still got some errors, although not as many: > > linux: 'ioctl' fd=6, cmd=0x7201 ('r',1) not implemented > linux: 'ioctl' fd=6, cmd=0x7201 ('r',1) not implemented > linux: 'ioctl' fd=6, cmd=0x7201 ('r',1) not implemented > linux: 'ioctl' fd=6, cmd=0x7201 ('r',1) not implemented > linux: 'ioctl' fd=6, cmd=0x7201 ('r',1) not implemented > > I was just wondering if anyone was planning to implement this. If not, I'll > probably do my best to try to get it working. > > Ken The errors that you posted don't really mean much without more information. It would be very useful to know what fd=6 refers to, and you can use truss to find that out. Let me know if you need help. Scott To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Nov 29 0: 4: 8 2001 Delivered-To: freebsd-current@freebsd.org Received: from peter3.wemm.org (c1315225-a.plstn1.sfba.home.com [24.14.150.180]) by hub.freebsd.org (Postfix) with ESMTP id B5B3D37B41B for ; Thu, 29 Nov 2001 00:04:04 -0800 (PST) Received: from overcee.netplex.com.au (overcee.wemm.org [10.0.0.3]) by peter3.wemm.org (8.11.0/8.11.0) with ESMTP id fAT844M84282 for ; Thu, 29 Nov 2001 00:04:04 -0800 (PST) (envelope-from peter@wemm.org) Received: from wemm.org (localhost [127.0.0.1]) by overcee.netplex.com.au (Postfix) with ESMTP id 5DC613808; Thu, 29 Nov 2001 00:04:04 -0800 (PST) (envelope-from peter@wemm.org) X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Christoph Herrmann Cc: current@FreeBSD.ORG Subject: Re: cdrecord produces broken CDs on -CURRENT: The Answer ! In-Reply-To: Date: Thu, 29 Nov 2001 00:04:04 -0800 From: Peter Wemm Message-Id: <20011129080404.5DC613808@overcee.netplex.com.au> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Christoph Herrmann wrote: > > The Problem was the use of vfs.ioopt=2 ! > As long as vfs.ioopt is 1 or 2 the CDs are broken and with > vfs.ioopt=0 the CDs are o.k. > > I didn't see any other problems with the use of vfs.ioopt=2, > especially no Filesystem corruption :-). Are there other known > problems withs vfs.ioopt != 0 ? Yes, it breaks read(2) semantics totally. With a traditional system, if you read something into your buffer, it never changes. With vfs.ioopt >= 1, that read may be turned into a mmap() if the conditions are right. Specifically, if you are doing a page aligned read of one or more pages, your original page will be released and you will get a copy-on-write page mapped in. The problem with that is that it is copy-on-write for *you*, not everybody else. If somebody else subsequently changes the file, your buffer will automagically change. This is why it is off. The NFS zerocopy patches made some changes to the VM and buffer system to fix this. It was pretty simple to fix if I recall correctly. Cheers, -Peter -- Peter Wemm - peter@FreeBSD.org; peter@yahoo-inc.com; peter@netplex.com.au "All of this is for nothing if we don't go to the stars" - JMS/B5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Nov 29 3:18:58 2001 Delivered-To: freebsd-current@freebsd.org Received: from mailman.zeta.org.au (mailman.zeta.org.au [203.26.10.16]) by hub.freebsd.org (Postfix) with ESMTP id 0110737B43B; Thu, 29 Nov 2001 03:18:51 -0800 (PST) Received: from bde.zeta.org.au (bde.zeta.org.au [203.2.228.102]) by mailman.zeta.org.au (8.9.3/8.8.7) with ESMTP id WAA26325; Thu, 29 Nov 2001 22:18:47 +1100 Date: Thu, 29 Nov 2001 22:18:51 +1100 (EST) From: Bruce Evans X-X-Sender: To: Robert Watson Cc: Subject: Re: LINT fails due to '/bin/sh:Argument list too long' In-Reply-To: Message-ID: <20011129220209.S1324-100000@gamplex.bde.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, 26 Nov 2001, Robert Watson wrote: > Decided to run a LINT build on my POSIX.1e capability tree in p4 today, > and ran into something a bit unusual: > > make buildkernel KERNCONF=LINT > ... > boss/p4/rwatson/trustedbsd/cap/sys/kern/link_aout.c > /cboss/p4/rwatson/trustedbsd/cap/sys/kern/subr_diskmbr.c > /cboss/p4/rwatson/trustedbsd/cap/sys/libkern/divdi3.c /cboss/p4/rwatson/trustedbsd/cap/sys/libkern/moddi3.c > ... > /bin/sh:Argument list too long > *** Error code 1 > ... > Looks like the number of C files in the kernel was finally too much for > the make depend :-). Haven't seen this on my other trees I built LINT on > lately, so my guess is we're just at the threshold, and one or two more > files (such as in my p4 tree) bumps you over. config(8) -d bloats the pathnames by a factor of about 2, so there is plenty to spare if you don't use -d. It expands: ../../../kern/link_aout.c to: /cboss/p4/rwatson/trustedbsd/cap/sys/kern/link_aout.c My version of config(8) always creates a symlink "@" to the system sources and arranges to use that instead. This unbloats the path prefix a little more, from "../../.." to "./@". The only known problem with this is that it is not clear in error output where "@" points to. But this is already a problem for the "machine" symlink. I don't know how the inefficiencies for the symlink compare with the inefficiencies for the long pathnames. Old inefficiencies for the "machine" symlink are probably dominant anyway (since there are many more references to headers in "machine" than to *.c). Index: main.c =================================================================== RCS file: /home/ncvs/src/usr.sbin/config/main.c,v retrieving revision 1.54 diff -u -2 -r1.54 main.c --- main.c 14 Jul 2001 00:03:05 -0000 1.54 +++ main.c 29 Jul 2001 13:44:45 -0000 @@ -77,8 +77,9 @@ int profiling; +static void cleanheaders(char *); static void configfile(void); static void get_srcdir(void); static void usage(void); -static void cleanheaders(char *); +static void symlinkifchanged(const char *linkcontents, const char *linkname); struct hdr_list { @@ -96,6 +97,6 @@ struct stat buf; - int ch, len; - char *p; + char *archname, *p; + int ch, cold, len; char xxx[MAXPATHLEN]; @@ -131,17 +132,20 @@ while (len > 1 && destdir[len - 1] == '/') destdir[--len] = '\0'; - get_srcdir(); } else { strlcpy(destdir, CDIR, sizeof(destdir)); strlcat(destdir, PREFIX, sizeof(destdir)); } + get_srcdir(); p = path((char *)NULL); if (stat(p, &buf)) { + cold = 1; if (mkdir(p, 0777)) err(2, "%s", p); + } else { + cold = 0; + if (!S_ISDIR(buf.st_mode)) + errx(2, "%s isn't a directory", p); } - else if ((buf.st_mode & S_IFMT) != S_IFDIR) - errx(2, "%s isn't a directory", p); dtab = NULL; @@ -153,16 +157,19 @@ exit(1); } + archname = getenv("MACHINE_ARCH"); /* XXX */ + if (archname == NULL) + archname = machinename; + /* - * make symbolic links in compilation directory - * for "sys" (to make genassym.c work along with #include ) - * and similarly for "machine". + * Create symbolic links "@" and "machine" to help the makefile + * locate the root of the kernel source tree and the + * include directory. */ - if (*srcdir == '\0') - (void)snprintf(xxx, sizeof(xxx), "../../include"); - else - (void)snprintf(xxx, sizeof(xxx), "%s/%s/include", - srcdir, machinename); - (void) unlink(path("machine")); - (void) symlink(xxx, path("machine")); + symlinkifchanged(srcdir, path("@")); + if ((unsigned)snprintf(xxx, sizeof(xxx), "@/%s/include", archname) >= + sizeof(xxx)) + errx(2, "preposterously long machine arch name"); + symlinkifchanged(xxx, path("machine")); + options(); /* make options .h files */ makefile(); /* build Makefile */ @@ -171,5 +178,6 @@ cleanheaders(p); printf("Kernel build directory is %s\n", p); - printf("Don't forget to do a ``make depend''\n"); + if (cold == 0) + printf("Don't forget to do a ``make depend''\n"); exit(0); } @@ -478,3 +486,24 @@ hl->h_next = htab; htab = hl; +} + +/* Create a symlink if the correct symlink doesn't already exist. */ +static void +symlinkifchanged(const char *linkcontents, const char *linkname) +{ + struct stat sb; + size_t len; + char buf[PATH_MAX]; + + if (lstat(linkname, &sb) == 0) { + if (S_ISLNK(sb.st_mode)) { + len = readlink(linkname, buf, sizeof(buf)); + if (len == strlen(linkcontents) && + strncmp(buf, linkcontents, len) == 0) + return; + } + (void)unlink(linkname); + } + if (symlink(linkcontents, linkname) != 0) + err(2, "symlink `%s' -> `%s'", linkname, linkcontents); } Index: mkmakefile.c =================================================================== RCS file: /home/ncvs/src/usr.sbin/config/mkmakefile.c,v retrieving revision 1.71 diff -u -2 -r1.71 mkmakefile.c --- mkmakefile.c 17 Sep 2001 21:25:48 -0000 1.71 +++ mkmakefile.c 18 Sep 2001 00:34:56 -0000 @@ -156,6 +156,4 @@ fprintf(ofp, "PROFLEVEL=%d\n", profiling); } - if (*srcdir != '\0') - fprintf(ofp,"S=%s\n", srcdir); while (fgets(line, BUFSIZ, ifp) != 0) { if (*line != '%') { Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Nov 29 5:36:37 2001 Delivered-To: freebsd-current@freebsd.org Received: from mailman.zeta.org.au (mailman.zeta.org.au [203.26.10.16]) by hub.freebsd.org (Postfix) with ESMTP id 4C9E137B420 for ; Thu, 29 Nov 2001 05:36:31 -0800 (PST) Received: from bde.zeta.org.au (bde.zeta.org.au [203.2.228.102]) by mailman.zeta.org.au (8.9.3/8.8.7) with ESMTP id AAA09945; Fri, 30 Nov 2001 00:36:22 +1100 Date: Fri, 30 Nov 2001 00:36:26 +1100 (EST) From: Bruce Evans X-X-Sender: To: Peter Jeremy Cc: Subject: Re: Panic changing screen mode with vidcontrol In-Reply-To: <20011126173543.A7551@gsmx07.alcatel.com.au> Message-ID: <20011130003256.T1674-100000@gamplex.bde.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, 26 Nov 2001, Peter Jeremy wrote: > Having installed a new kernel and userland from sources about a day > old, my vidcontrol command now causes a panic: > > Fatal trap 12: page fault while in vm86 mode > fault virtual address = 0xc359b > ... > The backtrace shows nothing useful - gdb doesn't seem to handle > tracing through vm86 :-(. > > The command I used was "vidcontrol 132x60" after confirming that > this was listed in "vidcontrol -i mode". I have previously been > using VESA_132x60, but that also panics now. > > Any suggestions where to look? If it's a new bug, then it might be from not updating bios.c in the recent pmap changes. From error output: ./@/i386/i386/bios.c: In function `bios16': ./@/i386/i386/bios.c:379: warning: comparison between pointer and integer Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Nov 29 10:20:22 2001 Delivered-To: freebsd-current@freebsd.org Received: from dan.emsphone.com (dan.emsphone.com [199.67.51.101]) by hub.freebsd.org (Postfix) with ESMTP id 1BFA337B417 for ; Thu, 29 Nov 2001 10:20:18 -0800 (PST) Received: (from dan@localhost) by dan.emsphone.com (8.11.6/8.11.6) id fATIKFq50835; Thu, 29 Nov 2001 12:20:15 -0600 (CST) (envelope-from dan) Date: Thu, 29 Nov 2001 12:20:14 -0600 From: Dan Nelson To: Kenneth Culver Cc: freebsd-current@FreeBSD.ORG Subject: Re: linuxulator unimplemented syscalls Message-ID: <20011129182012.GF99933@dan.emsphone.com> References: <20011129033724.8607C37B405@hub.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20011129033724.8607C37B405@hub.freebsd.org> User-Agent: Mutt/1.3.23.2i X-OS: FreeBSD 5.0-CURRENT X-message-flag: Outlook Error Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG In the last episode (Nov 28), Kenneth Culver said: > I was just wondering if the following syscalls had any chance of being > implemented anytime soon? > > linux: syscall ftruncate64 is obsoleted or not implemented (pid=5695) > linux: syscall mmap2 is obsoleted or not implemented (pid=5691) > linux: 'ioctl' fd=6, cmd=0x7201 ('r',1) not implemented > > I'm wondering because I wanted to use the new transgaming winex to > run windows games (which would allow me to remove windows completely > from my computer) but it won't run because these syscalls aren't > supported. > > I'm running -CURRENT from a few days ago, with the linux_base-7.1 linux > libraries. Thanks. From Linux headers: #define TUNIOCGETINFO 0x7201 /* get version of driver & capabilities of tuner */ Doubtful that its failure will affect you. I assume ftruncate64() should map almost directly onto our ftruncate(). Not sure what mmap2() is. -- Dan Nelson dnelson@allantgroup.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Nov 29 10:43: 0 2001 Delivered-To: freebsd-current@freebsd.org Received: from alicia.nttmcl.com (alicia.nttmcl.com [216.69.69.10]) by hub.freebsd.org (Postfix) with ESMTP id 726EB37B505 for ; Thu, 29 Nov 2001 10:42:45 -0800 (PST) Received: (from gene@localhost) by alicia.nttmcl.com (8.10.1/8.10.1) id fATIgjx29920 for current@freebsd.org; Thu, 29 Nov 2001 10:42:45 -0800 (PST) Date: Thu, 29 Nov 2001 10:42:45 -0800 From: "Eugene M. Kim" To: current@freebsd.org Subject: Perl build breakage Message-ID: <20011129104245.A29622@alicia.nttmcl.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG 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.) 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 -------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Nov 29 11: 5: 3 2001 Delivered-To: freebsd-current@freebsd.org Received: from mailout06.sul.t-online.de (mailout06.sul.t-online.com [194.25.134.19]) by hub.freebsd.org (Postfix) with ESMTP id AFCBA37B417 for ; Thu, 29 Nov 2001 11:05:00 -0800 (PST) Received: from fwd02.sul.t-online.de by mailout06.sul.t-online.de with smtp id 169WUW-0005jd-00; Thu, 29 Nov 2001 20:05:00 +0100 Received: from twoflower (320072111332-0001@[217.80.121.149]) by fwd02.sul.t-online.com with smtp id 169WUJ-1tJphIC; Thu, 29 Nov 2001 20:04:47 +0100 Reply-To: From: Jan.Stocker@t-online.de (Jan Stocker) To: "freebsd-current@FreeBSD. ORG" Subject: ntfs fs Date: Thu, 29 Nov 2001 20:03:55 +0100 Message-ID: <000301c17908$97f50100$fe02010a@twoflower.liebende.de> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook 8.5, Build 4.71.2173.0 Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V4.72.2106.4 X-Sender: 320072111332-0001@t-dialin.net Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi, after a 'ls -l' on a ntfs mounted partition my system freezes and reboots. A normal 'ls' really runs quite fine... Jan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Nov 29 11:18:29 2001 Delivered-To: freebsd-current@freebsd.org Received: from troutmask.apl.washington.edu (troutmask.apl.washington.edu [128.208.78.105]) by hub.freebsd.org (Postfix) with ESMTP id C980637B41F for ; Thu, 29 Nov 2001 11:18:12 -0800 (PST) Received: (from sgk@localhost) by troutmask.apl.washington.edu (8.11.4/8.11.4) id fATJI8T60584; Thu, 29 Nov 2001 11:18:08 -0800 (PST) (envelope-from sgk) Date: Thu, 29 Nov 2001 11:18:08 -0800 From: Steve Kargl To: jstocker@tzi.de Cc: "freebsd-current@FreeBSD. ORG" Subject: Re: ntfs fs Message-ID: <20011129111808.A4902@troutmask.apl.washington.edu> References: <000301c17908$97f50100$fe02010a@twoflower.liebende.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <000301c17908$97f50100$fe02010a@twoflower.liebende.de>; from Jan.Stocker@t-online.de on Thu, Nov 29, 2001 at 08:03:55PM +0100 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, Nov 29, 2001 at 08:03:55PM +0100, Jan Stocker wrote: > Hi, > after a 'ls -l' on a ntfs mounted partition my system freezes and reboots. A > normal 'ls' really runs quite fine... > Jan, This message contains very little useful information. See http://www.freebsd.org/doc/en_US.ISO8859-1/books/developers-handbook/kerneldebug.html -- Steve To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Nov 29 12:11:23 2001 Delivered-To: freebsd-current@freebsd.org Received: from radiac.mine.nu (h138n2fls22o980.telia.com [213.66.251.138]) by hub.freebsd.org (Postfix) with ESMTP id 75EDC37B435 for ; Thu, 29 Nov 2001 12:11:07 -0800 (PST) Received: (from ps@localhost) by radiac.mine.nu (8.11.6/8.11.6) id fATKGeA21819 for current@freebsd.org; Thu, 29 Nov 2001 21:16:41 +0100 (CET) (envelope-from ps) Date: Thu, 29 Nov 2001 21:16:40 +0100 From: Patrik Sundberg To: current@freebsd.org Subject: Archos 6000 Message-ID: <20011129211640.A21799@radiac.mine.nu> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable User-Agent: Mutt/1.2.4i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG has anyone tested using a Archos 6000 (using a isd200 interface) with the umass driver under freebsd? if it isn't working, is anyone working on getting it supported? there is a linux driver (http://bjorn.haxx.se/isd200/) but i don't really grok usb and the linux driver.. --=20 ---------------------------------------------------------------------------. Patrik Sundberg Address: Rydsv=E4gen 100C, 584 31 Link=F6ping, Sweden = | Email: ps@raditex.se || ps@radiac.mine.nu | Phone: +46 13 178567 || +46 707 602240 | =2E---> Applied Physics and Electrical Engineering student = | |-----> Master of Science in Business Administration and Economics student | |-------> UNIX/Programming consultant | `--------------------------------------------------------------------------' To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Nov 29 12:20:45 2001 Delivered-To: freebsd-current@freebsd.org Received: from InterJet.elischer.org (c421509-a.pinol1.sfba.home.com [24.7.86.9]) by hub.freebsd.org (Postfix) with ESMTP id A8F6537B41B for ; Thu, 29 Nov 2001 12:20:33 -0800 (PST) Received: from localhost (localhost.elischer.org [127.0.0.1]) by InterJet.elischer.org (8.9.1a/8.9.1) with ESMTP id MAA21200; Thu, 29 Nov 2001 12:04:07 -0800 (PST) Date: Thu, 29 Nov 2001 12:04:06 -0800 (PST) From: Julian Elischer To: jstocker@tzi.de Cc: "freebsd-current@FreeBSD. ORG" Subject: Re: ntfs fs In-Reply-To: <000301c17908$97f50100$fe02010a@twoflower.liebende.de> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ls -l does a stat on each file ls on its own does not..... On Thu, 29 Nov 2001, Jan Stocker wrote: > Hi, > after a 'ls -l' on a ntfs mounted partition my system freezes and reboots. A > normal 'ls' really runs quite fine... > > Jan > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-current" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Nov 29 13: 0:26 2001 Delivered-To: freebsd-current@freebsd.org Received: from mleko.xocolatl.com (xocolatl.com [216.240.48.11]) by hub.freebsd.org (Postfix) with ESMTP id 02ACC37B417 for ; Thu, 29 Nov 2001 13:00:20 -0800 (PST) Received: from mleko.xocolatl.com (localhost [127.0.0.1]) by mleko.xocolatl.com (8.12.1/8.12.1) with ESMTP id fATKAvHl097583 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO) for ; Thu, 29 Nov 2001 12:10:57 -0800 (PST)?g (envelope-from frf@mleko.xocolatl.com)œ Received: (from frf@localhost) by mleko.xocolatl.com (8.12.1/8.12.1/Submit) id fATKAvPC097582 for freebsd-current@freebsd.org; Thu, 29 Nov 2001 12:10:57 -0800 (PST)?g (envelope-from frf) From: frf Message-Id: <200111292010.fATKAvPC097582@mleko.xocolatl.com> Subject: WARNING: Driver mistake: destroy_dev on 154/1 To: freebsd-current@freebsd.org Date: Thu, 29 Nov 2001 12:10:57 -0800 (PST) X-Mailer: ELM [version 2.4ME+ PL95a (25)] MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ASR is still broken for SMP. WARNING: Driver mistake: destroy_dev on 154/1 kernel panic: "dont do that" Tyan Thunder K7 with 2 1.2GHz Ahtlon's Adaptec 3200S Rev 3607 Current as of this morning. -- frf@xocolatl.com 39:FF:7C:52:66:9D:B9:A3 EA:67:3C:7F:D1:B6:30:36 Polymer physicists are into chains. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Nov 29 13:24:21 2001 Delivered-To: freebsd-current@freebsd.org Received: from web21110.mail.yahoo.com (web21110.mail.yahoo.com [216.136.227.112]) by hub.freebsd.org (Postfix) with SMTP id F3DA437B419 for ; Thu, 29 Nov 2001 13:24:17 -0800 (PST) Message-ID: <20011129212040.97817.qmail@web21110.mail.yahoo.com> Received: from [62.254.0.4] by web21110.mail.yahoo.com via HTTP; Thu, 29 Nov 2001 13:20:40 PST Date: Thu, 29 Nov 2001 13:20:40 -0800 (PST) From: Hiten Pandya Subject: sysinstall - no extended partitions To: current@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG hi.. i wanted to know... that why doesn't the sysinstall utility support the viewing of extended partitions... i mean.. why doesn't it support the viewing of exisitng FAT32/FAT16 extended/logical partitons is not supported... thanks.. regards.... Yours Sincerely, __________________________________________________ Do You Yahoo!? Yahoo! GeoCities - quick and easy web site hosting, just $8.95/month. http://geocities.yahoo.com/ps/info1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Nov 29 14: 8:43 2001 Delivered-To: freebsd-current@freebsd.org Received: from po3.wam.umd.edu (po3.wam.umd.edu [128.8.10.165]) by hub.freebsd.org (Postfix) with ESMTP id 785A837B41D for ; Thu, 29 Nov 2001 14:08:38 -0800 (PST) Received: from rac3.wam.umd.edu (IDENT:root@rac3.wam.umd.edu [128.8.10.143]) by po3.wam.umd.edu (8.9.3/8.9.3) with ESMTP id RAA29167; Thu, 29 Nov 2001 17:08:32 -0500 (EST) Received: from rac3.wam.umd.edu (IDENT:sendmail@localhost [127.0.0.1]) by rac3.wam.umd.edu (8.9.3/8.9.3) with SMTP id RAA21181; Thu, 29 Nov 2001 17:08:32 -0500 (EST) Received: from localhost (culverk@localhost) by rac3.wam.umd.edu (8.9.3/8.9.3) with ESMTP id RAA21177; Thu, 29 Nov 2001 17:08:31 -0500 (EST) X-Authentication-Warning: rac3.wam.umd.edu: culverk owned process doing -bs Date: Thu, 29 Nov 2001 17:08:31 -0500 (EST) From: Kenneth Wayne Culver To: Dan Nelson Cc: Kenneth Culver , freebsd-current@FreeBSD.ORG Subject: Re: linuxulator unimplemented syscalls In-Reply-To: <20011129182012.GF99933@dan.emsphone.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, 29 Nov 2001, Dan Nelson wrote: > In the last episode (Nov 28), Kenneth Culver said: > > I was just wondering if the following syscalls had any chance of being > > implemented anytime soon? > > > > linux: syscall ftruncate64 is obsoleted or not implemented (pid=5695) > > linux: syscall mmap2 is obsoleted or not implemented (pid=5691) > > linux: 'ioctl' fd=6, cmd=0x7201 ('r',1) not implemented > > > > I'm wondering because I wanted to use the new transgaming winex to > > run windows games (which would allow me to remove windows completely > > from my computer) but it won't run because these syscalls aren't > > supported. > > > > I'm running -CURRENT from a few days ago, with the linux_base-7.1 linux > > libraries. Thanks. > > >From Linux headers: > > #define TUNIOCGETINFO 0x7201 /* get version of driver & capabilities of tuner */ > > Doubtful that its failure will affect you. I assume ftruncate64() > should map almost directly onto our ftruncate(). Not sure what mmap2() > is. > Well, I switched to the linux_base-6.1 libs and all but the 0x7201 error stopped occuring, but still the same problem, winex says it can't open the the file that I'm trying to execute. Ken To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Nov 29 14:27: 8 2001 Delivered-To: freebsd-current@freebsd.org Received: from dan.emsphone.com (dan.emsphone.com [199.67.51.101]) by hub.freebsd.org (Postfix) with ESMTP id EDCD637B417 for ; Thu, 29 Nov 2001 14:27:04 -0800 (PST) Received: (from dan@localhost) by dan.emsphone.com (8.11.6/8.11.6) id fATMQxw57028; Thu, 29 Nov 2001 16:26:59 -0600 (CST) (envelope-from dan) Date: Thu, 29 Nov 2001 16:26:59 -0600 From: Dan Nelson To: Kenneth Wayne Culver Cc: Kenneth Culver , freebsd-current@FreeBSD.ORG Subject: Re: linuxulator unimplemented syscalls Message-ID: <20011129222659.GB10667@dan.emsphone.com> References: <20011129182012.GF99933@dan.emsphone.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.3.23.2i X-OS: FreeBSD 5.0-CURRENT X-message-flag: Outlook Error Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG In the last episode (Nov 29), Kenneth Wayne Culver said: > On Thu, 29 Nov 2001, Dan Nelson wrote: > > From Linux headers: > > > > #define TUNIOCGETINFO 0x7201 /* get version of driver & capabilities of tuner */ > > > > Doubtful that its failure will affect you. I assume ftruncate64() > > should map almost directly onto our ftruncate(). Not sure what > > mmap2() is. > > Well, I switched to the linux_base-6.1 libs and all but the 0x7201 > error stopped occuring, but still the same problem, winex says it > can't open the the file that I'm trying to execute. They only stopped occuring because RedHat 6.1 didn't even support 64-bit files, so of course those libs aren't going to use the 64-bit calls :) Your problem is probably somewhere other than ioctl 0x7201; try trussing/stracing the app and see what it's trying to access. -- Dan Nelson dnelson@allantgroup.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Nov 29 14:42: 8 2001 Delivered-To: freebsd-current@freebsd.org Received: from po3.wam.umd.edu (po3.wam.umd.edu [128.8.10.165]) by hub.freebsd.org (Postfix) with ESMTP id 0845637B41C for ; Thu, 29 Nov 2001 14:42:05 -0800 (PST) Received: from rac3.wam.umd.edu (IDENT:root@rac3.wam.umd.edu [128.8.10.143]) by po3.wam.umd.edu (8.9.3/8.9.3) with ESMTP id RAA06650; Thu, 29 Nov 2001 17:41:57 -0500 (EST) Received: from rac3.wam.umd.edu (IDENT:sendmail@localhost [127.0.0.1]) by rac3.wam.umd.edu (8.9.3/8.9.3) with SMTP id RAA03786; Thu, 29 Nov 2001 17:41:57 -0500 (EST) Received: from localhost (culverk@localhost) by rac3.wam.umd.edu (8.9.3/8.9.3) with ESMTP id RAA03782; Thu, 29 Nov 2001 17:41:57 -0500 (EST) X-Authentication-Warning: rac3.wam.umd.edu: culverk owned process doing -bs Date: Thu, 29 Nov 2001 17:41:57 -0500 (EST) From: Kenneth Wayne Culver To: Dan Nelson Cc: Kenneth Culver , freebsd-current@FreeBSD.ORG Subject: Re: linuxulator unimplemented syscalls In-Reply-To: <20011129222659.GB10667@dan.emsphone.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > Your problem is probably somewhere other than ioctl 0x7201; try > trussing/stracing the app and see what it's trying to access. > Alright, I'll try that, I think I have another clue though, I got it to find the file (it was looking in /usr/compat/linux/mnt/cdrom instead of the regular /mnt/cdrom I guess b/c it was running from linux) but now it's back to having problems with mmap2. I'll find the manpage on truss, and put some output here when I get some. Ken To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Nov 29 15:35:47 2001 Delivered-To: freebsd-current@freebsd.org Received: from horsey.gshapiro.net (horsey.gshapiro.net [209.220.147.178]) by hub.freebsd.org (Postfix) with ESMTP id B0DF437B416 for ; Thu, 29 Nov 2001 15:35:44 -0800 (PST) Received: from horsey.gshapiro.net (gshapiro@localhost [IPv6:::1]) by horsey.gshapiro.net (8.12.2.Beta1/8.12.2.Beta1) with ESMTP id fATNZhni086898 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO); Thu, 29 Nov 2001 15:35:43 -0800 (PST) Received: (from gshapiro@localhost) by horsey.gshapiro.net (8.12.2.Beta1/8.12.2.Beta1/Submit) id fATNZhJ1086895; Thu, 29 Nov 2001 15:35:43 -0800 (PST) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15366.50767.413603.503866@horsey.gshapiro.net> Date: Thu, 29 Nov 2001 15:35:43 -0800 From: Gregory Neil Shapiro To: Patrik Sundberg Cc: current@FreeBSD.ORG Subject: Re: Archos 6000 In-Reply-To: <20011129211640.A21799@radiac.mine.nu> References: <20011129211640.A21799@radiac.mine.nu> X-Mailer: VM 6.96 under 21.5 (beta3) "asparagus" XEmacs Lucid Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG 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. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Nov 29 16:24:27 2001 Delivered-To: freebsd-current@freebsd.org Received: from KAL1.everest-pi.com.pl (kal1.everest-pi.com.pl [213.25.121.254]) by hub.freebsd.org (Postfix) with ESMTP id 262E137B416 for ; Thu, 29 Nov 2001 16:24:19 -0800 (PST) Received: from mx1.mail.yahoo.com (ip-914.dialup.cl.spb.ru [212.46.197.200]) by KAL1.everest-pi.com.pl with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.2655.55) id XVPFAZ5W; Fri, 30 Nov 2001 01:28:34 +0100 Message-ID: <00007c1f5111$00000800$00000df2@mx1.mail.yahoo.com> To: From: "Specials" Subject: Is your family protected financially? Date: Fri, 30 Nov 2001 03:22:00 -0900 MIME-Version: 1.0 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG

LIFEQUOTE
SAVE UP TO 70% ON LIFE INSURANCE PREMIUMS

Protect Your Family In Case Of Death

Plan For Your Childs Education

Protect Your Estate


The LEADING source for Life Insurance Companies!

The BEST Agents!
And The FRIENDLIEST Staff!

CLICK HERE
For a FREE Quote!
It's
QUICK , EASY and COMPLETE


































If you would like to be removed from any further mailings just click here = Remove Me and hi= t send and you will automatically be removed from any other mailings.

To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Nov 29 16:46:53 2001 Delivered-To: freebsd-current@freebsd.org Received: from tholian.rsasecurity.com (mail.rsasecurity.com [204.167.112.129]) by hub.freebsd.org (Postfix) with SMTP id B550937B416 for ; Thu, 29 Nov 2001 16:46:35 -0800 (PST) Received: from sdtihq24.securitydynamics.com by tholian.rsasecurity.com via smtpd (for hub.FreeBSD.org [216.136.204.18]) with SMTP; 30 Nov 2001 00:46:32 UT Received: from ebola.securitydynamics.com (ebola.securid.com [192.168.7.4]) by sdtihq24.securid.com (Pro-8.9.3/Pro-8.9.3) with ESMTP id TAA07714 for ; Thu, 29 Nov 2001 19:46:34 -0500 (EST) Received: from spirit.dynas.se (localhost [127.0.0.1]) by ebola.securitydynamics.com (8.10.2+Sun/8.9.1) with SMTP id fAU0kWi01989 for ; Thu, 29 Nov 2001 19:46:32 -0500 (EST) Received: (qmail 26050 invoked from network); 30 Nov 2001 00:46:31 -0000 Received: from explorer.rsa.com (HELO mikko.rsa.com) (10.81.217.59) by spirit.dynas.se with SMTP; 30 Nov 2001 00:46:31 -0000 Received: (from mikko@localhost) by mikko.rsa.com (8.11.6/8.11.6) id fAU0kT653075; Thu, 29 Nov 2001 16:46:29 -0800 (PST) (envelope-from mikko) Date: Thu, 29 Nov 2001 16:46:29 -0800 (PST) From: Mikko Tyolajarvi Message-Id: <200111300046.fAU0kT653075@mikko.rsa.com> To: nathan@rtfm.net Cc: current@freebsd.org Subject: Re: df -l broken Newsgroups: local.freebsd.current References: <200111252141.fAPLf1639599@trantor.xs4all.nl> <200111252256.fAPMubV20382@bunrab.catwhisker.org> <20011126000722.B280@nebula.noos.fr> <20011126222855.A14973@rtfm.net> X-Newsreader: NN version 6.5.6 (NOV) Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG In local.freebsd.current you write: >On Mon, Nov 26, 2001 at 12:07:22AM +0100, Maxime Henrion wrote: >> If my patch is exact, then the bug should manifest itself only if there >> are no network filesystems mounted. Do you have any network fs mounted >> on your box ? >No networked filesystems here, and no problems: They don't have to be mounted, just loaded. E.g. if "nfs" shows up with "lsvfs", "df -l " will work, if not, it won't. (dunno about other network file systems). Thus: gw% lsvfs Filesystem Refs Flags -------------------------------- ----- --------------- ufs 5 procfs 1 synthetic gw% df -l gw% gw% su -m Password: gw# kldload nfs gw# ^D gw% lsvfs Filesystem Refs Flags -------------------------------- ----- --------------- ufs 5 procfs 1 synthetic nfs 0 network gw% df -l Filesystem 1K-blocks Used Avail Capacity Mounted on /dev/ad0s1a 254063 45332 188406 19% / /dev/ad0s1g 34487716 1482012 30246688 5% /home /dev/ad0s1e 2032623 519974 1350040 28% /usr /dev/ad0s1f 2032623 2901 1867113 0% /var procfs 4 4 0 100% /proc /dev/vn0c 130020 4 119616 0% /tmp (This is on -STABLE, BTW) $.02, /Mikko >[341]nathan@bokonon:~% df -k >Filesystem 1K-blocks Used Avail Capacity Mounted on >/dev/da0s1a 99191 52993 38263 58% / >devfs 1 1 0 100% /dev >/dev/da0s1f 6450317 4945823 988469 83% /usr >/dev/da0s1e 99191 7816 83440 9% /var >procfs 4 4 0 100% /proc >[342]nathan@bokonon:~% df -l >Filesystem 512-blocks Used Avail Capacity Mounted on >/dev/da0s1a 198382 105986 76526 58% / >devfs 2 2 0 100% /dev >/dev/da0s1f 12900634 9891646 1976938 83% /usr >/dev/da0s1e 198382 15632 166880 9% /var >procfs 8 8 0 100% /proc >[343]nathan@bokonon:~% uname -a >FreeBSD bokonon.rtfm.net 5.0-CURRENT FreeBSD 5.0-CURRENT #2: Sun Nov 4 23:28:25 EST 2001 nathan@bokonon.rtfm.net:/usr/src/sys/i386/compile/SAN_LORENZO i386 [...] -- Mikko Työläjärvi_______________________________________mikko@rsasecurity.com RSA Security To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Nov 29 17:13:40 2001 Delivered-To: freebsd-current@freebsd.org Received: from noos.fr (r178m112.cybercable.tm.fr [195.132.178.112]) by hub.freebsd.org (Postfix) with ESMTP id 5296437B416 for ; Thu, 29 Nov 2001 17:13:37 -0800 (PST) Received: (from mux@localhost) by noos.fr (8.11.6/8.11.4) id fAU1DZL05021; Fri, 30 Nov 2001 02:13:35 +0100 (CET) (envelope-from mux) Date: Fri, 30 Nov 2001 02:13:35 +0100 From: Maxime Henrion To: current@FreeBSD.org Cc: Mikko Tyolajarvi Subject: Re: df -l broken Message-ID: <20011130021335.A284@nebula.noos.fr> References: <200111252141.fAPLf1639599@trantor.xs4all.nl> <200111252256.fAPMubV20382@bunrab.catwhisker.org> <20011126000722.B280@nebula.noos.fr> <20011126222855.A14973@rtfm.net> <200111300046.fAU0kT653075@mikko.rsa.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200111300046.fAU0kT653075@mikko.rsa.com> User-Agent: Mutt/1.3.23i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Mikko Tyolajarvi wrote: > In local.freebsd.current you write: > > >On Mon, Nov 26, 2001 at 12:07:22AM +0100, Maxime Henrion wrote: > >> If my patch is exact, then the bug should manifest itself only if there > >> are no network filesystems mounted. Do you have any network fs mounted > >> on your box ? > > >No networked filesystems here, and no problems: > > They don't have to be mounted, just loaded. E.g. if "nfs" > shows up with "lsvfs", "df -l " will work, if not, it won't. > (dunno about other network file systems). [...] I looked at the code a bit more closely and you're entirely right. I think I figured out why my patch caused a core dump. Here is a more correct patch that should fix the problem without causing core dumps. --- df.c 1 Aug 2001 02:09:09 -0000 1.32 +++ df.c 30 Nov 2001 01:06:52 -0000 @@ -561,7 +561,9 @@ *strptr = ','; free(listptr[i]); } - *(--strptr) = NULL; + if (i > 0) + strptr--; + *strptr = NULL; free(listptr); return (str); I would be happy to get some feedback, especially from the person who got a core dump. :-) Thanks, Maxime Henrion -- Don't be fooled by cheap finnish imitations ; BSD is the One True Code To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Nov 29 17:25:53 2001 Delivered-To: freebsd-current@freebsd.org Received: from tholian.rsasecurity.com (mail.rsasecurity.com [204.167.112.129]) by hub.freebsd.org (Postfix) with SMTP id B067437B405 for ; Thu, 29 Nov 2001 17:25:49 -0800 (PST) Received: from sdtihq24.securitydynamics.com by tholian.rsasecurity.com via smtpd (for hub.FreeBSD.org [216.136.204.18]) with SMTP; 30 Nov 2001 01:25:46 UT Received: from ebola.securitydynamics.com (ebola.securid.com [192.168.7.4]) by sdtihq24.securid.com (Pro-8.9.3/Pro-8.9.3) with ESMTP id UAA09250 for ; Thu, 29 Nov 2001 20:25:46 -0500 (EST) Received: from spirit.dynas.se (localhost [127.0.0.1]) by ebola.securitydynamics.com (8.10.2+Sun/8.9.1) with SMTP id fAU1PiB03690 for ; Thu, 29 Nov 2001 20:25:44 -0500 (EST) Received: (qmail 28908 invoked from network); 30 Nov 2001 01:25:43 -0000 Received: from explorer.rsa.com (HELO mikko.rsa.com) (10.81.217.59) by spirit.dynas.se with SMTP; 30 Nov 2001 01:25:43 -0000 Date: Thu, 29 Nov 2001 17:25:41 -0800 (PST) From: =?ISO-8859-1?Q?Mikko_Ty=F6l=E4j=E4rvi?= X-X-Sender: mikko@mikko.rsa.com To: Maxime Henrion Cc: current@FreeBSD.org Subject: Re: df -l broken In-Reply-To: <20011130021335.A284@nebula.noos.fr> Message-ID: <20011129172341.S391-100000@mikko.rsa.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-MIME-Autoconverted: from 8bit to quoted-printable by sdtihq24.securid.com id UAA09250 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Fri, 30 Nov 2001, Maxime Henrion wrote: > Mikko Tyolajarvi wrote: [...] > > They don't have to be mounted, just loaded. E.g. if "nfs" > > shows up with "lsvfs", "df -l " will work, if not, it won't. > > (dunno about other network file systems). > [...] > > I looked at the code a bit more closely and you're entirely right. I > think I figured out why my patch caused a core dump. Here is a more > correct patch that should fix the problem without causing core dumps. > FWIW: Seems to solve the problem on -STABLE. Didn't try your earlier attempt, so I don't have any core dump experiences ;-) $.02, /Mikko Mikko Ty=F6l=E4j=E4rvi_______________________________________mikko@rsase= curity.com RSA Security To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Nov 29 17:42:25 2001 Delivered-To: freebsd-current@freebsd.org Received: from Veronica.wmol.com (veronica.wmol.com [208.242.83.241]) by hub.freebsd.org (Postfix) with ESMTP id E3CB337B416 for ; Thu, 29 Nov 2001 17:42:20 -0800 (PST) Received: from rain.hill.hom (24.247.83.42.bay.mi.chartermi.net [24.247.83.42]) by Veronica.wmol.com (Vircom SMTPRS 5.0.193) with ESMTP id for ; Thu, 29 Nov 2001 20:38:50 -0500 Date: Thu, 29 Nov 2001 20:41:04 +0000 From: David Hill To: freebsd-current@freebsd.org Subject: merging openbsd's pf into FreeBSD Message-Id: <20011129204104.14a306b9.david@phobia.ms> X-Mailer: Sylpheed version 0.6.4 (GTK+ 1.2.10; i386--freebsd5.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello - I am wondering if the FreeBSD team has any thoughts about importing OpenBSD's new pf into FreeBSD. Has anyone looked at the code? During an interview with Theo himself, he talked about the new features of pf, compared with ipf. http://www.kerneltrap.org/article.php?sid=389 Thanks David To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Nov 29 18:41:14 2001 Delivered-To: freebsd-current@freebsd.org Received: from netau1.alcanet.com.au (ntp.alcanet.com.au [203.62.196.27]) by hub.freebsd.org (Postfix) with ESMTP id 33D6C37B417 for ; Thu, 29 Nov 2001 18:41:11 -0800 (PST) Received: from mfg1.cim.alcatel.com.au (mfg1.cim.alcatel.com.au [139.188.23.1]) by netau1.alcanet.com.au (8.9.3 (PHNE_22672)/8.9.3) with ESMTP id NAA18089 for ; Fri, 30 Nov 2001 13:41:08 +1100 (EDT) Received: from gsmx07.alcatel.com.au by cim.alcatel.com.au (PMDF V5.2-32 #37645) with ESMTP id <01KBBF9EE7C04M2KPP@cim.alcatel.com.au> for freebsd-current@freebsd.org; Fri, 30 Nov 2001 13:41:02 +1100 Received: (from jeremyp@localhost) by gsmx07.alcatel.com.au (8.11.6/8.11.6) id fAU2f4x42635 for freebsd-current@freebsd.org; Fri, 30 Nov 2001 13:41:04 +1100 Content-return: prohibited Date: Fri, 30 Nov 2001 13:41:04 +1100 From: Peter Jeremy Subject: XFree86 3.3.6 dying To: freebsd-current@freebsd.org Mail-Followup-To: freebsd-current@freebsd.org Message-id: <20011130134104.A42555@gsmx07.alcatel.com.au> MIME-version: 1.0 Content-type: text/plain; charset=us-ascii Content-disposition: inline User-Agent: Mutt/1.2.5i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG With a recently re-built XFree86, running on -current from last Sunday, whenever I hit one of the keypad keys, the X server crashes. This is somewhat disconcerting... The kernel prints "sigreturn: eflags = 0x13282, was 0x256" (the old eflags value an addition I made to that printf whilst tracking down another problem). These values are consistent. The X server reports that it received SIGBUS and will core dump, but instead goes into a tight loop and needs kill -ABRT or kill -9 to recover. This happens whether or not I'm logged in, after I use xmodmap to unmap the relevant keycodes and when the screen is locked. ktrace on the Xserver shows the server reading a keycode from the keyboard, checking the mouse and getting EWOULDBLOCK then receiving a SIGBUS. Has anyone else seen anything like this? Peter To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Nov 29 19: 1:43 2001 Delivered-To: freebsd-current@freebsd.org Received: from winston.freebsd.org (adsl-64-173-15-98.dsl.sntc01.pacbell.net [64.173.15.98]) by hub.freebsd.org (Postfix) with ESMTP id 7E21437B405; Thu, 29 Nov 2001 19:01:39 -0800 (PST) Received: from winston.freebsd.org (jkh@localhost [127.0.0.1]) by winston.freebsd.org (8.11.6/8.11.6) with ESMTP id fAU30VP08746; Thu, 29 Nov 2001 19:00:33 -0800 (PST) (envelope-from jkh@winston.freebsd.org) To: Makoto Matsushita Cc: current@FreeBSD.org, jkh@FreeBSD.org Subject: Re: PATCH: sysinstall to remove userconfig code In-Reply-To: Message from Makoto Matsushita of "Wed, 14 Nov 2001 03:22:24 +0900." <20011114032224W.matusita@jp.FreeBSD.org> Date: Thu, 29 Nov 2001 19:00:31 -0800 Message-ID: <8743.1007089231@winston.freebsd.org> From: Jordan Hubbard Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Looks good to me, I'd say commit it! - Jordan > dsyphers> DEBUG: kget: error buffer sizing > matusita> This is because sysinstall still want to get userconfig data > matusita> and put the result to /boot/kernel.conf. > > Userconfig was gone in 5-current, so we can safely remove kget() from > sysinstall. Attached below is a patch to do (kget.c should be remove > also). > > Jordan (and others who may concern), would you please review my patch? > > -- - > Makoto `MAR' Matsushita > > Index: Makefile > =================================================================== > RCS file: /home/ncvs/src/usr.sbin/sysinstall/Makefile,v > retrieving revision 1.117 > diff -u -r1.117 Makefile > --- Makefile 2001/09/05 07:12:19 1.117 > +++ Makefile 2001/11/13 18:12:37 > @@ -2,7 +2,7 @@ > > PROG= sysinstall > MAN= sysinstall.8 > -SRCS= anonFTP.c cdrom.c command.c config.c devices.c dhcp.c kget.c \ > +SRCS= anonFTP.c cdrom.c command.c config.c devices.c dhcp.c \ > disks.c dispatch.c dist.c dmenu.c doc.c dos.c floppy.c \ > ftp.c globals.c http.c index.c install.c installUpgrade.c keymap.c \ > label.c main.c makedevs.c media.c menus.c misc.c modules.c \ > Index: install.c > =================================================================== > RCS file: /home/ncvs/src/usr.sbin/sysinstall/install.c,v > retrieving revision 1.309 > diff -u -r1.309 install.c > --- install.c 2001/10/20 09:28:53 1.309 > +++ install.c 2001/11/13 18:12:37 > @@ -755,14 +755,6 @@ > /* All of this is done only as init, just to be safe */ > if (RunningAsInit) { > #ifdef __i386__ > - /* Snapshot any boot -c changes back to the new kernel */ > - cp = variable_get(VAR_KGET); > - if (cp && (*cp == 'Y' || *cp == 'y')) { > - if ((kstat = kget("/boot/kernel.conf")) != NULL) { > - msgConfirm("Unable to save boot -c changes to new kernel,\n" > - "please see the debug screen (ALT-F2) for details.") ; > - } > - } > if ((fp = fopen("/boot/loader.conf", "a")) != NULL) { > if (!kstat || !OnVTY) > fprintf(fp, "# -- sysinstall generated deltas -- #\n"); > @@ -1054,7 +1046,6 @@ > /* Set default startup options */ > variable_set2(VAR_RELNAME, getRelname(), 0); > variable_set2(VAR_CPIO_VERBOSITY, "high", 0); > - variable_set2(VAR_KGET, "YES", 0); > variable_set2(VAR_TAPE_BLOCKSIZE, DEFAULT_TAPE_BLOCKSIZE, 0); > variable_set2(VAR_INSTALL_ROOT, "/", 0); > variable_set2(VAR_INSTALL_CFG, "install.cfg", 0); > Index: options.c > =================================================================== > RCS file: /home/ncvs/src/usr.sbin/sysinstall/options.c,v > retrieving revision 1.76 > diff -u -r1.76 options.c > --- options.c 2001/09/25 00:28:26 1.76 > +++ options.c 2001/11/13 18:12:37 > @@ -148,8 +148,6 @@ > OPT_IS_VAR, NEWFS_PROMPT, VAR_NEWFS_ARGS, varChec k }, > { "Fixit Console", "Which tty to use for the Fixit action.", > OPT_IS_FUNC, fixitTtyWhich, VAR_FIXIT_TTY, varChec k }, > -{ "Config save", "Whether or not to save installation kernel config chan ges", > - OPT_IS_VAR, NULL, VAR_KGET, varChec k }, > { "Re-scan Devices", "Re-run sysinstall's initial device probe", > OPT_IS_FUNC, deviceRescan }, > { "Use Defaults", "Reset all values to startup defaults", > Index: sysinstall.h > =================================================================== > RCS file: /home/ncvs/src/usr.sbin/sysinstall/sysinstall.h,v > retrieving revision 1.218 > diff -u -r1.218 sysinstall.h > --- sysinstall.h 2001/10/12 22:39:02 1.218 > +++ sysinstall.h 2001/11/13 18:12:38 > @@ -126,7 +126,6 @@ > #define VAR_IPV6_ENABLE "ipv6_enable" > #define VAR_IPV6ADDR "ipv6addr" > #define VAR_KEYMAP "keymap" > -#define VAR_KGET "kget" > #define VAR_LABEL "label" > #define VAR_LABEL_COUNT "labelCount" > #define VAR_LINUX_ENABLE "linux_enable" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Nov 29 21:19:25 2001 Delivered-To: freebsd-current@freebsd.org Received: from castle.jp.freebsd.org (castle.jp.FreeBSD.org [210.226.20.15]) by hub.freebsd.org (Postfix) with ESMTP id 872D037B417 for ; Thu, 29 Nov 2001 21:19:22 -0800 (PST) Received: from localhost (localhost [127.0.0.1]) by castle.jp.freebsd.org (8.9.3+3.2W/8.7.3) with ESMTP id OAA12191; Fri, 30 Nov 2001 14:19:16 +0900 (JST) (envelope-from matusita@jp.FreeBSD.org) Cc: current@FreeBSD.org In-Reply-To: <8743.1007089231@winston.freebsd.org> References: <8743.1007089231@winston.freebsd.org> X-User-Agent: Mew/1.94.2 XEmacs/21.5 (alfalfa) X-FaceAnim: (-O_O-)(O_O- )(_O- )(O- )(- -)( -O)( -O_)( -O_O)(-O_O-) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Dispatcher: imput version 20000228(IM140) Lines: 13 From: Makoto Matsushita To: jkh@winston.freebsd.org Subject: Re: PATCH: sysinstall to remove userconfig code Date: Fri, 30 Nov 2001 14:19:14 +0900 Message-Id: <20011130141914A.matusita@jp.FreeBSD.org> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jkh> Looks good to me, I'd say commit it! Thanks! I'll commit it in this weekend. BTW, how dou you think my other patch (use 'devfs' while mounting filesystems, use fsck_ffs instead of fsck) for sysinstall, which was posted about a week before to current@FreeBSD.org? You can fetch from: -- - Makoto `MAR' Matsushita To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Nov 29 23:39:53 2001 Delivered-To: freebsd-current@freebsd.org Received: from winston.freebsd.org (adsl-64-173-15-98.dsl.sntc01.pacbell.net [64.173.15.98]) by hub.freebsd.org (Postfix) with ESMTP id A0C3537B405 for ; Thu, 29 Nov 2001 23:39:51 -0800 (PST) Received: from winston.freebsd.org (jkh@localhost [127.0.0.1]) by winston.freebsd.org (8.11.6/8.11.6) with ESMTP id fAU7dhP09460; Thu, 29 Nov 2001 23:39:44 -0800 (PST) (envelope-from jkh@winston.freebsd.org) To: Makoto Matsushita Cc: current@FreeBSD.org Subject: Re: PATCH: sysinstall to remove userconfig code In-Reply-To: Message from Makoto Matsushita of "Fri, 30 Nov 2001 14:19:14 +0900." <20011130141914A.matusita@jp.FreeBSD.org> Date: Thu, 29 Nov 2001 23:39:43 -0800 Message-ID: <9456.1007105983@winston.freebsd.org> From: Jordan Hubbard Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > BTW, how dou you think my other patch (use 'devfs' while mounting > filesystems, use fsck_ffs instead of fsck) for sysinstall, which was > posted about a week before to current@FreeBSD.org? You can fetch from: > > Hmmm. To be honest, at least one part doesn't make too much sense to me. In the quoted section, where you move up the code for copying the initial /dev files from the mfsroot to the new on-disk root, you then proceed to mount a devfs instance right over it. Don't you want to try the devfs mount and only copy device files if that returns an error code? You're just going to do extra work and then cover it up otherwise. :-) + + 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; + } + + /* Mount devfs for other partitions to mount */ + Mkdir("/mnt/dev"); + if (!Fake) + mount("devfs", "/mnt/dev", 0, NULL); } To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Nov 29 23:44:57 2001 Delivered-To: freebsd-current@freebsd.org Received: from magnesium.net (toxic.magnesium.net [207.154.84.15]) by hub.freebsd.org (Postfix) with SMTP id 2877E37B419 for ; Thu, 29 Nov 2001 23:44:54 -0800 (PST) Received: (qmail 79464 invoked by uid 1165); 30 Nov 2001 07:44:53 -0000 Date: 29 Nov 2001 23:44:53 -0800 Date: Thu, 29 Nov 2001 23:44:53 -0800 From: Seth Kingsley To: freebsd-current@freebsd.org Subject: SoundBlaster PCI-128 performance Message-ID: <20011129234453.B61534@fluff.meowfishies.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="LyciRD1jyfeSSjG0" Content-Disposition: inline User-Agent: Mutt/1.2.5i X-Operating-System: FreeBSD 4.4-STABLE i386 X-GPG-Key-ID: 1024D/5C413B08 X-GPG-Key-Fingerprint: F772 5D24 02B4 D233 90F5 080F 0F50 3298 5C41 3B08 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --LyciRD1jyfeSSjG0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable I'm getting low volume, background noise, and slight distortion playing audio through my SoundBlaster PCI-128. I tested it using mpg123, mpg321, vlc, and ogle. I am running a recent -current: FreeBSD 5.0-CURRENT #2: Wed Nov 28 23:28:15 PST 2001 sethk@neko.home.meowfishies.com:/usr/src/sys/i386/compile/NEKO And the boot -v: pcm0: port 0xd800-0xd83f irq 5 at device 12.0 on pci0 pcm0: ac97 codec id 0x83847608 (SigmaTel STAC9708/9711) pcm0: ac97 codec features 18 bit DAC, 18 bit ADC, 5 bit master volume, SigmaTel 3D Enhancement pcm0: ac97 primary codec extended features surround DAC pcm: setmap 40c000, 1000; 0xc1258000 -> 40c000 pcm: setmap 3cf000, 1000; 0xc125b000 -> 3cf000 pcm-: pcm0 already exists, skipping it PnP OS is disabled in my BIOS. --=20 || Seth Kingsley || Meow Meow Fluff Fluff || sethk@meowfishies.com || || rndcontrol -s 0 || --LyciRD1jyfeSSjG0 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE8Bzj1D1AymFxBOwgRAqzUAJ9NIrMHIGvH8VfFrCpSfD/c/VF/ggCcD3Mx ESDeQiYYTuqSm/8Z06fSHdg= =BaaV -----END PGP SIGNATURE----- --LyciRD1jyfeSSjG0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Thu Nov 29 23:49: 1 2001 Delivered-To: freebsd-current@freebsd.org Received: from sax.sax.de (sax.sax.de [193.175.26.33]) by hub.freebsd.org (Postfix) with ESMTP id 23EB637B41A for ; Thu, 29 Nov 2001 23:48:58 -0800 (PST) Received: (from uucp@localhost) by sax.sax.de (8.9.3/8.9.3) with UUCP id IAA26627 for freebsd-current@freebsd.org; Fri, 30 Nov 2001 08:48:56 +0100 (CET) Received: (from j@localhost) by uriah.heep.sax.de (8.11.6/8.11.6) id fAU7m9P10384; Fri, 30 Nov 2001 08:48:09 +0100 (MET) (envelope-from j) Date: Fri, 30 Nov 2001 08:48:09 +0100 (MET) Message-Id: <200111300748.fAU7m9P10384@uriah.heep.sax.de> Mime-Version: 1.0 X-Newsreader: knews 1.0b.1 Reply-To: joerg_wunsch@uriah.heep.sax.de (Joerg Wunsch) Organization: Private BSD site, Dresden X-Phone: +49-351-2012 669 X-PGP-Fingerprint: DC 47 E6 E4 FF A6 E9 8F 93 21 E0 7D F9 12 D6 4E References: <200111252141.fAPLf1639599@trantor.xs4all.nl> <200111252256.fAPMubV20382@bunrab.catwhisker.org> <20011126000722.B280@nebula.noos.fr> <20011126222855.A14973@rtfm.net> <200111300046.fAU0kT653075@mikko.rsa.com> <20011130021335.A284@nebula.noos.fr> From: j@uriah.heep.sax.de (Joerg Wunsch) Subject: Re: df -l broken X-Original-Newsgroups: local.freebsd.current To: freebsd-current@freebsd.org Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Maxime Henrion wrote: > I looked at the code a bit more closely and you're entirely right. I > think I figured out why my patch caused a core dump. Here is a more > correct patch that should fix the problem without causing core dumps. Seems to work. mount(8) has still the problem though: uriah # mount -t local uriah # kldload nfs uriah # mount -t local uriah # mount -t nonfs /dev/da0a on / (ufs, local, soft-updates) devfs on /dev (devfs, local) /dev/vinum/var on /var (ufs, local, soft-updates) /dev/vinum/usr on /usr (ufs, local, soft-updates) /dev/vinum/home on /home (ufs, local, soft-updates) /dev/vinum/home_cvs on /home/cvs (ufs, NFS exported, local, soft-updates) /dev/vinum/src on /usr/src (ufs, local, soft-updates) /dev/vinum/othersrc on /usr/othersrc (ufs, local, soft-updates) /dev/vinum/obj on /usr/obj (ufs, local, soft-updates) /dev/vinum/ports on /usr/ports (ufs, local, soft-updates) /dev/vinum/distfiles on /usr/ports/distfiles (ufs, NFS exported, local, soft-updates) /dev/vinum/news on /var/spool/news (ufs, local, soft-updates) /dev/vinum/tmp on /tmp (ufs, NFS exported, local, soft-updates) /dev/vinum/release on /usr/release (ufs, NFS exported, local, soft-updates) /dev/vinum/junk on /junk (ufs, local, soft-updates) procfs on /proc (procfs, local, read-only) -- cheers, J"org .-.-. --... ...-- -.. . DL8DTL http://www.sax.de/~joerg/ NIC: JW11-RIPE Never trust an operating system you don't have sources for. ;-) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Nov 30 0:54:18 2001 Delivered-To: freebsd-current@freebsd.org Received: from alcatraz.iptelecom.net.ua (alcatraz.iptelecom.net.ua [212.9.224.15]) by hub.freebsd.org (Postfix) with ESMTP id C4CE137B41D for ; Fri, 30 Nov 2001 00:53:56 -0800 (PST) Received: from ipcard.iptcom.net (ipcard.iptcom.net [212.9.224.5]) by alcatraz.iptelecom.net.ua (8.9.3/8.9.3) with ESMTP id KAA25793; Fri, 30 Nov 2001 10:53:38 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Received: from vega.vega.com (h82.228.dialup.iptcom.net [212.9.228.82]) by ipcard.iptcom.net (8.9.3/8.9.3) with ESMTP id KAA27824; Fri, 30 Nov 2001 10:53:36 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vega.vega.com (8.11.6/8.11.3) with ESMTP id fAU8r4Y43985; Fri, 30 Nov 2001 10:53:04 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Message-ID: <3C07498B.DF6BE2B4@FreeBSD.org> Date: Fri, 30 Nov 2001 10:55:39 +0200 From: Maxim Sobolev Organization: Vega International Capital X-Mailer: Mozilla 4.79 [en] (Windows NT 5.0; U) X-Accept-Language: en,uk,ru MIME-Version: 1.0 To: Peter Jeremy Cc: freebsd-current@FreeBSD.org Subject: Re: XFree86 3.3.6 dying References: <20011130134104.A42555@gsmx07.alcatel.com.au> Content-Type: text/plain; charset=x-user-defined Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Peter Jeremy wrote: > > With a recently re-built XFree86, running on -current from last Sunday, > whenever I hit one of the keypad keys, the X server crashes. This is > somewhat disconcerting... > > The kernel prints "sigreturn: eflags = 0x13282, was 0x256" (the old > eflags value an addition I made to that printf whilst tracking down > another problem). These values are consistent. The X server reports > that it received SIGBUS and will core dump, but instead goes into a > tight loop and needs kill -ABRT or kill -9 to recover. This happens > whether or not I'm logged in, after I use xmodmap to unmap the > relevant keycodes and when the screen is locked. > > ktrace on the Xserver shows the server reading a keycode from the > keyboard, checking the mouse and getting EWOULDBLOCK then receiving > a SIGBUS. > > Has anyone else seen anything like this? Apply the following patch and rebuild/reinstall your kernel: http://www.freebsd.org/cgi/cvsweb.cgi/src/sys/i386/include/psl.h.diff?r1=1.10&r2=1.11 -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Nov 30 2:52:37 2001 Delivered-To: freebsd-current@freebsd.org Received: from web21106.mail.yahoo.com (web21106.mail.yahoo.com [216.136.227.108]) by hub.freebsd.org (Postfix) with SMTP id CD62637B416 for ; Fri, 30 Nov 2001 02:52:22 -0800 (PST) Message-ID: <20011130105222.52681.qmail@web21106.mail.yahoo.com> Received: from [62.254.0.4] by web21106.mail.yahoo.com via HTTP; Fri, 30 Nov 2001 02:52:22 PST Date: Fri, 30 Nov 2001 02:52:22 -0800 (PST) From: Hiten Pandya Subject: snd_pcm bringing its problems (sound.c) To: current@freebsd.org MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="0-506812671-1007117542=:52547" Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --0-506812671-1007117542=:52547 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline hello... greetings, everytime i used to play CDs, MP3 or any audio, it gives a lock order reversal notice... the following is my dmesg -a output... lock order reversal 1st 0xc65b6e80 pcm0 @ /data/dev/src/sys/modules/sound/pcm/../../../dev/sound/pcm/sound.c:132 2nd 0xc65b6d40 pcm0:play:0 @ /data/dev/src/sys/modules/sound/pcm/../../../dev/sound/pcm/sound.c:189 as i can play all the audio correctly without any problems... but its just that the lock order reversal should not be there.. i beleive.... i have a SoundBlast Live! card, which is supported by FreeBSD under the Emu10k1 driver... and two processors enabled as well as all the kernel debugging options... i am attaching my 'dmesg -a' output with this message.. help is appreciated... thanks.. Yours Sincerely, Hiten Pandya __________________________________________________ Do You Yahoo!? Yahoo! GeoCities - quick and easy web site hosting, just $8.95/month. http://geocities.yahoo.com/ps/info1 --0-506812671-1007117542=:52547 Content-Type: text/plain; name="dmesg-current.txt" Content-Description: dmesg-current.txt Content-Disposition: inline; filename="dmesg-current.txt" Copyright (c) 1992-2001 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD 5.0-CURRENT #8: Thu Nov 29 10:24:42 GMT 2001 hitenp@nautilus.org:/usr/obj/data/dev/src/sys/CURRENT5 Preloaded elf kernel "/boot/kernel/kernel" at 0xc041f000. Preloaded elf module "/boot/kernel/acpi.ko" at 0xc041f0a8. Preloaded elf module "/boot/kernel/linux.ko" at 0xc041f154. Preloaded elf module "/boot/kernel/snd_pcm.ko" at 0xc041f200. Preloaded elf module "/boot/kernel/snd_emu10k1.ko" at 0xc041f2ac. module linux already present! Timecounter "i8254" frequency 1193182 Hz CPU: Pentium III/Pentium III Xeon/Celeron (730.81-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x683 Stepping = 3 Features=0x387fbff real memory = 536870912 (524288K bytes) avail memory = 516411392 (504308K bytes) Programming 24 pins in IOAPIC #0 IOAPIC #0 intpin 2 -> irq 0 FreeBSD/SMP: Multiprocessor System Detected: 2 CPUs cpu0 (BSP): apic id: 0, version: 0x00040011, at 0xfee00000 cpu1 (AP): apic id: 1, version: 0x00040011, at 0xfee00000 io0 (APIC): apic id: 2, version: 0x00170011, at 0xfec00000 Pentium Pro MTRR support enabled VESA: v3.0, 32768k memory, flags:0x1, mode table:0xc0332182 (1000022) VESA: NVidia Using $PIR table, 8 entries at 0xc00f7100 ACPI-0161: *** Error: AcpiLoadTables: Could not get RSDP, AE_NO_ACPI_TABLES ACPI-0213: *** Error: AcpiLoadTables: Could not load tables: AE_NO_ACPI_TABLES ACPI: table load failed: AE_NO_ACPI_TABLES npx0: on motherboard npx0: INT 16 interface pcib0: at pcibus 0 on motherboard pci0: on pcib0 pcib1: at device 1.0 on pci0 pci1: on pcib1 pci1: at device 0.0 (no driver attached) isab0: at device 7.0 on pci0 isa0: on isab0 atapci0: port 0xffa0-0xffaf at device 7.1 on pci0 ata0: at 0x1f0 irq 14 on atapci0 ata1: at 0x170 irq 15 on atapci0 pci0: at device 7.2 (no driver attached) pci0: at device 7.3 (no driver attached) pci0: at device 7.4 (no driver attached) fxp0: port 0xd000-0xd03f mem 0xdfe00000-0xdfefffff,0xdffef000-0xdffeffff irq 9 at device 9.0 on pci0 fxp0: Ethernet address 00:06:29:af:90:cf inphy0: on miibus0 inphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto pcm0: port 0xd400-0xd41f irq 10 at device 11.0 on pci0 pci0: at device 12.0 (no driver attached) ata-: ata0 already exists, skipping it ata-: ata1 already exists, skipping it sc-: sc0 already exists, skipping it vga-: vga0 already exists, skipping it atkbdc0: at port 0x60,0x64 on isa0 atkbd0: flags 0x1 irq 1 on atkbdc0 kbd0 at atkbd0 psm0: irq 12 on atkbdc0 psm0: model IntelliMouse, device ID 3 fdc0: at port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on isa0 fdc0: FIFO enabled, 8 bytes threshold fd0: <1440-KB 3.5" drive> on fdc0 drive 0 pmtimer0 on isa0 ppc0: at port 0x378-0x37f irq 7 on isa0 ppc0: SMC-like chipset (ECP/EPP/PS2/NIBBLE) in COMPATIBLE mode ppc0: FIFO with 16/16/8 bytes threshold plip0: on ppbus0 lpt0: on ppbus0 lpt0: Interrupt-driven port ppi0: on ppbus0 sc0: at flags 0x100 on isa0 sc0: VGA <16 virtual consoles, flags=0x300> sio0 at port 0x3f8-0x3ff irq 4 flags 0x10 on isa0 sio0: type 16550A sio1 at port 0x2f8-0x2ff irq 3 on isa0 sio1: type 16550A vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 APIC_IO: Testing 8254 interrupt delivery APIC_IO: routing 8254 via IOAPIC #0 intpin 2 Profiling kernel, textsize=1475936 [c0123590..c028baf0] cputime 6172, empty_loop 9, nullfunc_loop_profiled 6230, mcount 6172, mexitcount 6171 Profiling overheads: mcount: 6161+0, 6226+-65; mexitcount: 6161+0, 6167+-6 nsec Profiling overheads: mcount: 941+0, 951+-10; mexitcount: 941+0, 942+-1 cycles ad0: 28629MB [58168/16/63] at ata0-master UDMA66 acd0: DVD-ROM at ata0-slave PIO4 acd1: CD-RW at ata1-slave PIO4 Mounting root from ufs:/dev/ad0s2a SMP: AP CPU #1 Launched! swapon: adding /dev/ad0s2b as swap device Automatic boot in progress... /dev/ad0s2a: FILESYSTEM CLEAN; SKIPPING CHECKS /dev/ad0s2a: clean, 30299 free (939 frags, 3670 blocks, 0.9% fragmentation) /dev/ad0s3f: FILESYSTEM CLEAN; SKIPPING CHECKS /dev/ad0s3f: clean, 583619 free (17675 frags, 70743 blocks, 1.6% fragmentation) /dev/ad0s3e: FILESYSTEM CLEAN; SKIPPING CHECKS /dev/ad0s3e: clean, 564659 free (23835 frags, 67603 blocks, 2.4% fragmentation) /dev/ad0s2f: FILESYSTEM CLEAN; SKIPPING CHECKS /dev/ad0s2f: clean, 177313 free (12473 frags, 20605 blocks, 1.6% fragmentation) /dev/ad0s2e: FILESYSTEM CLEAN; SKIPPING CHECKS /dev/ad0s2e: clean, 94626 free (90 frags, 11817 blocks, 0.1% fragmentation) Doing initial network setup: hostname . fxp0: flags=8843 mtu 1500 inet6 fe80::206:29ff:feaf:90cf%fxp0 prefixlen 64 tentative scopeid 0x1 inet 80.4.34.175 netmask 0xffffff00 broadcast 255.255.255.255 ether 00:06:29:af:90:cf media: Ethernet autoselect (10baseT/UTP) status: active lo0: flags=8049 mtu 16384 inet6 ::1 prefixlen 128 inet6 fe80::1%lo0 prefixlen 64 scopeid 0x3 inet 127.0.0.1 netmask 0xff000000 Additional routing options: TCP keepalive=YES . Routing daemons: routed . routed: Send bcast sendto(fxp0, 255.255.255.255.520): Network is unreachable Additional daemons: syslogd . Doing additional network setup: . Starting final network daemons: . ELF ldconfig path: /usr/lib /usr/lib/compat /usr/X11R6/lib /usr/local/lib a.out ldconfig path: /usr/lib/aout /usr/lib/compat/aout /usr/X11R6/lib/aout /usr/local/lib/aout Starting standard daemons: inetd cron sshd sendmail . Initial rc.i386 initialization: . Configuring syscons: keymap blank_time screensaver . Additional ABI support: linux /compat/linux/sbin/ldconfig: warning: can't lstat /usr/X11R6/lib/libXm.so.2 (No such file or directory), skipping /compat/linux/sbin/ldconfig: warning: can't lstat /usr/X11R6/lib/libUil.so.2 (No such file or directory), skipping /compat/linux/sbin/ldconfig: warning: can't lstat /usr/X11R6/lib/libMrm.so.2 (No such file or directory), skipping . Starting local daemons: Starting Webmin server in /biz/local/webmin-0.90 . Local package initialization: apache FAILED: updating hpdi.ath.cx: nohost: The hostname specified does not exist in the database . Additional TCP options: . Fri Nov 30 09:52:17 GMT 2001 Nov 30 09:53:30 hpdi su: hitenp to root on /dev/ttyp1 Nov 30 09:56:41 hpdi su: hitenp to root on /dev/ttyv0 lock order reversal 1st 0xc65b6e80 pcm0 @ /data/dev/src/sys/modules/sound/pcm/../../../dev/sound/pcm/sound.c:132 2nd 0xc65b6d40 pcm0:play:0 @ /data/dev/src/sys/modules/sound/pcm/../../../dev/sound/pcm/sound.c:189 Nov 30 10:01:42 hpdi su: hitenp to root on /dev/ttyp1 Copyright (c) 1992-2001 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD 5.0-CURRENT #8: Thu Nov 29 10:24:42 GMT 2001 hitenp@nautilus.org:/usr/obj/data/dev/src/sys/CURRENT5 Preloaded elf kernel "/boot/kernel/kernel" at 0xc041f000. Preloaded elf module "/boot/kernel/acpi.ko" at 0xc041f0a8. Preloaded elf module "/boot/kernel/linux.ko" at 0xc041f154. Preloaded elf module "/boot/kernel/snd_pcm.ko" at 0xc041f200. Preloaded elf module "/boot/kernel/snd_emu10k1.ko" at 0xc041f2ac. module linux already present! Timecounter "i8254" frequency 1193182 Hz CPU: Pentium III/Pentium III Xeon/Celeron (730.81-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x683 Stepping = 3 Features=0x387fbff real memory = 536870912 (524288K bytes) avail memory = 516411392 (504308K bytes) Programming 24 pins in IOAPIC #0 IOAPIC #0 intpin 2 -> irq 0 FreeBSD/SMP: Multiprocessor System Detected: 2 CPUs cpu0 (BSP): apic id: 0, version: 0x00040011, at 0xfee00000 cpu1 (AP): apic id: 1, version: 0x00040011, at 0xfee00000 io0 (APIC): apic id: 2, version: 0x00170011, at 0xfec00000 Pentium Pro MTRR support enabled VESA: v3.0, 32768k memory, flags:0x1, mode table:0xc0332182 (1000022) VESA: NVidia Using $PIR table, 8 entries at 0xc00f7100 ACPI-0161: *** Error: AcpiLoadTables: Could not get RSDP, AE_NO_ACPI_TABLES ACPI-0213: *** Error: AcpiLoadTables: Could not load tables: AE_NO_ACPI_TABLES ACPI: table load failed: AE_NO_ACPI_TABLES npx0: on motherboard npx0: INT 16 interface pcib0: at pcibus 0 on motherboard pci0: on pcib0 pcib1: at device 1.0 on pci0 pci1: on pcib1 pci1: at device 0.0 (no driver attached) isab0: at device 7.0 on pci0 isa0: on isab0 atapci0: port 0xffa0-0xffaf at device 7.1 on pci0 ata0: at 0x1f0 irq 14 on atapci0 ata1: at 0x170 irq 15 on atapci0 pci0: at device 7.2 (no driver attached) pci0: at device 7.3 (no driver attached) pci0: at device 7.4 (no driver attached) fxp0: port 0xd000-0xd03f mem 0xdfe00000-0xdfefffff,0xdffef000-0xdffeffff irq 9 at device 9.0 on pci0 fxp0: Ethernet address 00:06:29:af:90:cf inphy0: on miibus0 inphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto pcm0: port 0xd400-0xd41f irq 10 at device 11.0 on pci0 pci0: at device 12.0 (no driver attached) ata-: ata0 already exists, skipping it ata-: ata1 already exists, skipping it sc-: sc0 already exists, skipping it vga-: vga0 already exists, skipping it atkbdc0: at port 0x60,0x64 on isa0 atkbd0: flags 0x1 irq 1 on atkbdc0 kbd0 at atkbd0 psm0: irq 12 on atkbdc0 psm0: model IntelliMouse, device ID 3 fdc0: at port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on isa0 fdc0: FIFO enabled, 8 bytes threshold fd0: <1440-KB 3.5" drive> on fdc0 drive 0 pmtimer0 on isa0 ppc0: at port 0x378-0x37f irq 7 on isa0 ppc0: SMC-like chipset (ECP/EPP/PS2/NIBBLE) in COMPATIBLE mode ppc0: FIFO with 16/16/8 bytes threshold plip0: on ppbus0 lpt0: on ppbus0 lpt0: Interrupt-driven port ppi0: on ppbus0 sc0: at flags 0x100 on isa0 sc0: VGA <16 virtual consoles, flags=0x300> sio0 at port 0x3f8-0x3ff irq 4 flags 0x10 on isa0 sio0: type 16550A sio1 at port 0x2f8-0x2ff irq 3 on isa0 sio1: type 16550A vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 APIC_IO: Testing 8254 interrupt delivery APIC_IO: routing 8254 via IOAPIC #0 intpin 2 Profiling kernel, textsize=1475936 [c0123590..c028baf0] cputime 6172, empty_loop 9, nullfunc_loop_profiled 6230, mcount 6172, mexitcount 6171 Profiling overheads: mcount: 6161+0, 6226+-65; mexitcount: 6161+0, 6167+-6 nsec Profiling overheads: mcount: 941+0, 951+-10; mexitcount: 941+0, 942+-1 cycles ad0: 28629MB [58168/16/63] at ata0-master UDMA66 acd0: DVD-ROM at ata0-slave PIO4 acd1: CD-RW at ata1-slave PIO4 Mounting root from ufs:/dev/ad0s2a SMP: AP CPU #1 Launched! swapon: adding /dev/ad0s2b as swap device Automatic boot in progress... /dev/ad0s2a: FILESYSTEM CLEAN; SKIPPING CHECKS /dev/ad0s2a: clean, 30299 free (939 frags, 3670 blocks, 0.9% fragmentation) /dev/ad0s3f: FILESYSTEM CLEAN; SKIPPING CHECKS /dev/ad0s3f: clean, 583619 free (17675 frags, 70743 blocks, 1.6% fragmentation) /dev/ad0s3e: FILESYSTEM CLEAN; SKIPPING CHECKS /dev/ad0s3e: clean, 564659 free (23835 frags, 67603 blocks, 2.4% fragmentation) /dev/ad0s2f: FILESYSTEM CLEAN; SKIPPING CHECKS /dev/ad0s2f: clean, 177313 free (12473 frags, 20605 blocks, 1.6% fragmentation) /dev/ad0s2e: FILESYSTEM CLEAN; SKIPPING CHECKS /dev/ad0s2e: clean, 94626 free (90 frags, 11817 blocks, 0.1% fragmentation) Doing initial network setup: hostname . fxp0: flags=8843 mtu 1500 inet6 fe80::206:29ff:feaf:90cf%fxp0 prefixlen 64 tentative scopeid 0x1 inet 80.4.34.175 netmask 0xffffff00 broadcast 255.255.255.255 ether 00:06:29:af:90:cf media: Ethernet autoselect (10baseT/UTP) status: active lo0: flags=8049 mtu 16384 inet6 ::1 prefixlen 128 inet6 fe80::1%lo0 prefixlen 64 scopeid 0x3 inet 127.0.0.1 netmask 0xff000000 Additional routing options: TCP keepalive=YES . Routing daemons: routed . routed: Send bcast sendto(fxp0, 255.255.255.255.520): Network is unreachable Additional daemons: syslogd . Doing additional network setup: . Starting final network daemons: . ELF ldconfig path: /usr/lib /usr/lib/compat /usr/X11R6/lib /usr/local/lib a.out ldconfig path: /usr/lib/aout /usr/lib/compat/aout /usr/X11R6/lib/aout /usr/local/lib/aout Starting standard daemons: inetd cron sshd sendmail . Initial rc.i386 initialization: . Configuring syscons: keymap blank_time screensaver . Additional ABI support: linux /compat/linux/sbin/ldconfig: warning: can't lstat /usr/X11R6/lib/libXm.so.2 (No such file or directory), skipping /compat/linux/sbin/ldconfig: warning: can't lstat /usr/X11R6/lib/libUil.so.2 (No such file or directory), skipping /compat/linux/sbin/ldconfig: warning: can't lstat /usr/X11R6/lib/libMrm.so.2 (No such file or directory), skipping . Starting local daemons: Starting Webmin server in /biz/local/webmin-0.90 . Local package initialization: apache FAILED: updating hpdi.ath.cx: nohost: The hostname specified does not exist in the database . Additional TCP options: . Fri Nov 30 09:52:17 GMT 2001 Nov 30 09:53:30 hpdi su: hitenp to root on /dev/ttyp1 Nov 30 09:56:41 hpdi su: hitenp to root on /dev/ttyv0 lock order reversal 1st 0xc65b6e80 pcm0 @ /data/dev/src/sys/modules/sound/pcm/../../../dev/sound/pcm/sound.c:132 2nd 0xc65b6d40 pcm0:play:0 @ /data/dev/src/sys/modules/sound/pcm/../../../dev/sound/pcm/sound.c:189 Nov 30 10:01:42 hpdi su: hitenp to root on /dev/ttyp1 --0-506812671-1007117542=:52547-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Nov 30 4:23:26 2001 Delivered-To: freebsd-current@freebsd.org Received: from axl.seasidesoftware.co.za (axl.seasidesoftware.co.za [196.31.7.201]) by hub.freebsd.org (Postfix) with ESMTP id 4002C37B417 for ; Fri, 30 Nov 2001 04:23:21 -0800 (PST) Received: from sheldonh (helo=axl.seasidesoftware.co.za) by axl.seasidesoftware.co.za with local-esmtp (Exim 3.33 #1) id 169mib-0001jt-00; Fri, 30 Nov 2001 14:24:37 +0200 From: Sheldon Hearn To: jstocker@tzi.de Cc: "freebsd-current@FreeBSD. ORG" Subject: Re: ntfs fs In-reply-to: Your message of "Thu, 29 Nov 2001 20:03:55 +0100." <000301c17908$97f50100$fe02010a@twoflower.liebende.de> Date: Fri, 30 Nov 2001 14:24:37 +0200 Message-ID: <6688.1007123077@axl.seasidesoftware.co.za> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, 29 Nov 2001 20:03:55 +0100, Jan Stocker wrote: | after a 'ls -l' on a ntfs mounted partition my system freezes and reboots. A | normal 'ls' really runs quite fine... Weird, I get a panic, not an uninformative reboot. I didn't do anything about it, since I don't know who looks after ntfs and didn't have time to look at the backtrace. :-( Ciao, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Nov 30 5:35:37 2001 Delivered-To: freebsd-current@freebsd.org Received: from vaio.aviaport.ru (vaio.aviaport.ru [217.69.199.242]) by hub.freebsd.org (Postfix) with ESMTP id 12D6137B41B for ; Fri, 30 Nov 2001 05:35:32 -0800 (PST) Received: by vaio.aviaport.ru (Postfix, from userid 1001) id D15C2E2C22; Fri, 30 Nov 2001 16:26:27 +0300 (MSK) Date: Fri, 30 Nov 2001 16:26:27 +0300 From: Juriy Goloveshkin To: freebsd-current@freebsd.org Subject: strange things with Mouse Support and Copy-and-Past Message-ID: <20011130132627.GA5043@aviaport.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.3.23.2i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I often use mouse for copy-and-past operations in text consoles. but I see that fresh CURRENT has someshing strange. next string is pasted from buffer: nextstringispastedfrombuffer: I think something is broken or changed. Is there a way to have Copy-and-Past back? what's wrong? -- bye Juriy Goloveshkin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Nov 30 6:12:53 2001 Delivered-To: freebsd-current@freebsd.org Received: from mailhub.yumyumyum.org (dsl092-171-091.wdc1.dsl.speakeasy.net [66.92.171.91]) by hub.freebsd.org (Postfix) with SMTP id D270937B41A for ; Fri, 30 Nov 2001 06:12:47 -0800 (PST) Received: (qmail 13289 invoked from network); 30 Nov 2001 14:11:45 -0000 Received: from ken.yumyumyum.org (HELO there) (192.168.0.2) by dsl092-171-091.wdc1.dsl.speakeasy.net with SMTP; 30 Nov 2001 14:11:45 -0000 Content-Type: text/plain; charset="iso-8859-1" From: Kenneth Culver Reply-To: culverk@wam.umd.edu To: Seth Kingsley Subject: Re: SoundBlaster PCI-128 performance Date: Fri, 30 Nov 2001 09:12:52 -0500 X-Mailer: KMail [version 1.3.1] References: <20011129234453.B61534@fluff.meowfishies.com> In-Reply-To: <20011129234453.B61534@fluff.meowfishies.com> Cc: freebsd-current@freebsd.org MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-Id: <20011130141247.D270937B41A@hub.freebsd.org> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Friday 30 November 2001 02:44 am, you wrote: Have you tried different speakers? Also have you tried moving the soundcard to a different slot? maybe some other card is causing interferance. I have a card that uses the same driver and havn't had a problem. Ken > I'm getting low volume, background noise, and slight distortion playing > audio through my SoundBlaster PCI-128. I tested it using mpg123, > mpg321, vlc, and ogle. I am running a recent -current: > > FreeBSD 5.0-CURRENT #2: Wed Nov 28 23:28:15 PST 2001 > sethk@neko.home.meowfishies.com:/usr/src/sys/i386/compile/NEKO > > And the boot -v: > > pcm0: port 0xd800-0xd83f irq 5 at device 12.0 on > pci0 > pcm0: ac97 codec id 0x83847608 (SigmaTel STAC9708/9711) > pcm0: ac97 codec features 18 bit DAC, 18 bit ADC, 5 bit master volume, > SigmaTel 3D Enhancement > pcm0: ac97 primary codec extended features surround DAC > pcm: setmap 40c000, 1000; 0xc1258000 -> 40c000 > pcm: setmap 3cf000, 1000; 0xc125b000 -> 3cf000 > pcm-: pcm0 already exists, skipping it > > PnP OS is disabled in my BIOS. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Nov 30 7:55:37 2001 Delivered-To: freebsd-current@freebsd.org Received: from noos.fr (r178m112.cybercable.tm.fr [195.132.178.112]) by hub.freebsd.org (Postfix) with ESMTP id 65FC337B405 for ; Fri, 30 Nov 2001 07:55:32 -0800 (PST) Received: (from mux@localhost) by noos.fr (8.11.6/8.11.4) id fAUFtUi12309; Fri, 30 Nov 2001 16:55:30 +0100 (CET) (envelope-from mux) Date: Fri, 30 Nov 2001 16:55:30 +0100 From: Maxime Henrion To: current@FreeBSD.org Cc: Joerg Wunsch Subject: Re: df -l broken Message-ID: <20011130165530.A9979@nebula.noos.fr> References: <200111252141.fAPLf1639599@trantor.xs4all.nl> <200111252256.fAPMubV20382@bunrab.catwhisker.org> <20011126000722.B280@nebula.noos.fr> <20011126222855.A14973@rtfm.net> <200111300046.fAU0kT653075@mikko.rsa.com> <20011130021335.A284@nebula.noos.fr> <200111300748.fAU7m9P10384@uriah.heep.sax.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200111300748.fAU7m9P10384@uriah.heep.sax.de> User-Agent: Mutt/1.3.23i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Joerg Wunsch wrote: > Maxime Henrion wrote: > > > I looked at the code a bit more closely and you're entirely right. I > > think I figured out why my patch caused a core dump. Here is a more > > correct patch that should fix the problem without causing core dumps. > > Seems to work. mount(8) has still the problem though: Great, I'll file a PR for it. Thanks for the feedback ! > uriah # mount -t local > uriah # kldload nfs > uriah # mount -t local > uriah # mount -t nonfs > /dev/da0a on / (ufs, local, soft-updates) > devfs on /dev (devfs, local) > /dev/vinum/var on /var (ufs, local, soft-updates) > /dev/vinum/usr on /usr (ufs, local, soft-updates) > /dev/vinum/home on /home (ufs, local, soft-updates) > /dev/vinum/home_cvs on /home/cvs (ufs, NFS exported, local, soft-updates) > /dev/vinum/src on /usr/src (ufs, local, soft-updates) > /dev/vinum/othersrc on /usr/othersrc (ufs, local, soft-updates) > /dev/vinum/obj on /usr/obj (ufs, local, soft-updates) > /dev/vinum/ports on /usr/ports (ufs, local, soft-updates) > /dev/vinum/distfiles on /usr/ports/distfiles (ufs, NFS exported, local, soft-updates) > /dev/vinum/news on /var/spool/news (ufs, local, soft-updates) > /dev/vinum/tmp on /tmp (ufs, NFS exported, local, soft-updates) > /dev/vinum/release on /usr/release (ufs, NFS exported, local, soft-updates) > /dev/vinum/junk on /junk (ufs, local, soft-updates) > procfs on /proc (procfs, local, read-only) I fail to see why should ``mount -t local'' work. I don't see anything related in the mount(8) manpage. To my knowledge, -t is only used when specifying a particular fs type (nfs, msdosfs, ...) optionally prepended with a ``no''. If you point me to the relevant documentation, I'll be happy to fix this bug too. Thanks, Maxime Henrion -- Don't be fooled by cheap finnish imitations ; BSD is the One True Code To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Nov 30 8:39:11 2001 Delivered-To: freebsd-current@freebsd.org Received: from mailout03.sul.t-online.de (mailout03.sul.t-online.com [194.25.134.81]) by hub.freebsd.org (Postfix) with ESMTP id 908B037B405 for ; Fri, 30 Nov 2001 08:39:07 -0800 (PST) Received: from fwd04.sul.t-online.de by mailout03.sul.t-online.de with smtp id 169qgq-00082d-03; Fri, 30 Nov 2001 17:39:04 +0100 Received: from twoflower (320072111332-0001@[217.80.121.137]) by fwd04.sul.t-online.com with smtp id 169qge-0uBTYeC; Fri, 30 Nov 2001 17:38:52 +0100 From: Jan.Stocker@t-online.de (Jan Stocker) To: "Steve Kargl" Cc: "freebsd-current@FreeBSD. ORG" Subject: RE: ntfs fs Date: Fri, 30 Nov 2001 17:38:01 +0100 Message-ID: <000401c179bd$602371c0$fe02010a@twoflower.liebende.de> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook 8.5, Build 4.71.2173.0 Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V4.72.2106.4 In-Reply-To: <20011129111808.A4902@troutmask.apl.washington.edu> X-Sender: 320072111332-0001@t-dialin.net Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Okay, i'll send you a callstack if i am at work again (have now a week holiday). The current kernel wasnt compiled with debug info... Jan > -----Original Message----- > From: owner-freebsd-current@FreeBSD.ORG > [mailto:owner-freebsd-current@FreeBSD.ORG]On Behalf Of Steve Kargl > Sent: Thursday, November 29, 2001 8:18 PM > To: jstocker@tzi.de > Cc: freebsd-current@FreeBSD. ORG > Subject: Re: ntfs fs > > > On Thu, Nov 29, 2001 at 08:03:55PM +0100, Jan Stocker wrote: > > Hi, > > after a 'ls -l' on a ntfs mounted partition my system freezes > and reboots. A > > normal 'ls' really runs quite fine... > > > > Jan, > > This message contains very little useful information. See > > http://www.freebsd.org/doc/en_US.ISO8859-1/books/developers-handbo ok/kerneldebug.html -- Steve To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Nov 30 9: 2:54 2001 Delivered-To: freebsd-current@freebsd.org Received: from draco.macsch.com (draco.macsch.com [192.73.8.1]) by hub.freebsd.org (Postfix) with ESMTP id A604837B417 for ; Fri, 30 Nov 2001 09:02:52 -0800 (PST) Received: from mailmuc.muc.eu.mscsoftware.com (mailmuc.muc.macsch.com [161.34.37.20]) by draco.macsch.com (8.9.3/8.9.3) with ESMTP id IAA26727 for ; Fri, 30 Nov 2001 08:58:28 -0800 (PST) Received: from hunter.muc.macsch.com (hunter.muc.macsch.com [172.17.22.32]) by mailmuc.muc.eu.mscsoftware.com (8.11.2/8.11.2/SuSE Linux 8.11.1-0.5) with ESMTP id fAUH2f306235; Fri, 30 Nov 2001 18:02:41 +0100 Received: from hunter.muc.macsch.com (localhost.muc.macsch.com [127.0.0.1]) by hunter.muc.macsch.com (8.11.6/8.11.6) with ESMTP id fAUH18E05463; Fri, 30 Nov 2001 18:01:09 +0100 (CET) (envelope-from Georg.Koltermann@mscsoftware.com) Date: Fri, 30 Nov 2001 18:01:08 +0100 Message-ID: From: "Georg-W. Koltermann" To: current@freebsd.org Subject: What happened to current.freebsd.org again? User-Agent: Wanderlust/2.4.1 (Stand By Me) SEMI/1.13.7 (Awazu) FLIM/1.13.2 (Kasanui) Emacs/20.7 (i386--freebsd) MULE/4.0 (HANANOEN) Organization: MSC Software X-Attribution: gwk MIME-Version: 1.0 (generated by SEMI 1.13.7 - "Awazu") Content-Type: text/plain; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello, since some time again I can't get to ftp://current.freebsd.org to download current snapshots and packages. Is the machine broken again? -- Regards, Georg. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Nov 30 9: 6:41 2001 Delivered-To: freebsd-current@freebsd.org Received: from sushi.sanyusan.se (h19n2fls34o835.telia.com [213.67.31.19]) by hub.freebsd.org (Postfix) with ESMTP id AF66D37B416 for ; Fri, 30 Nov 2001 09:06:38 -0800 (PST) Received: by sushi.sanyusan.se (Postfix, from userid 1000) id 41D562A6A81; Fri, 30 Nov 2001 18:06:26 +0100 (CET) Date: Fri, 30 Nov 2001 18:06:26 +0100 From: Anders Andersson To: "Georg-W. Koltermann" Cc: current@freebsd.org Subject: Re: What happened to current.freebsd.org again? Message-ID: <20011130170626.GH96947@sushi.sanyusan.se> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.3.23.2i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Fri, Nov 30, 2001 at 06:01:08PM +0100, Georg-W. Koltermann wrote: > Hello, > > since some time again I can't get to ftp://current.freebsd.org to > download current snapshots and packages. Is the machine broken again? In the meantime you could use ftp://snapshots.jp.freebsd.org/ -- Anders Andersson UNIX, Networking and Security consultant (+46) 705 87 53 35 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Nov 30 11:52: 2 2001 Delivered-To: freebsd-current@freebsd.org Received: from sax.sax.de (sax.sax.de [193.175.26.33]) by hub.freebsd.org (Postfix) with ESMTP id 9973D37B41D for ; Fri, 30 Nov 2001 11:51:02 -0800 (PST) Received: (from uucp@localhost) by sax.sax.de (8.9.3/8.9.3) with UUCP id UAA06071; Fri, 30 Nov 2001 20:51:00 +0100 (CET) Received: (from j@localhost) by uriah.heep.sax.de (8.11.6/8.11.6) id fAUJoJD22355; Fri, 30 Nov 2001 20:50:19 +0100 (MET) (envelope-from j) Date: Fri, 30 Nov 2001 20:50:19 +0100 From: Joerg Wunsch To: Maxime Henrion Cc: current@FreeBSD.org Subject: Re: df -l broken Message-ID: <20011130205019.C849@uriah.heep.sax.de> Reply-To: Joerg Wunsch References: <200111252141.fAPLf1639599@trantor.xs4all.nl> <200111252256.fAPMubV20382@bunrab.catwhisker.org> <20011126000722.B280@nebula.noos.fr> <20011126222855.A14973@rtfm.net> <200111300046.fAU0kT653075@mikko.rsa.com> <20011130021335.A284@nebula.noos.fr> <200111300748.fAU7m9P10384@uriah.heep.sax.de> <20011130165530.A9979@nebula.noos.fr> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20011130165530.A9979@nebula.noos.fr>; from mux@qualys.com on Fri, Nov 30, 2001 at 04:55:30PM +0100 X-Phone: +49-351-2012 669 X-PGP-Fingerprint: DC 47 E6 E4 FF A6 E9 8F 93 21 E0 7D F9 12 D6 4E Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG As Maxime Henrion wrote: > > Seems to work. mount(8) has still the problem though: > > Great, I'll file a PR for it. Thanks for the feedback ! I can commit it if you want. > I fail to see why should ``mount -t local'' work. ISTR that it used to work, at least in the context of "mount -a -t local". I can't seem to find any old system to verify this claim, however. So maybe it's merely wishful thinking instead of something that has actually once been there... -- cheers, J"org .-.-. --... ...-- -.. . DL8DTL http://www.sax.de/~joerg/ NIC: JW11-RIPE Never trust an operating system you don't have sources for. ;-) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Nov 30 13:57:36 2001 Delivered-To: freebsd-current@freebsd.org Received: from mx2.magma.ca (mx2.magma.ca [206.191.0.250]) by hub.freebsd.org (Postfix) with ESMTP id 4AF3F37B417; Fri, 30 Nov 2001 13:57:22 -0800 (PST) Received: from mail5.magma.ca (mail5.magma.ca [206.191.0.225]) by mx2.magma.ca (Magma's Mail Server) with ESMTP id fAULvMd2015435; Fri, 30 Nov 2001 16:57:22 -0500 (EST) Received: from durandal (mothership.macadamian.com [206.191.21.204]) by mail5.magma.ca (Magma's Mail Server) with SMTP id fAULvKTM024843; Fri, 30 Nov 2001 16:57:20 -0500 (EST) Message-ID: <094601c179ea$7cca85c0$2964a8c0@MACADAMIAN.com> From: "Louis-Philippe Gagnon" To: , Subject: Possible libc_r pthread bug Date: Fri, 30 Nov 2001 17:00:56 -0500 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4133.2400 X-Mimeole: Produced By Microsoft MimeOLE V5.50.4133.2400 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG If at first you don't succeed... I've encountered a problem using pthread_cancel, pthread_join and pthread_setcanceltype, I'm hoping someone can shed some light. (in a nutshell : pthread_setcanceltype doesn't seem to work in FreeBSD 4.4) (posted to -current and -hackers; if there's a more appropriate mailing list for this, please let me know) I recently encountered a situation where, after calling pthread_cancel to cancel a thread, the call to pthread_join hangs indefinitely. I quickly figured out that it was because the thread being cancelled was never reaching a cancellation point (in fact it was an infinite loop with no function calls at all). Sure enough, adding a pthread_testcancel() in the loop allowed pthread_join to return. However this solution isn't acceptable for my requirements. I discovered the pthread_setcanceltype function and its PTHREAD_CANCEL_ASYNCHRONOUS parameter, which looked like they would give me exactly what I needed : allow threads to be cancelled regardless of what they are doing (basically a pthread equivalent to TerminateThread). Unfortunately, my tests have been less than conclusive : pthread_setcanceltype doesn't seem to do anything at all. It tells me it succeeds, subsequent calls properly report the previous cancellation type as ASYNCHRONOUS. But pthread_join still hangs, and adding pthread_testcancel calls still makes it work... I'm working on a FreeBSD 4.4-release machine; I ran the same test under FreeBSD 4.3-release and got the same results. However, running it on a Linux box (Mandrake release, 2.4.x kernel), I get exactly the results I was expecting (that is, setting the cancellation type to asynchronous allows the thread to be cancelled at any time) see the end of this message for my test program So the questions are -am I doing something wrong or misinterpreting the man pages? -if not, is this a known bug? -if so, is there a workaround (or is it already fixed)? -if not, can someone investigate? (I once had a look at the libc_r code and ran away screaming) If this turns out to be a bug in libc_r, a suggestion for a work-around (even a hack) would be much appreciated, even if a proper fix is found and committed to CVS (requiring an upgrade from 4.4-release installations is something we'd rather avoid). now for some disclaimers : I'm aware that asynchronous cancellations (TerminateThread-style) are an Evil Thing To Do. Unfortunately I have no choice in the matter. I'm aware that there are some strict limitations on what a thread is "allowed" to do while its cancellation type is asynchronous. specifically, it should only call "cancel-safe" functions. Note that in my test program, the thread being cancelled doesn't call any functions at all after setting its cancellation type, so this shouldn't be an issue. now for the code : #include #include /* thread entry point */ void * thread_entry (void *arg) { int i; if(0!=pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS,NULL)) { fprintf(stderr,"setcanceltype failed!\n"); } fprintf(stderr,"thread_entry entering loop\n"); while(1) { i++; /* uncomment this to insert a cancellation point */ /* pthread_testcancel();*/ } /* if we see this, it would mean the loop has been optimized out... */ fprintf(stderr, "after loop\n"); } int main(void) { pthread_t thread; pthread_attr_t attr; void *pthread_param; pthread_attr_init(&attr); fprintf(stderr,"creating thread\n"); pthread_create(&thread,&attr,&thread_entry,NULL); fprintf(stderr,"thread created; hit enter to cancel it...\n"); getchar(); fprintf(stderr,"cancelling...\n"); if(0!=pthread_cancel(thread)) { fprintf(stderr,"cancel failed!\n"); } fprintf(stderr,"after cancel, before join...\n"); if(0!=pthread_join(thread,&pthread_param)) { fprintf(stderr,"join failed!\n"); } fprintf(stderr,"after join\n"); } please ask if more details are needed Thanks in advance, Louis-Philippe Gagnon ~ louisphilippe@macadamian.com Macadamian Technologies "Software experts for the world's leading technology companies." http://www.macadamian.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Nov 30 14:17: 2 2001 Delivered-To: freebsd-current@freebsd.org Received: from pcnet1.pcnet.com (pcnet1.pcnet.com [204.213.232.3]) by hub.freebsd.org (Postfix) with ESMTP id ED38337B416; Fri, 30 Nov 2001 14:16:55 -0800 (PST) Received: (from eischen@localhost) by pcnet1.pcnet.com (8.12.1/8.12.1) id fAUMFpq4015843; Fri, 30 Nov 2001 17:15:51 -0500 (EST) Date: Fri, 30 Nov 2001 17:15:50 -0500 (EST) From: Daniel Eischen To: Louis-Philippe Gagnon Cc: freebsd-current@FreeBSD.ORG, freebsd-hackers@FreeBSD.ORG Subject: Re: Possible libc_r pthread bug In-Reply-To: <094601c179ea$7cca85c0$2964a8c0@MACADAMIAN.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Fri, 30 Nov 2001, Louis-Philippe Gagnon wrote: > If at first you don't succeed... > > I've encountered a problem using pthread_cancel, pthread_join and > pthread_setcanceltype, I'm hoping someone can shed some light. > > (in a nutshell : pthread_setcanceltype doesn't seem to work in FreeBSD 4.4) > > (posted to -current and -hackers; if there's a more appropriate mailing list > for this, please let me know) > > I recently encountered a situation where, after calling pthread_cancel to > cancel a thread, the call to pthread_join hangs indefinitely. I quickly figured > out that it was because the thread being cancelled was never reaching a > cancellation point (in fact it was an infinite loop with no function calls at all). > Sure enough, adding a pthread_testcancel() in the loop allowed > pthread_join to return. However this solution isn't acceptable for my requirements. > > I discovered the pthread_setcanceltype function and its > PTHREAD_CANCEL_ASYNCHRONOUS parameter, which looked like > they would give me exactly what I needed : allow threads to be cancelled > regardless of what they are doing (basically a pthread equivalent to > TerminateThread). > > Unfortunately, my tests have been less than conclusive : pthread_setcanceltype > doesn't seem to do anything at all. It tells me it succeeds, subsequent calls > properly report the previous cancellation type as ASYNCHRONOUS. > But pthread_join still hangs, and adding pthread_testcancel calls still > makes it work... > > I'm working on a FreeBSD 4.4-release machine; I ran the same test under > FreeBSD 4.3-release and got the same results. However, running it on a > Linux box (Mandrake release, 2.4.x kernel), I get exactly the results I > was expecting (that is, setting the cancellation type to asynchronous allows > the thread to be cancelled at any time) > > see the end of this message for my test program > > So the questions are > -am I doing something wrong or misinterpreting the man pages? No, not really. > -if not, is this a known bug? Or feature? > -if so, is there a workaround (or is it already fixed)? Not fixed. Work-around could be to use pthread_signal and exit the thread from there. > -if not, can someone investigate? (I once had a look at the libc_r code > and ran away screaming) Since your thread is compute bound, it is only woken up from the thread library's scheduling signal handler. In this case, it can only resume the thread from the interrupted context, and so there is no check for the thread being canceled. -- Dan Eischen To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Nov 30 14:36:29 2001 Delivered-To: freebsd-current@freebsd.org Received: from elvis.mu.org (elvis.mu.org [216.33.66.196]) by hub.freebsd.org (Postfix) with ESMTP id A12B237B419 for ; Fri, 30 Nov 2001 14:36:27 -0800 (PST) Received: by elvis.mu.org (Postfix, from userid 1192) id 54D8A81D04; Fri, 30 Nov 2001 16:36:27 -0600 (CST) Date: Fri, 30 Nov 2001 16:36:27 -0600 From: Alfred Perlstein To: Louis-Philippe Gagnon Cc: freebsd-current@freebsd.org Subject: Re: Possible libc_r pthread bug Message-ID: <20011130163627.P46769@elvis.mu.org> References: <094601c179ea$7cca85c0$2964a8c0@MACADAMIAN.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <094601c179ea$7cca85c0$2964a8c0@MACADAMIAN.com>; from louisphilippe@macadamian.com on Fri, Nov 30, 2001 at 05:00:56PM -0500 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG * Louis-Philippe Gagnon [011130 15:57] wrote: > If at first you don't succeed... > > I've encountered a problem using pthread_cancel, pthread_join and > pthread_setcanceltype, I'm hoping someone can shed some light. Provide me with minimal sample code and a makefile and i should have the problem fixed in a couple of days, either that or a scathing flame for you misusing the API. :) -Alfred To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Nov 30 14:55:54 2001 Delivered-To: freebsd-current@freebsd.org Received: from magnesium.net (toxic.magnesium.net [207.154.84.15]) by hub.freebsd.org (Postfix) with SMTP id 8B3AE37B417 for ; Fri, 30 Nov 2001 14:55:48 -0800 (PST) Received: (qmail 19855 invoked by uid 1165); 30 Nov 2001 22:55:48 -0000 Date: 30 Nov 2001 14:55:48 -0800 Date: Fri, 30 Nov 2001 14:55:48 -0800 From: Seth Kingsley To: culverk@wam.umd.edu Cc: freebsd-current@freebsd.org Subject: Re: SoundBlaster PCI-128 performance Message-ID: <20011130145548.D61534@fluff.meowfishies.com> References: <20011129234453.B61534@fluff.meowfishies.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="iVCmgExH7+hIHJ1A" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from culverk@yumyumyum.org on Fri, Nov 30, 2001 at 09:12:52AM -0500 X-Operating-System: FreeBSD 4.4-STABLE i386 X-GPG-Key-ID: 1024D/5C413B08 X-GPG-Key-Fingerprint: F772 5D24 02B4 D233 90F5 080F 0F50 3298 5C41 3B08 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --iVCmgExH7+hIHJ1A Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Nov 30, 2001 at 09:12:52AM -0500, Kenneth Culver wrote: > On Friday 30 November 2001 02:44 am, you wrote: > Have you tried different speakers? Also have you tried moving the soundca= rd=20 > to a different slot? maybe some other card is causing interferance. I hav= e a=20 > card that uses the same driver and havn't had a problem. Oops, did I neglect to mention that it works perfectly under Windows 98 SE? --=20 || Seth Kingsley || Meow Meow Fluff Fluff || sethk@meowfishies.com || || rndcontrol -s 0 || --iVCmgExH7+hIHJ1A Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE8CA50D1AymFxBOwgRAtHxAJ0VtRYtcmOdWKCGMrdPjKyRkfUo7gCeNpNw lO6ZZblrHGKb7FYKULaS6Y0= =ONlb -----END PGP SIGNATURE----- --iVCmgExH7+hIHJ1A-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Nov 30 15:10:25 2001 Delivered-To: freebsd-current@freebsd.org Received: from po4.wam.umd.edu (po4.wam.umd.edu [128.8.10.166]) by hub.freebsd.org (Postfix) with ESMTP id 330F537B417 for ; Fri, 30 Nov 2001 15:10:23 -0800 (PST) Received: from rac4.wam.umd.edu (IDENT:root@rac4.wam.umd.edu [128.8.10.144]) by po4.wam.umd.edu (8.9.3/8.9.3) with ESMTP id SAA00632; Fri, 30 Nov 2001 18:10:20 -0500 (EST) Received: from rac4.wam.umd.edu (IDENT:sendmail@localhost [127.0.0.1]) by rac4.wam.umd.edu (8.9.3/8.9.3) with SMTP id SAA02523; Fri, 30 Nov 2001 18:10:20 -0500 (EST) Received: from localhost (culverk@localhost) by rac4.wam.umd.edu (8.9.3/8.9.3) with ESMTP id SAA02519; Fri, 30 Nov 2001 18:10:20 -0500 (EST) X-Authentication-Warning: rac4.wam.umd.edu: culverk owned process doing -bs Date: Fri, 30 Nov 2001 18:10:20 -0500 (EST) From: Kenneth Wayne Culver To: Seth Kingsley Cc: freebsd-current@freebsd.org Subject: Re: SoundBlaster PCI-128 performance In-Reply-To: <20011130145548.D61534@fluff.meowfishies.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG maybe you did. I'm not sure what the problem is then. Ken On 30 Nov 2001, Seth Kingsley wrote: > On Fri, Nov 30, 2001 at 09:12:52AM -0500, Kenneth Culver wrote: > > On Friday 30 November 2001 02:44 am, you wrote: > > Have you tried different speakers? Also have you tried moving the soundcard > > to a different slot? maybe some other card is causing interferance. I have a > > card that uses the same driver and havn't had a problem. > > Oops, did I neglect to mention that it works perfectly under Windows 98 > SE? > > -- > || Seth Kingsley || Meow Meow Fluff Fluff || sethk@meowfishies.com || > || rndcontrol -s 0 || > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Nov 30 16: 8:26 2001 Delivered-To: freebsd-current@freebsd.org Received: from wedgev.com (cm57-70.liwest.at [212.33.57.70]) by hub.freebsd.org (Postfix) with ESMTP id D577037B416 for ; Fri, 30 Nov 2001 16:08:16 -0800 (PST) Received: from cipher.home (cipher.home [10.0.0.2]) by wedgev.com (8.11.6/8.11.6) with SMTP id fB1089H67959 for ; Sat, 1 Dec 2001 01:08:09 +0100 (CET) (envelope-from bernhard.valenti@gmx.net) Date: Sat, 1 Dec 2001 01:08:08 +0100 From: Bernhard Valenti To: freebsd-current@freebsd.org Subject: lock order reversal with pcm.. Message-Id: <20011201010808.7e0efef2.bernhard.valenti@gmx.net> X-Mailer: Sylpheed version 0.6.5 (GTK+ 1.2.10; i386--freebsd5.0) X-Operating-System: FreeBSD i386 X-Copyright: (C) 2001 Bernhard Valenti. All rights reserved. X-Notice: Duplication, redistribution prohibited without consent of the author. Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG hi, i'm running -current as of november 10th. when i'm playing sound over the dsp i sometimes get: lock order reversal 1st 0xc19aea00 pcm0 @ /usr/src/sys/modules/sound/pcm/../../../dev/sound/pcm/sound.c:132 2nd 0xc19ae8c0 pcm0:play:0 @ /usr/src/sys/modules/sound/pcm/../../../dev/sound/pcm/sound.c:189 and the sound cracks/stops playing for the fraction of a second. seems like it happens more often during disk or network activity ( i mount /usr/ports via nfs, and when i build a port it happens all the time). the soundcard is a sblive. i searched the archive for this problem, but didnt find anything, so i thought i report it. would be cool if someone has a fix for that. regards, bernhard To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Nov 30 16:17:33 2001 Delivered-To: freebsd-current@freebsd.org Received: from anchor-post-31.mail.demon.net (anchor-post-31.mail.demon.net [194.217.242.89]) by hub.freebsd.org (Postfix) with ESMTP id 6967637B405 for ; Fri, 30 Nov 2001 16:17:30 -0800 (PST) Received: from vilnya.demon.co.uk ([158.152.19.238]) by anchor-post-31.mail.demon.net with esmtp (Exim 2.12 #1) id 169xqS-000EAj-0V; Sat, 1 Dec 2001 00:17:29 +0000 Received: from haveblue (haveblue.rings [10.2.4.5]) by vilnya.demon.co.uk (Postfix) with SMTP id 363112E850; Sat, 1 Dec 2001 00:13:55 +0000 (GMT) Message-ID: <01cf01c179fd$7afcd000$0504020a@haveblue> From: "cameron grant" To: "Bernhard Valenti" , References: <20011201010808.7e0efef2.bernhard.valenti@gmx.net> Subject: Re: lock order reversal with pcm.. Date: Sat, 1 Dec 2001 00:16:53 -0000 MIME-Version: 1.0 Content-Type: text/plain; charset="Windows-1252" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > and the sound cracks/stops playing for the fraction of a second. seems > like it happens more often during disk or network activity ( i mount > /usr/ports via nfs, and when i build a port it happens all the time). the > soundcard is a sblive. i searched the archive for this problem, but didnt > find anything, so i thought i report it. would be cool if someone has a > fix for that. known issue, will be fixed sometime soon. -cg To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Nov 30 18:15:57 2001 Delivered-To: freebsd-current@freebsd.org Received: from mail3.uptilt.com (mail3.uptilt.com [208.50.150.238]) by hub.freebsd.org (Postfix) with SMTP id 2764237B416 for ; Fri, 30 Nov 2001 18:15:53 -0800 (PST) Received: (qmail 21323 invoked by uid 0); 1 Dec 2001 02:13:41 -0000 Date: 1 Dec 2001 02:13:41 -0000 Message-ID: <20011201021341.21319.qmail@mail3.uptilt.com> To: current@freebsd.org Subject: Our Community...Let's Get Connected. Content-description: 51d68a85a2current@freebsd.org!b85!2b68! MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=_a7063c3510574521e16ed24da8246b06" From: "Places Of Color" Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG This is a MIME encoded message. --=_a7063c3510574521e16ed24da8246b06 Content-Type: multipart/alternative; boundary="=_1ce639f68676645a291daa629c297d1c" --=_1ce639f68676645a291daa629c297d1c Content-Type: text/plain Content-Transfer-Encoding: 7bit THIS HOLIDAY SEASON GIVE THE GIFT THAT WILL LAST Starting At $ 299.00 LET'S GET OUR COMMUNITY CONNECTED Package includes: Intel Pentium Processor, 15" monitor, hard drive, keyboard, mouse, and Windows Operating System (installed). 30 Days free internet access and 6 month equipment warranty. Go to http://www.placesofcolor.com/home_hwpreowned.cfm for this special offer and much more! To unsubscribe, send an email to: unsubscribe-2949@uptilt.com --=_1ce639f68676645a291daa629c297d1c Content-Type: text/html Content-Transfer-Encoding: 7bit Places Of Color
Do you see your preview? If not, please click here.


To unsubscribe, click here --=_1ce639f68676645a291daa629c297d1c-- --=_a7063c3510574521e16ed24da8246b06-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Fri Nov 30 18:27:43 2001 Delivered-To: freebsd-current@freebsd.org Received: from merlot.juniper.net (natint.juniper.net [207.17.136.129]) by hub.freebsd.org (Postfix) with ESMTP id 97F8C37B419 for ; Fri, 30 Nov 2001 18:27:41 -0800 (PST) Received: from juniper.net (wency-bsd.juniper.net [172.17.12.237]) by merlot.juniper.net (8.11.3/8.11.3) with ESMTP id fB12Rf097636 for ; Fri, 30 Nov 2001 18:27:41 -0800 (PST) (envelope-from wency@juniper.net) Message-Id: <200112010227.fB12Rf097636@merlot.juniper.net> X-Mailer: exmh version 2.1.1 10/15/1999 To: freebsd-current@freebsd.org Subject: unsubscribe Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Fri, 30 Nov 2001 18:27:41 -0800 From: Wency Arzadon Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG unsubscribe freebsd-current@freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Dec 1 0:40:33 2001 Delivered-To: freebsd-current@freebsd.org Received: from srv1.cosmo-project.de (srv1.cosmo-project.de [213.83.6.106]) by hub.freebsd.org (Postfix) with ESMTP id 9442D37B405; Sat, 1 Dec 2001 00:40:29 -0800 (PST) Received: (from uucp@localhost) by srv1.cosmo-project.de (8.11.0/8.11.0) with UUCP id fB18eSg06425; Sat, 1 Dec 2001 09:40:28 +0100 (CET) Received: from mail.cicely.de (cicely20.cicely.de [10.1.1.22]) by cicely5.cicely.de (8.12.1/8.12.1) with ESMTP id fB18eiAD095686; Sat, 1 Dec 2001 09:40:44 +0100 (CET)?g (envelope-from ticso@cicely8.cicely.de) Received: from cicely8.cicely.de (cicely8.cicely.de [10.1.2.10]) by mail.cicely.de (8.11.0/8.11.0) with ESMTP id fB18ehL11095; Sat, 1 Dec 2001 09:40:43 +0100 (CET) Received: (from ticso@localhost) by cicely8.cicely.de (8.11.4/8.11.4) id fB18eZh10822; Sat, 1 Dec 2001 09:40:36 +0100 (CET) (envelope-from ticso) Date: Sat, 1 Dec 2001 09:40:33 +0100 From: Bernd Walter To: Gregory Neil Shapiro Cc: Patrik Sundberg , current@FreeBSD.ORG Subject: Re: Archos 6000 Message-ID: <20011201094033.A10393@cicely8.cicely.de> References: <20011129211640.A21799@radiac.mine.nu> <15366.50767.413603.503866@horsey.gshapiro.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <15366.50767.413603.503866@horsey.gshapiro.net> User-Agent: Mutt/1.3.23i X-Operating-System: FreeBSD cicely8.cicely.de 5.0-CURRENT i386 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG 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 ticso@cicely.de Usergroup info@cosmo-project.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Dec 1 3: 8:40 2001 Delivered-To: freebsd-current@freebsd.org Received: from radiac.mine.nu (h138n2fls22o980.telia.com [213.66.251.138]) by hub.freebsd.org (Postfix) with ESMTP id 7FF1137B405; Sat, 1 Dec 2001 03:08:33 -0800 (PST) Received: (from ps@localhost) by radiac.mine.nu (8.11.6/8.11.6) id fB1BDU701139; Sat, 1 Dec 2001 12:13:30 +0100 (CET) (envelope-from ps) Date: Sat, 1 Dec 2001 12:13:30 +0100 From: Patrik Sundberg To: Bernd Walter Cc: Gregory Neil Shapiro , current@FreeBSD.ORG Subject: Re: Archos 6000 Message-ID: <20011201121330.A1112@radiac.mine.nu> References: <20011129211640.A21799@radiac.mine.nu> <15366.50767.413603.503866@horsey.gshapiro.net> <20011201094033.A10393@cicely8.cicely.de> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable User-Agent: Mutt/1.2.4i In-Reply-To: <20011201094033.A10393@cicely8.cicely.de>; from ticso@cicely8.cicely.de on Sat, Dec 01, 2001 at 09:40:33AM +0100 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG 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) wi= th the > > ps> umass driver under freebsd? > >=20 > > Just bought one (the 20G version but same interface) this weekend and c= an > > 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 devel= oper > > will port it out of the kindness of his or her heart. >=20 > 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 :) --=20 ---------------------------------------------------------------------------. Patrik Sundberg Address: Rydsv=E4gen 100C, 584 31 Link=F6ping, Sweden = | Email: ps@raditex.se || ps@radiac.mine.nu | Phone: +46 13 178567 || +46 707 602240 | =2E---> Applied Physics and Electrical Engineering student = | |-----> Master of Science in Business Administration and Economics student | |-------> UNIX/Programming consultant | `--------------------------------------------------------------------------' To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Dec 1 5:30:13 2001 Delivered-To: freebsd-current@freebsd.org Received: from castle.jp.freebsd.org (castle.jp.FreeBSD.org [210.226.20.15]) by hub.freebsd.org (Postfix) with ESMTP id 7557E37B405 for ; Sat, 1 Dec 2001 05:30:10 -0800 (PST) Received: from localhost (localhost [127.0.0.1]) by castle.jp.freebsd.org (8.9.3+3.2W/8.7.3) with ESMTP id WAA13867; Sat, 1 Dec 2001 22:30:03 +0900 (JST) (envelope-from matusita@jp.FreeBSD.org) Cc: current@FreeBSD.org In-Reply-To: <9456.1007105983@winston.freebsd.org> References: <9456.1007105983@winston.freebsd.org> X-User-Agent: Mew/1.94.2 XEmacs/21.5 (alfalfa) X-FaceAnim: (-O_O-)(O_O- )(_O- )(O- )(- -)( -O)( -O_)( -O_O)(-O_O-) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Dispatcher: imput version 20000228(IM140) Lines: 11 From: Makoto Matsushita To: jkh@winston.freebsd.org Subject: Re: PATCH: sysinstall to remove userconfig code Date: Sat, 01 Dec 2001 22:30:00 +0900 Message-Id: <20011201223000R.matusita@jp.FreeBSD.org> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG 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 majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Dec 1 5:53:23 2001 Delivered-To: freebsd-current@freebsd.org Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by hub.freebsd.org (Postfix) with ESMTP id DB0CA37B417; Sat, 1 Dec 2001 05:53:16 -0800 (PST) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.11.6/8.11.2) id fB1DrEu46236; Sat, 1 Dec 2001 15:53:14 +0200 (EET) (envelope-from ru) Date: Sat, 1 Dec 2001 15:53:14 +0200 From: Ruslan Ermilov To: Mike Barcroft Cc: current@FreeBSD.org Subject: Re: Recent ICMP breakage [FIXED] Message-ID: <20011201155314.B45348@sunbay.com> References: <20011201014033.A35567@espresso.q9media.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20011201014033.A35567@espresso.q9media.com> User-Agent: Mutt/1.3.23i Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG 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, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Dec 1 6:44: 9 2001 Delivered-To: freebsd-current@freebsd.org Received: from castle.jp.freebsd.org (castle.jp.FreeBSD.org [210.226.20.15]) by hub.freebsd.org (Postfix) with ESMTP id A536C37B423 for ; Sat, 1 Dec 2001 06:43:39 -0800 (PST) Received: from localhost (localhost [127.0.0.1]) by castle.jp.freebsd.org (8.9.3+3.2W/8.7.3) with ESMTP id XAA19260; Sat, 1 Dec 2001 23:43:33 +0900 (JST) (envelope-from matusita@jp.FreeBSD.org) Cc: current@FreeBSD.ORG In-Reply-To: <9456.1007105983@winston.freebsd.org> References: <20011130141914A.matusita@jp.FreeBSD.org> <9456.1007105983@winston.freebsd.org> X-User-Agent: Mew/1.94.2 XEmacs/21.5 (alfalfa) X-FaceAnim: (-O_O-)(O_O- )(_O- )(O- )(- -)( -O)( -O_)( -O_O)(-O_O-) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Dispatcher: imput version 20000228(IM140) Lines: 187 From: Makoto Matsushita To: jkh@winston.freebsd.org Subject: Re: PATCH: sysinstall to remove userconfig code Date: Sat, 01 Dec 2001 23:43:31 +0900 Message-Id: <20011201234331Z.matusita@jp.FreeBSD.org> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG 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 -0000 1.309 --- install.c 1 Dec 2001 13:49:27 -0000 *************** *** 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, Mount, c2->name); *************** *** 1015,1032 **** } } - if (RunningAsInit) { - 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; - } - } - command_sort(); command_execute(); dialog_clear_norefresh(); return DITEM_SUCCESS | DITEM_RESTORE; } --- 1032,1041 ---- } } command_sort(); command_execute(); + if (!mountfailed && !Fake) + unmount("/mnt/dev", MNT_FORCE); dialog_clear_norefresh(); return DITEM_SUCCESS | DITEM_RESTORE; } Index: boot_crunch.conf =================================================================== RCS file: /pub/snapshots/cvsup/FreeBSD.cvs/src/release/i386/boot_crunch.conf,v retrieving revision 1.50 diff -c -r1.50 boot_crunch.conf *** boot_crunch.conf 19 Nov 2001 14:43:29 -0000 1.50 --- boot_crunch.conf 21 Nov 2001 02:13:07 -0000 *************** *** 11,21 **** progs cpio srcdirs /usr/src/sbin ! progs dhclient fsck fsck_ffs ifconfig progs mount_nfs newfs route rtsol progs slattach tunefs - ln fsck_ffs fsck_4.2bsd - ln fsck_ffs fsck_ufs srcdirs /usr/src/usr.bin progs find minigzip sed --- 11,19 ---- progs cpio srcdirs /usr/src/sbin ! progs dhclient fsck_ffs ifconfig progs mount_nfs newfs route rtsol progs slattach tunefs srcdirs /usr/src/usr.bin progs find minigzip sed To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Dec 1 8:19: 0 2001 Delivered-To: freebsd-current@freebsd.org Received: from heechee.tobez.org (254.adsl0.ryv.worldonline.dk [213.237.10.254]) by hub.freebsd.org (Postfix) with ESMTP id 95BE237B405 for ; Sat, 1 Dec 2001 08:18:54 -0800 (PST) Received: by heechee.tobez.org (Postfix, from userid 1001) id A940E541F; Sat, 1 Dec 2001 17:18:45 +0100 (CET) Date: Sat, 1 Dec 2001 17:18:45 +0100 From: Anton Berezin To: "Eugene M. Kim" Cc: current@freebsd.org Subject: Re: Perl build breakage Message-ID: <20011201171845.A36555@heechee.tobez.org> Mail-Followup-To: Anton Berezin , "Eugene M. Kim" , current@freebsd.org References: <20011129104245.A29622@alicia.nttmcl.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20011129104245.A29622@alicia.nttmcl.com>; from gene@nttmcl.com on Thu, Nov 29, 2001 at 10:42:45AM -0800 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG 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 | | tobez@catpipe.net (_(_|| | tobez@FreeBSD.org | | +45 7021 0050 | Private: tobez@tobez.org | To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Dec 1 9:11:30 2001 Delivered-To: freebsd-current@freebsd.org Received: from horsey.gshapiro.net (horsey.gshapiro.net [209.220.147.178]) by hub.freebsd.org (Postfix) with ESMTP id 11E4537B416 for ; Sat, 1 Dec 2001 09:11:29 -0800 (PST) Received: from horsey.gshapiro.net (gshapiro@localhost [IPv6:::1]) by horsey.gshapiro.net (8.12.2.Beta1/8.12.2.Beta1) with ESMTP id fB1HA5ni014444 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO); Sat, 1 Dec 2001 09:10:05 -0800 (PST) Received: (from gshapiro@localhost) by horsey.gshapiro.net (8.12.2.Beta1/8.12.2.Beta1/Submit) id fB1HA0Kw014441; Sat, 1 Dec 2001 09:10:00 -0800 (PST) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15369.3816.502797.608408@horsey.gshapiro.net> Date: Sat, 1 Dec 2001 09:10:00 -0800 From: Gregory Neil Shapiro To: Bernd Walter Cc: Patrik Sundberg , current@FreeBSD.ORG Subject: Re: Archos 6000 In-Reply-To: <20011201094033.A10393@cicely8.cicely.de> References: <20011129211640.A21799@radiac.mine.nu> <15366.50767.413603.503866@horsey.gshapiro.net> <20011201094033.A10393@cicely8.cicely.de> X-Mailer: VM 6.96 under 21.5 (beta3) "asparagus" XEmacs Lucid Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ticso> Does it get connectet to umass? No, ugen. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Dec 1 9:23:39 2001 Delivered-To: freebsd-current@freebsd.org Received: from srv1.cosmo-project.de (srv1.cosmo-project.de [213.83.6.106]) by hub.freebsd.org (Postfix) with ESMTP id DFC3437B416; Sat, 1 Dec 2001 09:23:33 -0800 (PST) Received: (from uucp@localhost) by srv1.cosmo-project.de (8.11.0/8.11.0) with UUCP id fB1HNNj09109; Sat, 1 Dec 2001 18:23:23 +0100 (CET) Received: from mail.cicely.de (cicely20.cicely.de [10.1.1.22]) by cicely5.cicely.de (8.12.1/8.12.1) with ESMTP id fB1HNAAD099668; Sat, 1 Dec 2001 18:23:10 +0100 (CET)?g (envelope-from ticso@cicely8.cicely.de) Received: from cicely8.cicely.de (cicely8.cicely.de [10.1.2.10]) by mail.cicely.de (8.11.0/8.11.0) with ESMTP id fB1HN9L11475; Sat, 1 Dec 2001 18:23:10 +0100 (CET) Received: (from ticso@localhost) by cicely8.cicely.de (8.11.4/8.11.4) id fB1HMx016440; Sat, 1 Dec 2001 18:23:00 +0100 (CET) (envelope-from ticso) Date: Sat, 1 Dec 2001 18:22:57 +0100 From: Bernd Walter To: Patrik Sundberg Cc: Gregory Neil Shapiro , current@FreeBSD.ORG Subject: Re: Archos 6000 Message-ID: <20011201182257.A15267@cicely8.cicely.de> References: <20011129211640.A21799@radiac.mine.nu> <15366.50767.413603.503866@horsey.gshapiro.net> <20011201094033.A10393@cicely8.cicely.de> <20011201121330.A1112@radiac.mine.nu> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="ReaqsoxgOBHFXBhH" Content-Disposition: inline In-Reply-To: <20011201121330.A1112@radiac.mine.nu> User-Agent: Mutt/1.3.23i X-Operating-System: FreeBSD cicely8.cicely.de 5.0-CURRENT i386 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --ReaqsoxgOBHFXBhH Content-Type: text/plain; charset=us-ascii Content-Disposition: inline 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 ticso@cicely.de Usergroup info@cosmo-project.de --ReaqsoxgOBHFXBhH Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename=patch 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"); --ReaqsoxgOBHFXBhH-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Dec 1 9:40:54 2001 Delivered-To: freebsd-current@freebsd.org Received: from horsey.gshapiro.net (horsey.gshapiro.net [209.220.147.178]) by hub.freebsd.org (Postfix) with ESMTP id F19DC37B41E for ; Sat, 1 Dec 2001 09:40:50 -0800 (PST) Received: from horsey.gshapiro.net (gshapiro@localhost [IPv6:::1]) by horsey.gshapiro.net (8.12.2.Beta1/8.12.2.Beta1) with ESMTP id fB1HdTni014807 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO); Sat, 1 Dec 2001 09:39:29 -0800 (PST) Received: (from gshapiro@localhost) by horsey.gshapiro.net (8.12.2.Beta1/8.12.2.Beta1/Submit) id fB1HdTbw014804; Sat, 1 Dec 2001 09:39:29 -0800 (PST) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15369.5584.964021.60751@horsey.gshapiro.net> Date: Sat, 1 Dec 2001 09:39:28 -0800 From: Gregory Neil Shapiro To: Bernd Walter Cc: Patrik Sundberg , current@FreeBSD.ORG Subject: Re: Archos 6000 In-Reply-To: <20011201182257.A15267@cicely8.cicely.de> References: <20011129211640.A21799@radiac.mine.nu> <15366.50767.413603.503866@horsey.gshapiro.net> <20011201094033.A10393@cicely8.cicely.de> <20011201121330.A1112@radiac.mine.nu> <20011201182257.A15267@cicely8.cicely.de> X-Mailer: VM 6.96 under 21.5 (beta3) "asparagus" XEmacs Lucid Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG 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 majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Dec 1 11: 0:11 2001 Delivered-To: freebsd-current@freebsd.org Received: from srv1.cosmo-project.de (srv1.cosmo-project.de [213.83.6.106]) by hub.freebsd.org (Postfix) with ESMTP id 6A33737B41A; Sat, 1 Dec 2001 11:00:05 -0800 (PST) Received: (from uucp@localhost) by srv1.cosmo-project.de (8.11.0/8.11.0) with UUCP id fB1J03209629; Sat, 1 Dec 2001 20:00:03 +0100 (CET) Received: from mail.cicely.de (cicely20.cicely.de [10.1.1.22]) by cicely5.cicely.de (8.12.1/8.12.1) with ESMTP id fB1IoaAD000579; Sat, 1 Dec 2001 19:50:36 +0100 (CET)?g (envelope-from ticso@cicely8.cicely.de) Received: from cicely8.cicely.de (cicely8.cicely.de [10.1.2.10]) by mail.cicely.de (8.11.0/8.11.0) with ESMTP id fB1IoaL11548; Sat, 1 Dec 2001 19:50:36 +0100 (CET) Received: (from ticso@localhost) by cicely8.cicely.de (8.11.4/8.11.4) id fB1IoZV16856; Sat, 1 Dec 2001 19:50:35 +0100 (CET) (envelope-from ticso) Date: Sat, 1 Dec 2001 19:50:34 +0100 From: Bernd Walter To: Gregory Neil Shapiro Cc: Patrik Sundberg , current@FreeBSD.ORG Subject: Re: Archos 6000 Message-ID: <20011201195034.A16797@cicely8.cicely.de> References: <20011129211640.A21799@radiac.mine.nu> <15366.50767.413603.503866@horsey.gshapiro.net> <20011201094033.A10393@cicely8.cicely.de> <20011201121330.A1112@radiac.mine.nu> <20011201182257.A15267@cicely8.cicely.de> <15369.5584.964021.60751@horsey.gshapiro.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <15369.5584.964021.60751@horsey.gshapiro.net> User-Agent: Mutt/1.3.23i X-Operating-System: FreeBSD cicely8.cicely.de 5.0-CURRENT i386 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG 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 ticso@cicely.de Usergroup info@cosmo-project.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Dec 1 12:31:39 2001 Delivered-To: freebsd-current@freebsd.org Received: from mass.dis.org (mass.dis.org [216.240.45.41]) by hub.freebsd.org (Postfix) with ESMTP id CF77F37B416; Sat, 1 Dec 2001 12:31:37 -0800 (PST) Received: from mass.dis.org (localhost [127.0.0.1]) by mass.dis.org (8.11.6/8.11.3) with ESMTP id fB1KZgv01327; Sat, 1 Dec 2001 12:35:43 -0800 (PST) (envelope-from msmith@mass.dis.org) Message-Id: <200112012035.fB1KZgv01327@mass.dis.org> X-Mailer: exmh version 2.1.1 10/15/1999 To: Patrik Sundberg Cc: Bernd Walter , Gregory Neil Shapiro , current@FreeBSD.ORG Subject: Re: Archos 6000 In-reply-to: Your message of "Sat, 01 Dec 2001 12:13:30 +0100." <20011201121330.A1112@radiac.mine.nu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sat, 01 Dec 2001 12:35:42 -0800 From: Mike Smith Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > 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 majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Dec 1 13:15: 6 2001 Delivered-To: freebsd-current@freebsd.org Received: from alicia.nttmcl.com (alicia.nttmcl.com [216.69.69.10]) by hub.freebsd.org (Postfix) with ESMTP id D169937B427; Sat, 1 Dec 2001 13:14:44 -0800 (PST) Received: (from gene@localhost) by alicia.nttmcl.com (8.10.1/8.10.1) id fB1LEiO11318; Sat, 1 Dec 2001 13:14:44 -0800 (PST) Date: Sat, 1 Dec 2001 13:14:44 -0800 From: "Eugene M. Kim" To: Anton Berezin Cc: current@FreeBSD.org Subject: Re: Perl build breakage Message-ID: <20011201131444.C10740@alicia.nttmcl.com> References: <20011129104245.A29622@alicia.nttmcl.com> <20011201171845.A36555@heechee.tobez.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <20011201171845.A36555@heechee.tobez.org>; from tobez@FreeBSD.org on Sat, Dec 01, 2001 at 05:18:45PM +0100 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG 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 | > | tobez@catpipe.net (_(_|| | tobez@FreeBSD.org | > | +45 7021 0050 | Private: tobez@tobez.org | To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Dec 1 13:26:19 2001 Delivered-To: freebsd-current@freebsd.org Received: from alicia.nttmcl.com (alicia.nttmcl.com [216.69.69.10]) by hub.freebsd.org (Postfix) with ESMTP id 10CC137B416; Sat, 1 Dec 2001 13:26:12 -0800 (PST) Received: (from gene@localhost) by alicia.nttmcl.com (8.10.1/8.10.1) id fB1LQBn12014; Sat, 1 Dec 2001 13:26:11 -0800 (PST) Date: Sat, 1 Dec 2001 13:26:11 -0800 From: "Eugene M. Kim" To: Anton Berezin Cc: current@FreeBSD.org, imp@village.org Subject: Re: Perl build breakage Message-ID: <20011201132611.A11790@alicia.nttmcl.com> References: <20011129104245.A29622@alicia.nttmcl.com> <20011201171845.A36555@heechee.tobez.org> <20011201131444.C10740@alicia.nttmcl.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <20011201131444.C10740@alicia.nttmcl.com>; from gene@nttmcl.com on Sat, Dec 01, 2001 at 01:14:44PM -0800 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG 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 | > > | tobez@catpipe.net (_(_|| | tobez@FreeBSD.org | > > | +45 7021 0050 | Private: tobez@tobez.org | To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Dec 1 13:43:51 2001 Delivered-To: freebsd-current@freebsd.org Received: from heechee.tobez.org (254.adsl0.ryv.worldonline.dk [213.237.10.254]) by hub.freebsd.org (Postfix) with ESMTP id E567737B416 for ; Sat, 1 Dec 2001 13:43:48 -0800 (PST) Received: by heechee.tobez.org (Postfix, from userid 1001) id EE0CE5433; Sat, 1 Dec 2001 22:43:39 +0100 (CET) Date: Sat, 1 Dec 2001 22:43:39 +0100 From: Anton Berezin To: "Eugene M. Kim" Cc: current@FreeBSD.org, imp@village.org Subject: Re: Perl build breakage Message-ID: <20011201224339.A5727@heechee.tobez.org> Mail-Followup-To: Anton Berezin , "Eugene M. Kim" , current@FreeBSD.org, imp@village.org References: <20011129104245.A29622@alicia.nttmcl.com> <20011201171845.A36555@heechee.tobez.org> <20011201131444.C10740@alicia.nttmcl.com> <20011201132611.A11790@alicia.nttmcl.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20011201132611.A11790@alicia.nttmcl.com>; from gene@nttmcl.com on Sat, Dec 01, 2001 at 01:26:11PM -0800 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG 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 | | tobez@catpipe.net (_(_|| | tobez@FreeBSD.org | | +45 7021 0050 | Private: tobez@tobez.org | To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Dec 1 14:31:15 2001 Delivered-To: freebsd-current@freebsd.org Received: from web14104.mail.yahoo.com (web14104.mail.yahoo.com [216.136.172.134]) by hub.freebsd.org (Postfix) with SMTP id 728EE37B419 for ; Sat, 1 Dec 2001 14:31:10 -0800 (PST) Message-ID: <20011201223110.24983.qmail@web14104.mail.yahoo.com> Received: from [65.5.145.172] by web14104.mail.yahoo.com via HTTP; Sat, 01 Dec 2001 14:31:10 PST Date: Sat, 1 Dec 2001 14:31:10 -0800 (PST) From: Galen Sampson Subject: Fatal Double Fault To: current@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG 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: <; Sat, 1 Dec 2001 19:11:09 -0800 (PST) Received: from encontacto.net (adsl-64-173-182-155.dsl.mtry01.pacbell.net [64.173.182.155]) by worldinternet.org (8.11.6/8.11.4) with ESMTP id fB22xEa36027 for ; Sat, 1 Dec 2001 18:59:14 -0800 (PST) (envelope-from eculp@encontacto.net) Message-ID: <3C099902.3090009@encontacto.net> Date: Sat, 01 Dec 2001 18:59:14 -0800 From: Edwin Culp User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:0.9.6) Gecko/20011122 X-Accept-Language: en-us MIME-Version: 1.0 To: current@FreeBSD.Org Subject: Fatal trap 12 on kernel from sometime Nov. 30. Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG 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 0xfffff, 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 at ip_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 majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Dec 1 19:19: 5 2001 Delivered-To: freebsd-current@freebsd.org Received: from fledge.watson.org (fledge.watson.org [204.156.12.50]) by hub.freebsd.org (Postfix) with ESMTP id E817837B416 for ; Sat, 1 Dec 2001 19:19:00 -0800 (PST) Received: from localhost (arr@localhost) by fledge.watson.org (8.11.6/8.11.5) with SMTP id fB23Ib111330; Sat, 1 Dec 2001 22:18:41 -0500 (EST) (envelope-from arr@FreeBSD.org) X-Authentication-Warning: fledge.watson.org: arr owned process doing -bs Date: Sat, 1 Dec 2001 22:18:36 -0500 (EST) From: "Andrew R. Reiter" X-Sender: arr@fledge.watson.org To: Edwin Culp Cc: current@FreeBSD.org Subject: Re: Fatal trap 12 on kernel from sometime Nov. 30. In-Reply-To: <3C099902.3090009@encontacto.net> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG 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 0xfffff, 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 at ip_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 majordomo@FreeBSD.org :with "unsubscribe freebsd-current" in the body of the message : -- Andrew R. Reiter arr@watson.org arr@FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Dec 1 19:25: 2 2001 Delivered-To: freebsd-current@freebsd.org Received: from worldinternet.org (adsl-64-173-182-155.dsl.mtry01.pacbell.net [64.173.182.155]) by hub.freebsd.org (Postfix) with ESMTP id 9874F37B416; Sat, 1 Dec 2001 19:24:52 -0800 (PST) Received: from encontacto.net (adsl-64-173-182-155.dsl.mtry01.pacbell.net [64.173.182.155]) by worldinternet.org (8.11.6/8.11.4) with ESMTP id fB23Cva36128; Sat, 1 Dec 2001 19:12:58 -0800 (PST) (envelope-from eculp@encontacto.net) Message-ID: <3C099C39.3040305@encontacto.net> Date: Sat, 01 Dec 2001 19:12:57 -0800 From: Edwin Culp User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:0.9.6) Gecko/20011122 X-Accept-Language: en-us MIME-Version: 1.0 To: "Andrew R. Reiter" Cc: current@FreeBSD.org Subject: Re: Fatal trap 12 on kernel from sometime Nov. 30. References: Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG 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 0xfffff, 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 at ip_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 majordomo@FreeBSD.org >:with "unsubscribe freebsd-current" in the body of the message >: > >-- >Andrew R. Reiter >arr@watson.org >arr@FreeBSD.org > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Dec 1 19:30:26 2001 Delivered-To: freebsd-current@freebsd.org Received: from elvis.mu.org (elvis.mu.org [216.33.66.196]) by hub.freebsd.org (Postfix) with ESMTP id E257837B405; Sat, 1 Dec 2001 19:30:22 -0800 (PST) Received: by elvis.mu.org (Postfix, from userid 1192) id 90BD881D07; Sat, 1 Dec 2001 21:30:22 -0600 (CST) Date: Sat, 1 Dec 2001 21:30:22 -0600 From: Alfred Perlstein To: Edwin Culp Cc: "Andrew R. Reiter" , current@FreeBSD.org Subject: Re: Fatal trap 12 on kernel from sometime Nov. 30. Message-ID: <20011201213022.A92148@elvis.mu.org> References: <3C099C39.3040305@encontacto.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <3C099C39.3040305@encontacto.net>; from eculp@encontacto.net on Sat, Dec 01, 2001 at 07:12:57PM -0800 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG * Edwin Culp [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 majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Dec 1 19:32:35 2001 Delivered-To: freebsd-current@freebsd.org Received: from fledge.watson.org (fledge.watson.org [204.156.12.50]) by hub.freebsd.org (Postfix) with ESMTP id BC4DA37B405 for ; Sat, 1 Dec 2001 19:32:30 -0800 (PST) Received: from localhost (arr@localhost) by fledge.watson.org (8.11.6/8.11.5) with SMTP id fB23WG211408; Sat, 1 Dec 2001 22:32:16 -0500 (EST) (envelope-from arr@FreeBSD.org) X-Authentication-Warning: fledge.watson.org: arr owned process doing -bs Date: Sat, 1 Dec 2001 22:32:15 -0500 (EST) From: "Andrew R. Reiter" X-Sender: arr@fledge.watson.org To: Edwin Culp Cc: current@FreeBSD.org Subject: Re: Fatal trap 12 on kernel from sometime Nov. 30. In-Reply-To: <3C099C39.3040305@encontacto.net> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG 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 -0000 1.142 +++ ip_output.c 1 Dec 2001 13:48:16 -0000 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 -0000 1.68 +++ ip_mroute.c 1 Dec 2001 13:48:16 -0000 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 majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Dec 1 19:36:43 2001 Delivered-To: freebsd-current@freebsd.org Received: from pozo.com (pozo.com [216.101.162.50]) by hub.freebsd.org (Postfix) with ESMTP id 4E66537B416; Sat, 1 Dec 2001 19:36:41 -0800 (PST) Received: from dual.pozo.com (dual.pozo.com [216.101.162.51]) by pozo.com (8.11.6/8.11.6) with ESMTP id fB23aL100588; Sat, 1 Dec 2001 19:36:28 -0800 (PST) (envelope-from null@pozo.com) Message-Id: <5.1.0.14.2.20011201193157.00acbf80@pozo.com> X-Sender: null@pozo.com X-Mailer: QUALCOMM Windows Eudora Version 5.1 Date: Sat, 01 Dec 2001 19:35:53 -0800 To: Edwin Culp , "Andrew R. Reiter" From: Manfred Antar Subject: Re: Fatal trap 12 on kernel from sometime Nov. 30. Cc: current@FreeBSD.ORG In-Reply-To: <3C099C39.3040305@encontacto.net> References: Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG 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 ================================== || null@pozo.com || || Ph. (415) 681-6235 || ================================== To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Dec 1 19:43:53 2001 Delivered-To: freebsd-current@freebsd.org Received: from worldinternet.org (adsl-64-173-182-155.dsl.mtry01.pacbell.net [64.173.182.155]) by hub.freebsd.org (Postfix) with ESMTP id 6F77537B416; Sat, 1 Dec 2001 19:43:50 -0800 (PST) Received: from encontacto.net (adsl-64-173-182-155.dsl.mtry01.pacbell.net [64.173.182.155]) by worldinternet.org (8.11.6/8.11.4) with ESMTP id fB23Vsa50760; Sat, 1 Dec 2001 19:31:54 -0800 (PST) (envelope-from eculp@encontacto.net) Message-ID: <3C09A0A9.8030302@encontacto.net> Date: Sat, 01 Dec 2001 19:31:53 -0800 From: Edwin Culp User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:0.9.6) Gecko/20011122 X-Accept-Language: en-us MIME-Version: 1.0 To: Manfred Antar Cc: "Andrew R. Reiter" , current@FreeBSD.ORG Subject: Re: Fatal trap 12 on kernel from sometime Nov. 30. References: <5.1.0.14.2.20011201193157.00acbf80@pozo.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG 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 > >================================== >|| null@pozo.com || >|| 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 majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Dec 1 20:17:30 2001 Delivered-To: freebsd-current@freebsd.org Received: from worldinternet.org (adsl-64-173-182-155.dsl.mtry01.pacbell.net [64.173.182.155]) by hub.freebsd.org (Postfix) with ESMTP id 1C18A37B419; Sat, 1 Dec 2001 20:17:17 -0800 (PST) Received: from WorldInernet.Org (adsl-64-173-182-155.dsl.mtry01.pacbell.net [64.173.182.155]) by worldinternet.org (8.11.6/8.11.4) with ESMTP id fB2451a53924; Sat, 1 Dec 2001 20:05:01 -0800 (PST) (envelope-from eculp@WorldInernet.Org.org) Message-ID: <3C09A86B.6020302@WorldInernet.Org> Date: Sat, 01 Dec 2001 20:04:59 -0800 From: Edwin Culp User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:0.9.6) Gecko/20011122 X-Accept-Language: en-us MIME-Version: 1.0 To: Alfred Perlstein Cc: "Andrew R. Reiter" , current@FreeBSD.org Subject: Re: Fatal trap 12 on kernel from sometime Nov. 30. References: <3C099C39.3040305@encontacto.net> <20011201213022.A92148@elvis.mu.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG 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 [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 majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Dec 1 20:55:50 2001 Delivered-To: freebsd-current@freebsd.org Received: from matrix.seed.net.tw (matrix.seed.net.tw [192.72.81.219]) by hub.freebsd.org (Postfix) with ESMTP id 25AB337B41B; Sat, 1 Dec 2001 20:55:41 -0800 (PST) Received: from [210.243.149.149] (helo=amtiw.acermt.com.tw) by mail.seed.net.tw with esmtp (SEEDNet Mail Server v2.316f) id 16AOfD-000GQC-00; Sun, 02 Dec 2001 12:55:39 +0800 Received: from da001d0924.lax-ca.osd.concentric.net ([64.0.147.157]) by amtiw.acermt.com.tw with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.1960.3) id XMR8MYWY; Sun, 2 Dec 2001 13:03:23 +0800 From: Message-Id: Subject: DRIPPING WET COLLEGE COEDS Reply-To: sweeet_stuff001@yahoo.com Mime-Version: 1.0 Content-Type: text/html; charset="us-ascii" Date: Sat, 1 Dec 2001 20:57:13 To: undisclosed-recipients:; Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG 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 majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Dec 1 20:56:57 2001 Delivered-To: freebsd-current@freebsd.org Received: from srv1.cosmo-project.de (srv1.cosmo-project.de [213.83.6.106]) by hub.freebsd.org (Postfix) with ESMTP id BE11F37B417; Sat, 1 Dec 2001 20:56:54 -0800 (PST) Received: (from uucp@localhost) by srv1.cosmo-project.de (8.11.0/8.11.0) with UUCP id fB24urt14012; Sun, 2 Dec 2001 05:56:53 +0100 (CET) Received: from mail.cicely.de (cicely20.cicely.de [10.1.1.22]) by cicely5.cicely.de (8.12.1/8.12.1) with ESMTP id fB24uUAD008230; Sun, 2 Dec 2001 05:56:31 +0100 (CET)?g (envelope-from ticso@cicely8.cicely.de) Received: from cicely8.cicely.de (cicely8.cicely.de [10.1.2.10]) by mail.cicely.de (8.11.0/8.11.0) with ESMTP id fB24uUL12022; Sun, 2 Dec 2001 05:56:30 +0100 (CET) Received: (from ticso@localhost) by cicely8.cicely.de (8.11.4/8.11.4) id fB24uRw29814; Sun, 2 Dec 2001 05:56:27 +0100 (CET) (envelope-from ticso) Date: Sun, 2 Dec 2001 05:56:26 +0100 From: Bernd Walter To: Gregory Neil Shapiro Cc: Patrik Sundberg , current@FreeBSD.ORG Subject: Re: Archos 6000 Message-ID: <20011202055626.D23283@cicely8.cicely.de> References: <20011129211640.A21799@radiac.mine.nu> <15366.50767.413603.503866@horsey.gshapiro.net> <20011201094033.A10393@cicely8.cicely.de> <20011201121330.A1112@radiac.mine.nu> <20011201182257.A15267@cicely8.cicely.de> <15369.5584.964021.60751@horsey.gshapiro.net> <20011201195034.A16797@cicely8.cicely.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20011201195034.A16797@cicely8.cicely.de> User-Agent: Mutt/1.3.23i X-Operating-System: FreeBSD cicely8.cicely.de 5.0-CURRENT i386 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Some other URLs to add for this case: http://mail-index.netbsd.org/tech-kern/2001/05/02/0006.html http://www.ceres.dti.ne.jp/~tsutsui/netbsd/todo.html Sounds like it's more than a simple quirk. -- B.Walter COSMO-Project http://www.cosmo-project.de ticso@cicely.de Usergroup info@cosmo-project.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message From owner-freebsd-current Sat Dec 1 23:51:31 2001 Delivered-To: freebsd-current@freebsd.org Received: from mailx2.dacom.co.kr (mailx2.dacom.co.kr [203.252.3.68]) by hub.freebsd.org (Postfix) with ESMTP id D8FF337B417 for ; Sat, 1 Dec 2001 23:51:17 -0800 (PST) Received: from delo ([211.170.67.220]) by mailx2.dacom.co.kr (8.9.1a/8.9.1) with SMTP id QAA15758 for ; Sun, 2 Dec 2001 16:49:40 +0900 (KST) Message-Id: <200112020749.QAA15758@mailx2.dacom.co.kr> From: =?ks_c_5601-1987?B?x++3zr/sxdo=?= To: current@freebsd.org Subject: =?ks_c_5601-1987?B?wPzIrbn4yKMguau34bChwNQgte63zywguavBpsfRIMXryK0=?= Date: Sun, 02 Dec 2001 16:54:45 +0900 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0167_01C0F02A.93A54C00" X-Priority: 3 Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0167_01C0F02A.93A54C00 Content-Type: text/plain; charset="ks_c_5601-1987" Content-Transfer-Encoding: base64 wM7FzbPdILmrt+EgwPzIrbn4yKMgte63z7D6IMPWwPqwoSDA/MitseIgxse4xSDAzLqlxq4g ISAgICAgICAgICAgICAgIMD6yPEgx++3zr/sxdrAuyDAzL/rx8+/qSC/ub7gsKHA1MC7IMfP vcUgsO2wtLTUtem/obDUICCwqLvnwMcguLbAvcC7IMD8x8+w7cDaDQogwM7FzbPdv+sgVVNC IFBIT05FwLsgvLHC+Lz4ILi4uO2/oSDH0cfPv6kgw9bA+rChv6EgteW4s7TPtNkuICAgICAg DQogICAgDQogICAgDQogICANCiAgICAgICAgICAtILHiwbjAxyDAz7ndIMD8yK25+LfOuKYg sde067fOILvnv+vHz73HILz2IMDWvcC0z7TZLg0KICAgLSBVU0IgwM7FzcbkwMy9urfOIFBM VUcgJiBQTEFZuKYgwfa/+MfPuce3ziC8s8ShILnXILvnv+vAzCCwo8btICAgICAgICAtILvn v+615SDEq7XluKYgs7vA5cfPv6kgw9a788DHIMXryK0gwL3B+rfOIMDOxc2z3cD8yK0gsKG0 yQ0KICAgLSDF68itwfa/rMDMs6ogsvex6Cwgv6HE2sf2u/MswOLAvcDMILDFwMcgwM+53SDA r7yxwPzIrSC89sHYICAgICAgICAtILHiuru34SC/+SA0LDAwML/4wLi3ziC/rMDOLMSjsbgs sKHBtyy1v8ijyLi/+LCjILmrwabH0SAgxevIrQ0KICAgLSDA/LG5L73Ds7u/5LHdIDM5v/gs yN6068b5IMPWtOsgMjElLLG5wabA/MitIMPWtOsgOTUlt84gwPq3xQ0KICAgLSDA/Ly8sOgg MjMwsLOxuSDF68itILnXIMfYv9y/obytIMDatb8gt8651sDMILChtMkgICAgICAgDQogICAg DQq+xrehIMHWvNK3ziC/wLzFvK0gx6rB/MfRILDmx7Agx+C757/NIMfUsrIgsPi1v7G4uMW/ oSDC/L+pIMfPvcOx4iC52bb4tM+02S4NCiANCiCiuiBodHRwOi8vd3d3LmhlbGxvdGVsLmNv LmtyDQogDQogDQoNCiANCiANCiC43sDPvPa9xbDFus64piC/+MfPvcO46SAnvPa9xbDFus4n tvOw7SAgx6Wx4sfPv6kgurizu8HWvcOx4iC52bb4tM+02S4NCiANCiAgICCozyAgQ29weXJp Z2h0IDIwMDEgx++3zr/sxdogQWxsIHJpZ2h0cyByZXNlcnZlZC4g ------=_NextPart_000_0167_01C0F02A.93A54C00 Content-Type: text/html; charset="ks_c_5601-1987" Content-Transfer-Encoding: base64 PGh0bWw+DQo8aGVhZD4NCjx0aXRsZT7AzsXNs90guau34SDA/MitufjIoyC17rfPsPogw9bA +rChIMD8yK2x4iDGx7jFIMDMuqXGriAhPC90aXRsZT4NCjxtZXRhIGh0dHAtZXF1aXY9IkNv bnRlbnQtVHlwZSIgY29udGVudD0idGV4dC9odG1sOyBjaGFyc2V0PWV1Yy1rciI+DQo8c3R5 bGUgdHlwZT0idGV4dC9jc3MiPg0KPCEtLQ0KLmZvbnQgeyAgZm9udC1mYW1pbHk6ICKxvLiy IjsgZm9udC1zaXplOiA5cHQ7IGNvbG9yOiAjMzMzMzMzfQ0KLS0+DQo8L3N0eWxlPg0KPC9o ZWFkPg0KDQo8Ym9keSBiZ2NvbG9yPSIjRkZGRkZGIiB0ZXh0PSIjMDAwMDAwIiBsZWZ0bWFy Z2luPSIwIiB0b3BtYXJnaW49IjAiIG1hcmdpbndpZHRoPSIwIiBtYXJnaW5oZWlnaHQ9IjAi Pg0KPHRhYmxlIHdpZHRoPSI2NTAiIGJvcmRlcj0iMSIgY2VsbHNwYWNpbmc9IjAiIGNlbGxw YWRkaW5nPSIwIiBhbGlnbj0iY2VudGVyIiBib3JkZXJjb2xvcmxpZ2h0PSIjMDAwMDAwIiBi b3JkZXJjb2xvcmRhcms9ImZmZmZmZiI+DQogIDx0cj4gDQogICAgPHRkIGNsYXNzPSJmb250 IiBhbGlnbj0iY2VudGVyIiBiZ2NvbG9yPSIjRUZFRkVGIj4gDQogICAgICA8dGFibGUgd2lk dGg9IjY1MCIgYm9yZGVyPSIwIiBjZWxsc3BhY2luZz0iMCIgY2VsbHBhZGRpbmc9IjAiIGJn Y29sb3I9IiNGRkZGRkYiPg0KICAgICAgICA8dHI+IA0KICAgICAgICAgIDx0ZD48aW1nIHNy Yz0iaHR0cDovL3d3dy5oZWxsb3RlbC5jby5rci9oZWxsb3RlbG1haWwvaW1hZ2UvdG9wMS5q cGciIHdpZHRoPSIyMDUiIGhlaWdodD0iNjUiIGJvcmRlcj0iMCI+PC90ZD4NCiAgICAgICAg ICA8dGQ+PGltZyBzcmM9Imh0dHA6Ly93d3cuaGVsbG90ZWwuY28ua3IvaGVsbG90ZWxtYWls L2ltYWdlL3RvcDIuZ2lmIiB3aWR0aD0iMjE0IiBoZWlnaHQ9IjY1IiBib3JkZXI9IjAiPjwv dGQ+DQogICAgICAgICAgPHRkPjxpbWcgc3JjPSJodHRwOi8vd3d3LmhlbGxvdGVsLmNvLmty L2hlbGxvdGVsbWFpbC9pbWFnZS90b3AzLmdpZiIgd2lkdGg9IjIzMSIgaGVpZ2h0PSI2NSIg Ym9yZGVyPSIwIj48L3RkPg0KICAgICAgICA8L3RyPg0KICAgICAgICA8dHI+IA0KICAgICAg ICAgIDx0ZD48aW1nIHNyYz0iaHR0cDovL3d3dy5oZWxsb3RlbC5jby5rci9oZWxsb3RlbG1h aWwvaW1hZ2UvdG9wNC5qcGciIHdpZHRoPSIyMDUiIGhlaWdodD0iNjciIGJvcmRlcj0iMCI+ PC90ZD4NCiAgICAgICAgICA8dGQ+PGltZyBzcmM9Imh0dHA6Ly93d3cuaGVsbG90ZWwuY28u a3IvaGVsbG90ZWxtYWlsL2ltYWdlL3RvcDUuZ2lmIiB3aWR0aD0iMjE0IiBoZWlnaHQ9IjY3 IiBib3JkZXI9IjAiPjwvdGQ+DQogICAgICAgICAgPHRkPjxpbWcgc3JjPSJodHRwOi8vd3d3 LmhlbGxvdGVsLmNvLmtyL2hlbGxvdGVsbWFpbC9pbWFnZS90b3A2LmdpZiIgd2lkdGg9IjIz MSIgaGVpZ2h0PSI2NyIgYm9yZGVyPSIwIj48L3RkPg0KICAgICAgICA8L3RyPg0KICAgICAg ICA8dHIgYWxpZ249ImNlbnRlciI+IA0KICAgICAgICAgIDx0ZCBoZWlnaHQ9IjYwIiBjb2xz cGFuPSIzIiBjbGFzcz0iZm9udCI+wPrI8SDH77fOv+zF2sC7IMDMv+vHz7+pIL+5vuCwocDU wLsgx8+9xSCw7bC0tNS16b+hsNQgDQogICAgICAgICAgICCwqLvnwMcguLbAvcC7IMD8x8+w 7cDaPGJyPg0KICAgICAgICAgICAgwM7FzbPdv+sgVVNCIFBIT05FwLsgvLHC+Lz4ILi4uO2/ oSDH0cfPv6kgw9bA+rChv6EgteW4s7TPtNkuPC90ZD4NCiAgICAgICAgPC90cj4NCiAgICAg ICAgPHRyIGFsaWduPSJjZW50ZXIiPg0KICAgICAgICAgIDx0ZCBoZWlnaHQ9IjYwIiBjb2xz cGFuPSIzIiBjbGFzcz0iZm9udCI+PGEgaHJlZj0iaHR0cDovL3d3dy5oZWxsb3RlbC5jby5r ci8iIHRhcmdldD0iX2JsYW5rIj48aW1nIHNyYz0iaHR0cDovL3d3dy5oZWxsb3RlbC5jby5r ci9oZWxsb3RlbG1haWwvaW1hZ2UvZXZlbnQxLmdpZiIgd2lkdGg9IjE2MSIgaGVpZ2h0PSIx MjUiIGJvcmRlcj0iMCI+PGltZyBzcmM9Imh0dHA6Ly93d3cuaGVsbG90ZWwuY28ua3IvaGVs bG90ZWxtYWlsL2ltYWdlL2V2ZW50Mi5naWYiIHdpZHRoPSIxNjIiIGhlaWdodD0iMTI1IiBi b3JkZXI9IjAiPjxpbWcgc3JjPSJodHRwOi8vd3d3LmhlbGxvdGVsLmNvLmtyL2hlbGxvdGVs bWFpbC9pbWFnZS9ldmVudDMuZ2lmIiB3aWR0aD0iMTY0IiBoZWlnaHQ9IjEyNSIgYm9yZGVy PSIwIj48aW1nIHNyYz0iaHR0cDovL3d3dy5oZWxsb3RlbC5jby5rci9oZWxsb3RlbG1haWwv aW1hZ2UvZXZlbnQ0LmdpZiIgd2lkdGg9IjE2MyIgaGVpZ2h0PSIxMjUiIGJvcmRlcj0iMCI+ PC9hPjwvdGQ+DQogICAgICAgIDwvdHI+DQogICAgICA8L3RhYmxlPg0KICAgICAgPGJyPg0K ICAgICAgPHRhYmxlIHdpZHRoPSI2NTAiIGJvcmRlcj0iMCIgY2VsbHNwYWNpbmc9IjAiIGNl bGxwYWRkaW5nPSIwIiBiZ2NvbG9yPSIjRkZGRkZGIj4NCiAgICAgICAgPHRyIGJnY29sb3I9 IiMwMDAwMDAiPiANCiAgICAgICAgICA8dGQgY29sc3Bhbj0iMyIgaGVpZ2h0PSIxIj4gDQog ICAgICAgICAgICA8ZGl2IGFsaWduPSJjZW50ZXIiPjwvZGl2Pg0KICAgICAgICAgIDwvdGQ+ DQogICAgICAgIDwvdHI+DQogICAgICAgIDx0cj4gDQogICAgICAgICAgPHRkIHdpZHRoPSIy MDAiIGFsaWduPSJjZW50ZXIiIHZhbGlnbj0idG9wIj48YnI+DQogICAgICAgICAgICA8YSBo cmVmPSJodHRwOi8vd3d3LmhlbGxvdGVsLmNvLmtyLyIgdGFyZ2V0PSJfYmxhbmsiPjxpbWcg c3JjPSJodHRwOi8vd3d3LmhlbGxvdGVsLmNvLmtyL2hlbGxvdGVsbWFpbC9pbWFnZS9nb29k cy5naWYiIHdpZHRoPSIxOTAiIGhlaWdodD0iMjMzIiBib3JkZXI9IjAiPjwvYT48L3RkPg0K ICAgICAgICAgIDx0ZCB3aWR0aD0iMSIgYmdjb2xvcj0iIzAwMDAwMCI+IA0KICAgICAgICAg ICAgPGRpdiBhbGlnbj0iY2VudGVyIj48L2Rpdj4NCiAgICAgICAgICA8L3RkPg0KICAgICAg ICAgIDx0ZCB3aWR0aD0iNDMwIiB2YWxpZ249InRvcCI+IA0KICAgICAgICAgICAgPHRhYmxl IHdpZHRoPSI0MzAiIGJvcmRlcj0iMCIgY2VsbHNwYWNpbmc9IjAiIGNlbGxwYWRkaW5nPSIw IiBjbGFzcz0iZm9udCI+DQogICAgICAgICAgICAgIDx0cj4gDQogICAgICAgICAgICAgICAg PHRkPjxpbWcgc3JjPSJodHRwOi8vd3d3LmhlbGxvdGVsLmNvLmtyL2hlbGxvdGVsbWFpbC9p bWFnZS90dGwxLmdpZiIgd2lkdGg9IjI4NiIgaGVpZ2h0PSIyMSIgYm9yZGVyPSIwIj48L3Rk Pg0KICAgICAgICAgICAgICA8L3RyPg0KICAgICAgICAgICAgICA8dHI+IA0KICAgICAgICAg ICAgICAgIDx0ZCBoZWlnaHQ9IjYwIj4gJm5ic3A7Jm5ic3A7LSCx4sG4wMcgwM+53SDA/Mit ufi3zrimILHXtOu3ziC757/rx8+9xyC89iDA1r3AtM+02S48YnI+DQogICAgICAgICAgICAg ICAgICAmbmJzcDsmbmJzcDstIFVTQiDAzsXNxuTAzL26t84gUExVRyAmYW1wOyBQTEFZuKYg wfa/+MfPuce3ziC8s8ShILnXILvnv+vAzCCwo8btPC90ZD4NCiAgICAgICAgICAgICAgPC90 cj4NCiAgICAgICAgICAgICAgPHRyPiANCiAgICAgICAgICAgICAgICA8dGQgaGVpZ2h0PSIy MCI+PGltZyBzcmM9Imh0dHA6Ly93d3cuaGVsbG90ZWwuY28ua3IvaGVsbG90ZWxtYWlsL2lt YWdlL3R0bDIuZ2lmIiB3aWR0aD0iMjg2IiBoZWlnaHQ9IjIxIiBib3JkZXI9IjAiPjwvdGQ+ DQogICAgICAgICAgICAgIDwvdHI+DQogICAgICAgICAgICAgIDx0cj4gDQogICAgICAgICAg ICAgICAgPHRkIGhlaWdodD0iNjAiPiAmbmJzcDsmbmJzcDstILvnv+615SDEq7XluKYgs7vA 5cfPv6kgw9a788DHIMXryK0gwL3B+rfOIMDOxc2z3cD8yK0gsKG0yTxicj4NCiAgICAgICAg ICAgICAgICAgICZuYnNwOyZuYnNwOy0gxevIrcH2v6zAzLOqILL3segsIL+hxNrH9rvzLMDi wL3AzCCwxcDHIMDPud0gwK+8scD8yK0gvPbB2DwvdGQ+DQogICAgICAgICAgICAgIDwvdHI+ DQogICAgICAgICAgICAgIDx0cj4gDQogICAgICAgICAgICAgICAgPHRkPjxpbWcgc3JjPSJo dHRwOi8vd3d3LmhlbGxvdGVsLmNvLmtyL2hlbGxvdGVsbWFpbC9pbWFnZS90dGwzLmdpZiIg d2lkdGg9IjI4NiIgaGVpZ2h0PSIyMSIgYm9yZGVyPSIwIj48L3RkPg0KICAgICAgICAgICAg ICA8L3RyPg0KICAgICAgICAgICAgICA8dHI+IA0KICAgICAgICAgICAgICAgIDx0ZCBoZWln aHQ9IjgwIj4gJm5ic3A7Jm5ic3A7LSCx4rq7t+Egv/kgNCwwMDC/+MC4t84gv6zAzizEo7G4 LLChwbcstb/Io8i4v/iwoyC5q8Gmx9EgDQogICAgICAgICAgICAgICAgICDF68itPGJyPg0K ICAgICAgICAgICAgICAgICAgJm5ic3A7Jm5ic3A7LSDA/LG5L73Ds7u/5LHdIDM5v/gsyN60 68b5IMPWtOsgMjElLLG5wabA/MitIMPWtOsgOTUlt84gwPq3xTxicj4NCiAgICAgICAgICAg ICAgICAgICZuYnNwOyZuYnNwOy0gwPy8vLDoIDIzMLCzsbkgxevIrSC51yDH2L/cv6G8rSDA 2rW/ILfOudbAzCCwobTJPC90ZD4NCiAgICAgICAgICAgICAgPC90cj4NCiAgICAgICAgICAg IDwvdGFibGU+DQogICAgICAgICAgPC90ZD4NCiAgICAgICAgPC90cj4NCiAgICAgICAgPHRy PiANCiAgICAgICAgICA8dGQgY29sc3Bhbj0iMyIgYWxpZ249ImNlbnRlciIgaGVpZ2h0PSIx IiBiZ2NvbG9yPSIjMDAwMDAwIj4gDQogICAgICAgICAgICA8ZGl2IGFsaWduPSJjZW50ZXIi PjwvZGl2Pg0KICAgICAgICAgIDwvdGQ+DQogICAgICAgIDwvdHI+DQogICAgICA8L3RhYmxl Pg0KICAgICAgPHA+vsa3oSDB1rzSt84gv8C8xbytIMeqwfzH0SCw5sewIMfgu+e/zSDH1LKy ILD4tb+xuLjFv6Egwvy/qSDHz73DseIgudm2+LTPtNkuPGJyPg0KICAgICAgICA8YnI+DQog ICAgICAgIDxhIGhyZWY9Imh0dHA6Ly93d3cuaGVsbG90ZWwuY28ua3IvIiB0YXJnZXQ9Il9i bGFuayI+orogPGI+aHR0cDovL3d3dy5oZWxsb3RlbC5jby5rcjwvYj48L2E+PGJyPg0KICAg ICAgPC9wPg0KICAgICAgPHA+IDxhIGhyZWY9Imh0dHA6Ly93d3cuaGVsbG90ZWwuY28ua3Iv IiB0YXJnZXQ9Il9ibGFuayI+PGltZyBzcmM9Imh0dHA6Ly93d3cuaGVsbG90ZWwuY28ua3Iv aGVsbG90ZWxtYWlsL2ltYWdlL2V2ZW50X2J0LmdpZiIgd2lkdGg9IjEzOSIgaGVpZ2h0PSIy NiIgYm9yZGVyPSIwIj48L2E+PGJyPg0KICAgICAgICA8YnI+DQogICAgICAgIDxicj4NCiAg ICAgICAgPGEgaHJlZj0ibWFpbHRvOnBhb0BoZWxsb3RlbC5jby5rciI+PGI+uN7Az7z2vcWw xbrOPC9iPjwvYT64piC/+MfPvcO46SAnvPa9xbDFus4ntvOw7SANCiAgICAgICAgx6Wx4sfP v6kgurizu8HWvcOx4iC52bb4tM+02S48YnI+DQogICAgICA8L3A+DQogICAgPC90ZD4NCiAg PC90cj4NCiAgPHRyPg0KICAgIDx0ZCBjbGFzcz0iZm9udCIgYWxpZ249ImNlbnRlciIgYmdj b2xvcj0iIzkxMDAwMyIgaGVpZ2h0PSIyNCI+PGZvbnQgY29sb3I9IiNGRkZGRkYiPqjPIA0K ICAgICAgQ29weXJpZ2h0IDIwMDEgx++3zr/sxdogQWxsIHJpZ2h0cyByZXNlcnZlZC48L2Zv bnQ+PC90ZD4NCiAgPC90cj4NCjwvdGFibGU+DQo8L2JvZHk+DQo8L2h0bWw+DQo= ------=_NextPart_000_0167_01C0F02A.93A54C00-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message