From owner-freebsd-bugs Sun Mar 9 1:30:15 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2676F37B404 for ; Sun, 9 Mar 2003 01:30:12 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id DF51843FCB for ; Sun, 9 Mar 2003 01:30:10 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h299UANS005400 for ; Sun, 9 Mar 2003 01:30:10 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h299UA8e005399; Sun, 9 Mar 2003 01:30:10 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 54EDB37B404 for ; Sun, 9 Mar 2003 01:27:51 -0800 (PST) Received: from cirb503493.alcatel.com.au (c18609.belrs1.nsw.optusnet.com.au [210.49.80.204]) by mx1.FreeBSD.org (Postfix) with ESMTP id 44D5343FAF for ; Sun, 9 Mar 2003 01:27:49 -0800 (PST) (envelope-from peterjeremy@optushome.com.au) Received: from cirb503493.alcatel.com.au (localhost.alcatel.com.au [127.0.0.1]) by cirb503493.alcatel.com.au (8.12.6/8.12.5) with ESMTP id h299RkiM001975; Sun, 9 Mar 2003 20:27:46 +1100 (EST) (envelope-from jeremyp@cirb503493.alcatel.com.au) Received: (from jeremyp@localhost) by cirb503493.alcatel.com.au (8.12.6/8.12.5/Submit) id h299RjX0001974; Sun, 9 Mar 2003 20:27:45 +1100 (EST) Message-Id: <200303090927.h299RjX0001974@cirb503493.alcatel.com.au> Date: Sun, 9 Mar 2003 20:27:45 +1100 (EST) From: Peter Jeremy To: FreeBSD-gnats-submit@FreeBSD.org Cc: Peter Jeremy X-Send-Pr-Version: 3.113 Subject: bin/49048: [patch] ctm(1) does not check parent directory of objects Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 49048 >Category: bin >Synopsis: [patch] ctm(1) does not check parent directory of objects >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Mar 09 01:30:10 PST 2003 >Closed-Date: >Last-Modified: >Originator: Peter Jeremy >Release: FreeBSD 4.6-STABLE i386 >Organization: n/a >Environment: System: FreeBSD cirb503493.alcatel.com.au 4.6-STABLE FreeBSD 4.6-STABLE #0: Mon Jul 22 21:45:58 EST 2002 root@cirb503493.alcatel.com.au:/usr/obj/usr/src/sys/pj1592 i386 >Description: When ctm(1) executes FM or DM operations, it verifies that the specified object doesn't exist but it fails to verify that the parent directory does exist during pass2. If the parent directory doesn't exist then pass2 will succeed and ctm will die during pass3 leaving the repository in an inconsistent state. Likewise ctm does not verify that the parent directory can be modified by the user running ctm. >How-To-Repeat: Remove (or rename) the parent directory associated with a CTMFM or CTMDM operation in a ctm delta. Run "ctm -c" on the delta and repository. This will report "All checks out ok." Actually running CTM will report "Fatal error: Assert failed." during pass3. For further details or sample deltas, contact me. >Fix: The following is against -CURRENT but will also apply to -STABLE. Index: ctm_pass2.c =================================================================== RCS file: /usr/ncvs/src/usr.sbin/ctm/ctm/ctm_pass2.c,v retrieving revision 1.20 diff -u -r1.20 ctm_pass2.c --- ctm_pass2.c 25 Mar 2002 13:53:29 -0000 1.20 +++ ctm_pass2.c 9 Mar 2003 08:57:50 -0000 @@ -21,6 +21,7 @@ Pass2(FILE *fd) { u_char *p,*q,*md5=0; + const u_char *parent; MD5_CTX ctx; int i,j,sep,cnt,fdesc; u_char *trash=0,*name=0; @@ -96,7 +97,41 @@ if (CTM_FILTER_DISABLE == match) break; /* should ignore this file */ - /* XXX Check DR DM rec's for parent-dir */ + /* Check parent directory exists */ + q = strrchr(name,'/'); + if(NULL != q) { + *q = '\0'; + parent = name; + } else + parent = "."; + if(-1 == stat(parent,&st)) { + if (NULL != q) + *q = '/'; + fprintf(stderr," %s: %s parent doesn't exist.\n", + sp->Key,name); + ret |= Exit_NotOK; + break; + } + /* Check we can write to parent */ + if (0 != access(parent, W_OK)) { + if (NULL != q) + *q = '/'; + fprintf(stderr, " %s: %s can't alter parent.\n", + sp->Key,name); + ret |= Exit_NotOK; + break; + } + if (NULL != q) + *q = '/'; + /* Check parent is directory */ + if((st.st_mode & S_IFMT) != S_IFDIR) { + fprintf(stderr, + " %s: %s parent exists, but isn't dir.\n", + sp->Key,name); + ret |= Exit_NotOK; + break; + } + if(j & CTM_Q_Name_New) { /* XXX Check DR FR rec's for item */ if(-1 != stat(name,&st)) { >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Mar 9 9:50:18 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 041B937B401 for ; Sun, 9 Mar 2003 09:50:17 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E13D843FB1 for ; Sun, 9 Mar 2003 09:50:15 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h29HoFNS011521 for ; Sun, 9 Mar 2003 09:50:15 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h29HoFMr011520; Sun, 9 Mar 2003 09:50:15 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ADDC837B401 for ; Sun, 9 Mar 2003 09:48:11 -0800 (PST) Received: from gw.pelleg.org (gw.pelleg.org [205.201.13.235]) by mx1.FreeBSD.org (Postfix) with ESMTP id 119EE43F3F for ; Sun, 9 Mar 2003 09:48:06 -0800 (PST) (envelope-from dpelleg@cs.cmu.edu) Received: from lank.auton.cs.cmu.edu (lank.wburn [192.168.3.41]) (using TLSv1 with cipher EDH-RSA-DES-CBC3-SHA (168/168 bits)) (Client CN "dpelleg.dsl.telerama.com", Issuer "Dan Pelleg" (verified OK)) by gw.pelleg.org (Postfix) with ESMTP id 269045A23 for ; Sun, 9 Mar 2003 12:48:03 -0500 (EST) Received: by lank.auton.cs.cmu.edu (Postfix, from userid 7675) id 430BE652; Sun, 9 Mar 2003 10:23:22 -0500 (EST) Message-Id: <20030309152322.430BE652@lank.auton.cs.cmu.edu> Date: Sun, 9 Mar 2003 10:23:22 -0500 (EST) From: Dan Pelleg Reply-To: Dan Pelleg To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: kern/49053: PATCH: ID for USB device: SanDisk Compact Flash reader SDDR-75 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 49053 >Category: kern >Synopsis: PATCH: ID for USB device: SanDisk Compact Flash reader SDDR-75 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sun Mar 09 09:50:14 PST 2003 >Closed-Date: >Last-Modified: >Originator: Dan Pelleg >Release: FreeBSD 4.8-PRERELEASE i386 >Organization: >Environment: System: FreeBSD l 4.8-PRERELEASE FreeBSD 4.8-PRERELEASE #5: Sun Mar 9 09:59:45 EST 2003 d@l:/usr/scratch/obj/usr/src/sys/L i386 >Description: USB ID for SanDisk ImageMate dual card reader: CF/SM. Model SDDR-75. >How-To-Repeat: >Fix: --- sys/dev/usb/usbdevs.orig Sun Mar 9 09:24:20 2003 +++ sys/dev/usb/usbdevs Sun Mar 9 09:25:31 2003 @@ -986,6 +986,7 @@ product SANDISK SDDR31 0x0002 ImageMate SDDR-31 product SANDISK SDDR12 0x0100 ImageMate SDDR-12 product SANDISK SDDR09 0x0200 ImageMate SDDR-09 +product SANDISK SDDR75 0x0810 ImageMate SDDR-75 /* Sanyo Electric products */ product SANYO SCP4900 0x0701 Sanyo SCP-4900 USB Phone >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Mar 9 10:10:18 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0EE1137B401 for ; Sun, 9 Mar 2003 10:10:15 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0CDB443FB1 for ; Sun, 9 Mar 2003 10:10:14 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h29IADNS018640 for ; Sun, 9 Mar 2003 10:10:13 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h29IADS3018639; Sun, 9 Mar 2003 10:10:13 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2594D37B404 for ; Sun, 9 Mar 2003 10:04:25 -0800 (PST) Received: from gw.pelleg.org (gw.pelleg.org [205.201.13.235]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1235043FBF for ; Sun, 9 Mar 2003 10:04:24 -0800 (PST) (envelope-from dpelleg@cs.cmu.edu) Received: from lank.auton.cs.cmu.edu (lank.wburn [192.168.3.41]) (using TLSv1 with cipher EDH-RSA-DES-CBC3-SHA (168/168 bits)) (Client CN "dpelleg.dsl.telerama.com", Issuer "Dan Pelleg" (verified OK)) by gw.pelleg.org (Postfix) with ESMTP id 61EFB5A23 for ; Sun, 9 Mar 2003 13:04:22 -0500 (EST) Received: by lank.auton.cs.cmu.edu (Postfix, from userid 7675) id C16AA804; Sun, 9 Mar 2003 13:04:23 -0500 (EST) Message-Id: <20030309180423.C16AA804@lank.auton.cs.cmu.edu> Date: Sun, 9 Mar 2003 13:04:23 -0500 (EST) From: Dan Pelleg Reply-To: Dan Pelleg To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: kern/49054: QUIRK: SanDisk USB compact flash reader Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 49054 >Category: kern >Synopsis: QUIRK: SanDisk USB compact flash reader >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sun Mar 09 10:10:13 PST 2003 >Closed-Date: >Last-Modified: >Originator: Dan Pelleg >Release: FreeBSD 4.8-PRERELEASE i386 >Organization: >Environment: System: FreeBSD l 4.8-PRERELEASE FreeBSD 4.8-PRERELEASE #7: Sun Mar 9 12:34:22 EST 2003 d@l:/usr/scratch/obj/usr/src/sys/L i386 >Description: Quirks for a SanDisk ImageMate CF/SM card reader (only compact flash slot tested), model SDDR-75. This model is reported to be supported by umass(4), but isn't really. dmesg output: da0 at umass-sim0 bus 0 target 0 lun 0 da0: Removable Direct Access SCSI-0 device da0: 650KB/s transfers da0: Attempt to query device size failed: NOT READY, Medium not present Trying to mount it results in: umass0: BBB reset failed, TIMEOUT umass0: BBB bulk-in clear stall failed, TIMEOUT umass0: BBB bulk-out clear stall failed, TIMEOUT After adding the quirk, the dmesg output is still the same (including the NOT READY line - note the CF media was inserted at the time the reader was attached). However, now I can mount it, and do file copies, so I assume it's harmless. # camcontrol inquiry 0:0 pass0: Removable Direct Access SCSI-0 device pass0: Serial Number ~ pass0: 650KB/s transfers # usbdevs -v Controller /dev/usb0: addr 1: self powered, config 1, UHCI root hub(0x0000), Intel(0x0000), rev 1.00 port 1 powered port 2 powered Controller /dev/usb1: addr 1: self powered, config 1, UHCI root hub(0x0000), Intel(0x0000), rev 1.00 port 1 addr 2: power 100 mA, config 1, ImageMate SDDR-75(0x0810), SanDisk Corp(0x0781), rev 1.00 port 2 powered (Note: this is after adding the usbdevs changes as in kern/49053 ) The email address daniel+gnats@pelleg.org is valid. >How-To-Repeat: >Fix: --- sys/cam/scsi/scsi_da.c.orig Sun Mar 9 08:31:16 2003 +++ sys/cam/scsi/scsi_da.c Sun Mar 9 12:47:09 2003 @@ -283,6 +283,13 @@ }, { /* + * SanDisk USB ImageMate + */ + {T_DIRECT, SIP_MEDIA_REMOVABLE, "SanDisk", "ImageMate CF-*", "*"}, + /*quirks*/ DA_Q_NO_6_BYTE + }, + { + /* * The vendor, product and version strings coming from the * controller are null terminated instead of being padded with * spaces. The trailing wildcard character '*' is required. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Mar 9 15:31:45 2003 Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2D06D37B405 for ; Sun, 9 Mar 2003 15:31:40 -0800 (PST) Received: from user-0cevbf0.cable.mindspring.com (user-0cevbf0.cable.mindspring.com [24.239.173.224]) by mx1.FreeBSD.org (Postfix) with SMTP id EF4F443F85 for ; Sun, 9 Mar 2003 15:31:35 -0800 (PST) (envelope-from ukfxkdu@odmail.com) From: Âëàäèìèð To: Freebsd-bugs Subject: Ïîçäðàâëÿþ ñ 8 ìàðòà- Ñ÷àñòüÿ Ëþáâè Áëàãîïîëó÷èÿ MIME-Version: 1.0 Content-type: text/html; charset=Windows-1251 Content-Transfer-Encoding: 8bit Message-Id: <20030309233135.EF4F443F85@mx1.FreeBSD.org> Date: Sun, 9 Mar 2003 15:31:35 -0800 (PST) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org American Language Center
GEE!!
ELECTRIFY
YOUR LIFE

ÓÊÐÀÑÜÒÅ ÆÈÇÍÜ.
ÍÀÓ×ÈÒÅCÜ ÏÎÍÈÌÀÒÜ ÏÅÑÍÈ È ÔÈËÜÌÛ!
American
       Language
   Center


Öåíòð Àìåðèêàíñêîãî
        Àíãëèéñêîãî
PURPOSE:
ÌÛ ÍÀÓ×ÈÌ ÂÑÅÕ Â ÌÎÑÊÂÅ ÀÍÃËÈÉÑÊÎÌÓ.
ÀÍÃËÈÉÑÊÈÉ ÄËß ÂÑÅÕ. 
START DREAMING.
STOP JUST MAKING A LIVING.
EXPAND YOUR HORIZONS.
CREATE A NEW FUTURE.
  CALL NOW!  Òåë. 238-33-86, 778-98-94, 411-02-32 ÍÀ×ÈÍÀÅÒÑß ÑÅÇÎÍ ÑÊÈÄÎÊ. ÑÏÅØÈÒÅ ÈÇÌÅÍÈÒÜ ÑÂÎÅ ÁÓÄÓÙÅÅ  
(Moscow Russia)

Said I loved you but I lied. Cause this is more then love I feel inside.
COMPLIMENT HER
Said I loved you but I was wrong Cause love could never ever feel so strong.
CUDDLE HER
Need you forever, I need you to stay. You are the one. You are the one...
Michael Bolton
Unbreak my heart. Say you'll love me again Undo this hurt you caused.
KISS HER STROKE HER TEASE HER
When you walked out the door And walked outta my life.
COMFORT HER PROTECT HER CARESS HER LOVE HER
Uncry these tears I cried so many nights Unbreak my heart, my heart...
HOLD HER
Toni Braxton
Your warmth makes me cosy during biting chill of the winter.
ENCHANTING FASCINATION
Your joy doubles mine in the blight and fresh spring.
MIND - BOGGLING TEMPTATION
Your love shelters me in the scorching heat of the summer.
MYSTERIOUS ENTICEMENT
Your cheer sweeps away the pain in the unfavourable autumn.
CAPTIVATING CHARM
To really love a woman. To understand her - you need to know her deep inside.
SPEND MONEY ON HER
Hear every thought-see every dream And give her wings when she wants to fly...
Bryan Adams
What do I do to make you want me What have I got to do to be heard.
WINE & DINE HER
What do I say when it's all over And sorry seems to be the hardest word...
LISTEN TO HER
Joe Cocker
I watched the sound of the shore - I'd give you the world if it was mine.
Feels like you're mine feels right so fine I'm yours your mine like paradise...
DANCE WITH HER
oooh what a life...       oooh what a life...       like paradise...
STAND BY HER
Sade
Àíãëèéñêèé ðàçãîâîðíûé ñ ïðåïîäàâàòåëÿìè èç ÑØÀ
Could I hold you for a lifetime
Could I could I have this kiss forever
forever Enrique Iglesias / Whitney Houston
Could I look into your eyes

ÌÛØËÅÍÈÅ, ÏÐÎÈÇÍÎØÅÍÈÅ, ÑÒÈËÜ ÐÅ×È
Could I have this night to share this night together

ÂÑÅ ÑÒÀÄÈÈ ÎÁÓ×ÅÍÈß : ÎÒ ÍÓËß ÄÎ ÂÛÑØÅÃÎ!
Could I hold you close beside me..

ËÅÃÊÎ, ÂÅÑÅËÎ, ÃÈÁÊÈÉ ÃÐÀÔÈÊ, ÊÎÌÔÎÐÒÍÛÅ ÇÀÍßÒÈß, ÍÎÂÛÅ ÇÍÀÊÎÌÑÒÂÀ
Could I hold you for all times

ÀÑÑÎÖÈÀÒÈÂÍÎ-ÎÁÐÀÇÍÀß ÝÊÑÊËÞÇÈÂÍÀß ÌÅÒÎÄÈÊÀ.
Could I could I have this kiss forever?...

"To be irreplaceable one must always be different." --
                                                  Gabrielle "Coco" Chanel

ÂÀØ ÂÎÇÐÀÑÒ ÒÎËÜÊÎ ÏÎÌÎÆÅÒ ÂÀÌ.

BREATHTAKING CAPTIVATION
EXHILARATING ENTRAPMENT
AWESOME ADORATION
PERFECT YOUR GRAMMAR, PREPOSITIONS , GENERAL AND BUSINESS VOCABULARY, CONVERSATION.

ÓÑÎÂÅÐØÅÍÑÒÂÓÉÒÅ ÂÀØÓ ÃÐÀÌÌÀÒÈÊÓ, ÏÐÅÄËÎÃÈ, ÎÁØÅÓÏÎÒÐÅÁÈÌÓÞ È ÄÅËÎÂÓÞ ËÅÊÑÈÊÓ, CÒÈËÜ ÐÅ×È.
The boss really threw a bash last night! "How does that sound?"

ÍÀÈÁÎËÅÅ ÏÎËÍÀß È ÏÐÎÑÒÀß ÌÅÒÎÄÈÊÀ ÀÍÃËÈÉÑÊÎÃÎ ÐÀÇÃÎÂÎÐÍÎÃÎ ßÇÛÊÀ.
Learn how to speak & understand slang. Give me a break! I can't stand her. Let's wrap it up.

ÍÀÓ×ÈÒÅÑÜ, ÊÀÊ ÃÎÂÎÐÈÒÜ È ÏÎÍÈÌÀÒÜ ÑËÅÍÃ.
I'll get totally plastered. Beats me!

American business slang & jargonBe nice to him. He's backing the show! I live in the Big Apple.
at school/ at the party/ at the movies/ at the mall/ the new carOn second thought, I'll go to France.
at the gym/the house guest/ at work/at the market/ at the restaurantJennifer is a hot-looking chick.
at the nightclub/at the record store/ sport terms used in businessDan doesn't have the guts to do it.
slang used in TV comedies/ TV dramas / TV news /TV sports newsShe's stacked. What a knock out.
general office / computer/ meeting/ negotiation slangsI'm breaking out in a cold sweat!
business travel/ marketing/ advertising/office party jargonsHer company is going to go belly up!
finance slang& jargon/ sport terms used in business.I didn't know her old dude was loaded.
Best of the idioms.I am a history. Tomorrow I am getting hitched. I am getting cold feet.
In a word, all ñonversational english is at your fingertips.I always play second banana to her.

ÎÄÍÈÌ ÑËÎÂÎÌ, ÂÅÑÜ ÐÀÇÃÎÂÎÐÍÛÉ ÀÍÃËÈÉÑÊÈÉ Â ÂÀØÅÌ ÐÀÑÏÎÐßÆÅÍÈÈÈ.
985987216208831515940360791808 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Mar 9 20:10:14 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0B88437B401 for ; Sun, 9 Mar 2003 20:10:12 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 101E443FDD for ; Sun, 9 Mar 2003 20:10:11 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h2A4AANS078970 for ; Sun, 9 Mar 2003 20:10:10 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h2A4AAH8078969; Sun, 9 Mar 2003 20:10:10 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5AED137B401 for ; Sun, 9 Mar 2003 20:00:43 -0800 (PST) Received: from daxhome.dweebsoft.com (anubis.dweebsoft.com [64.81.58.36]) by mx1.FreeBSD.org (Postfix) with ESMTP id 70B3643FE1 for ; Sun, 9 Mar 2003 20:00:42 -0800 (PST) (envelope-from daxbert@daxhome.dweebsoft.com) Received: from daxhome.dweebsoft.com (localhost [127.0.0.1]) by daxhome.dweebsoft.com (8.12.8/8.12.7) with ESMTP id h2A40fZ4001035 for ; Sun, 9 Mar 2003 20:00:41 -0800 (PST) (envelope-from daxbert@daxhome.dweebsoft.com) Received: (from daxbert@localhost) by daxhome.dweebsoft.com (8.12.8/8.12.7/Submit) id h2A40fBF001034; Sun, 9 Mar 2003 20:00:41 -0800 (PST) Message-Id: <200303100400.h2A40fBF001034@daxhome.dweebsoft.com> Date: Sun, 9 Mar 2003 20:00:41 -0800 (PST) From: Dax Eckenberg Reply-To: Dax Eckenberg To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: kern/49059: 3Com OfficeConnect 10/100 not detected Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 49059 >Category: kern >Synopsis: 3Com OfficeConnect 10/100 not detected >Confidential: no >Severity: critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Mar 09 20:10:10 PST 2003 >Closed-Date: >Last-Modified: >Originator: Dax Eckenberg >Release: FreeBSD 5.0-CURRENT i386 >Organization: dweebsoft.com >Environment: System: FreeBSD daxhome.dweebsoft.com 5.0-CURRENT FreeBSD 5.0-CURRENT #3: Sun Mar 9 18:42:41 PST 2003 root@daxhome.dweebsoft.com:/usr/obj/usr/src/sys/DAXHOME i386 >Description: 3Com OfficeConnect 10/100 a PCI NIC, is not detected by if_dc >How-To-Repeat: Install 3Com card, enable dc, boot system >Fix: --- patch begins here --- --- sys/pci/if_dc.c Tue Feb 18 21:47:40 2003 +++ sys/pci/if_dc.c Sun Mar 9 11:40:52 2003 @@ -36,3 +36,4 @@ * DEC "tulip" clone ethernet driver. Supports the DEC/Intel 21143 * series chips and several workalikes including the following: * + * 3Com OfficeConnect 10/100 (www.3com.com) @@ -145,5 +145,7 @@ * Various supported device vendors/types and their names. */ static struct dc_type dc_devs[] = { { DC_VENDORID_DEC, DC_DEVICEID_21143, "Intel 21143 10/100BaseTX" }, + { DC_VENDORID_3COM, DC_DEVICEID_3CSOHO, + "3Com OfficeConnect 10/100" }, @@ -1989,2 +1989,3 @@ break; + case DC_DEVICEID_3CSOHO: case DC_DEVICEID_AN985: --- sys/pci/if_dcreg.h Sun Mar 9 10:48:28 2003 +++ sys/pci/if_dcreg.h Sun Mar 9 11:12:00 2003 @@ -787,6 +787,16 @@ #define DC_DEVICEID_21143 0x0019 /* + * 3COM PCI vendor ID + */ +#define DC_VENDORID_3COM 0x10b7 + +/* + * 3COM OfficeConnect 10/100 (3CSOHO100B-TX) + */ +#define DC_DEVICEID_3CSOHO 0x9300 + +/* * Macronix PCI vendor ID */ #define DC_VENDORID_MX 0x10D9 --- share/man/man4/dc.4 Sun Mar 9 18:47:19 2003 +++ share/man/man4/dc.4 Sun Mar 9 18:50:39 2003 @@ -112,4 +112,6 @@ .It Built in ethernet on LinkSys EtherFast 10/100 Instant GigaDrive (DM9102, MII) +.It +3Com OfficeConnect 10/100 .It Kingston KNE100TX (21143, MII) --- patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Mar 9 20:10:16 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8B74537B405 for ; Sun, 9 Mar 2003 20:10:13 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1EA9143FDF for ; Sun, 9 Mar 2003 20:10:13 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h2A4ACNS078986 for ; Sun, 9 Mar 2003 20:10:12 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h2A4AC4u078985; Sun, 9 Mar 2003 20:10:12 -0800 (PST) Date: Sun, 9 Mar 2003 20:10:12 -0800 (PST) Message-Id: <200303100410.h2A4AC4u078985@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Kevin Day Subject: Re: kern/47451: 5.0 GENERIC(sysinstall CD) locks during boot on Proliant ML530 Reply-To: Kevin Day Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR kern/47451; it has been noted by GNATS. From: Kevin Day To: freebsd-gnats-submit@freebsd.org Cc: Subject: Re: kern/47451: 5.0 GENERIC(sysinstall CD) locks during boot on Proliant ML530 Date: Sun, 09 Mar 2003 22:02:55 -0600 (Nearly) The same issue occurs with a Proliant 1600R, but the results are slightly different: Mounting root from ufs:/dev/md0 /stand/sysinstall running as init on vty0 panic: general protection fault syncing disks, buffers remaining... panic: bdwrite: buffer not busy Uptime: 20s (hard lock-up) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Sun Mar 9 23: 6: 2 2003 Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 86BB437B409 for ; Sun, 9 Mar 2003 23:05:58 -0800 (PST) Received: from web40806.mail.yahoo.com (web40806.mail.yahoo.com [66.218.78.183]) by mx1.FreeBSD.org (Postfix) with SMTP id 1450F43FA3 for ; Sun, 9 Mar 2003 23:05:55 -0800 (PST) (envelope-from rimi4eva@yahoo.com) Message-ID: <20030310070554.72681.qmail@web40806.mail.yahoo.com> Received: from [217.146.9.213] by web40806.mail.yahoo.com via HTTP; Sun, 09 Mar 2003 23:05:54 PST Date: Sun, 9 Mar 2003 23:05:54 -0800 (PST) From: Ango A Reply-To: ango_a@yahoo.com Subject: Mutual Investment proposal To: rimi4eva@yahoo.com MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org DEAR SIR, I HAVE THE HONOUR AND CONFIDENCE TO INTRODUCE TO YOU THIS BUSSINESS IN VIEW OF THE FACT THAT YOU ARE TRUSTWORTHY AND RELIABLE. I AM MR. Ango A, THE EASTERN DISTRICT ACCOUNTANT OF STANDARD TRUST BANK PLC (STB). THERE IS AN ACCOUNT OPENED IN THIS BANK IN 1982 AND SINCE 1990 NOBODY HAS OPERATED ON THIS ACCOUNT AGAIN. AFTER INTENSIVE INVESTIGATION, I DISCOVERED THAT THE OWNER OF THIS ACCOUNT WAS THE OWNER OF CREST MARTINS CO. LTD. A FOREIGNER FROM SWEDEN, A CRUDE OIL MERCHANT, AND HE DIED IN 1990 AND HAS NO NEXT OF KIN AND THE ACCOUNT HAS NO BENEFICIARY, MY INVESTIGATION PROVED TO ME AS WELL THAT HIS COMPANY DOES NOT KNOW ANYTHING ABOUT THIS ACCOUNT. THE AMOUNT INVOLVED RUNS INTO SEVERAL MILLIONS OF UNITED STATES DOLLARS, ABOUT US $17,460,000.00 SEVENTEEN MILLION, FOUR HUNDRED AND SIXTY THOUSAND DOLLARS. IN THE LIGHT OF THE ABOVE FACT, I NEED YOUR ASSISTANCE TO OPEN YOUR DOOR TO THIS OPPORTUNITY BY PROVIDING YOUR ACCOUNT OR ANY ACCOUNT OF YOUR CHOICE WHERE THE FUND WILL BE REMITTED. YOUR ASSISTANCE AS A FOREIGNER IS NECESSARY BECAUSE THIS MANAGEMENT IS READY TO WELCOME ANY PERSON, A FOREIGNER WHO HAS CORRECT INFORMATION TO THIS ACCOUNT, WHICH I WILL GIVE TO YOU IMMEDIATELY, IF YOU INTRESTED TO CONCLUDE THIS TRANSACTION WITH ME. I WILL APPLY FOR AN ANNUAL LEAVE IMMEDIATELY I HEAR FROM YOU THAT YOU ARE READY TO ACT AND RECEIVE THIS FUND INTO YOUR ACCOUNT. THIS IS TO ENABLE ME USE MY POSITION AND INFLUENCE TO EFFECT THE ONWARD TRANSMISSION OF THIS MONEY TO YOUR DESIRED ACCOUNT. AT THE CONCLUSION OF THIS BUSINESS, YOU WILL BE GIVEN 20% OF THE TOTAL AMOUNT, 75% WILL BE FOR US, WHILE 5% BE SET ASIDE FOR CHARITY ORGANISATION AND EXPENSE WE MIGHT INCURE DURING THE TRANSACTION. I LOOK FORWARD TO YOUR EARNEST REPLY. YOURS TRULY, Mr. Ango A __________________________________________________ Do you Yahoo!? Yahoo! Tax Center - forms, calculators, tips, more http://taxes.yahoo.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Mar 10 0:17:18 2003 Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D307E37B401; Mon, 10 Mar 2003 00:17:17 -0800 (PST) Received: from cirb503493.alcatel.com.au (c18609.belrs1.nsw.optusnet.com.au [210.49.80.204]) by mx1.FreeBSD.org (Postfix) with ESMTP id DB03743F3F; Mon, 10 Mar 2003 00:17:16 -0800 (PST) (envelope-from peterjeremy@optushome.com.au) Received: from cirb503493.alcatel.com.au (localhost.alcatel.com.au [127.0.0.1]) by cirb503493.alcatel.com.au (8.12.6/8.12.5) with ESMTP id h2A8HFiM003566; Mon, 10 Mar 2003 19:17:15 +1100 (EST) (envelope-from jeremyp@cirb503493.alcatel.com.au) Received: (from jeremyp@localhost) by cirb503493.alcatel.com.au (8.12.6/8.12.5/Submit) id h2A8HF6h003565; Mon, 10 Mar 2003 19:17:15 +1100 (EST) Date: Mon, 10 Mar 2003 19:17:15 +1100 From: Peter Jeremy To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/49048: [patch] ctm(1) does not check parent directory of objects Message-ID: <20030310081715.GA3516@cirb503493.alcatel.com.au> References: <200303090927.h299RjX0001974@cirb503493.alcatel.com.au> <200303090930.h299UA5t005387@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200303090930.h299UA5t005387@freefall.freebsd.org> User-Agent: Mutt/1.4i Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Following further testing, I withdraw the patch included in the original PR. It fails to take into account changes in the repository as a result of previous directives. As a simple case (that should have been obvious to me before), given: CTMDM foo CTMFM foo/bar my original patch will fail because "foo" doesn't exist during pass2 and therefore the CTMFM will be rejected. I shall consider the problem further and develop a new fix. Peter To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Mar 10 0:20:12 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F353237B401 for ; Mon, 10 Mar 2003 00:20:10 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 51DA643FE1 for ; Mon, 10 Mar 2003 00:20:10 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h2A8KANS043973 for ; Mon, 10 Mar 2003 00:20:10 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h2A8K9GK043972; Mon, 10 Mar 2003 00:20:09 -0800 (PST) Date: Mon, 10 Mar 2003 00:20:09 -0800 (PST) Message-Id: <200303100820.h2A8K9GK043972@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Peter Jeremy Subject: Re: bin/49048: [patch] ctm(1) does not check parent directory of objects Reply-To: Peter Jeremy Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR bin/49048; it has been noted by GNATS. From: Peter Jeremy To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-bugs@FreeBSD.org Cc: Subject: Re: bin/49048: [patch] ctm(1) does not check parent directory of objects Date: Mon, 10 Mar 2003 19:17:15 +1100 Following further testing, I withdraw the patch included in the original PR. It fails to take into account changes in the repository as a result of previous directives. As a simple case (that should have been obvious to me before), given: CTMDM foo CTMFM foo/bar my original patch will fail because "foo" doesn't exist during pass2 and therefore the CTMFM will be rejected. I shall consider the problem further and develop a new fix. Peter To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Mar 10 5:18:56 2003 Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C4E1037B401; Mon, 10 Mar 2003 05:18:49 -0800 (PST) Received: from aaanet.ru (tmail.aaanet.ru [80.80.111.232]) by mx1.FreeBSD.org (Postfix) with ESMTP id C1FC843F85; Mon, 10 Mar 2003 05:18:46 -0800 (PST) (envelope-from lowestrate@neda.net.ir) Received: from [80.80.102.142] (helo=efa.aaanet.ru) by aaanet.ru with smtp (Exim 3.36 #1) id 18rekB-000G6W-00; Sat, 08 Mar 2003 16:52:07 +0300 Received: from 193.251.174.238 ([193.251.174.238]) by efa.aaanet.ru (WinRoute 3.04d) with SMTP; Fri, 7 Mar 2003 04:08:45 +0300 Message-ID: <000062ca151c$00003741$000020a8@fallback.kps-rtm.internl.net> To: From: "D & B Investors" Subject: Government Guarantees Financial Success 11361 Date: Thu, 06 Mar 2003 17:02:13 -2000 MIME-Version: 1.0 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org
Government Guarantees Security In Your Investment
Click Here For The Best = Kept Secret In America
The average return one m= akes is 15%-50% GUARANTEED by the Goverment, and this is on the low end. O= ur clients are making an incredible 30 to 50 times their money on the high= end. The banks have been doing this for over 100 years. Our company has d= eveloped a program that allows you to capitalize on these proven technique= s and strategies for the first time ever.
For= free information on "INSIDER SECRETS TO IN= VESTING IN GOVERNMENT SECURED TAX CERTIFICATES."
CLICK HERE.
Take Control of Your = Financial Future!
To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Mar 10 10: 0:46 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7F9DE37B408 for ; Mon, 10 Mar 2003 10:00:32 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 811314400F for ; Mon, 10 Mar 2003 10:00:25 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h2AI0PNS085247 for ; Mon, 10 Mar 2003 10:00:25 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h2AI0PSB085246; Mon, 10 Mar 2003 10:00:25 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8DCF737B401 for ; Mon, 10 Mar 2003 09:51:49 -0800 (PST) Received: from firewater.f5.com (mulder.f5.com [205.229.151.150]) by mx1.FreeBSD.org (Postfix) with ESMTP id A0B7243FCB for ; Mon, 10 Mar 2003 09:51:47 -0800 (PST) (envelope-from mm@f5.com) Received: from f5-exchange.f5net.com (f5-exchange.win.net [192.168.11.140]) by firewater.f5.com (8.12.8/8.12.8) with ESMTP id h2AHGlQ2001836 for ; Mon, 10 Mar 2003 09:16:47 -0800 Received: by f5-exchange.olympus.f5net.com with Internet Mail Service (5.5.2655.55) id ; Mon, 10 Mar 2003 09:51:47 -0800 Received: from pivo.mm.lab (machacek12.f5net.com [192.168.33.125]) by f5-exchange.f5net.com with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.2655.55) id GNWADDHJ; Mon, 10 Mar 2003 09:51:42 -0800 Received: by pivo.mm.lab (Postfix, from userid 1001) id B2BAB431A; Mon, 10 Mar 2003 09:51:42 -0800 (PST) Message-Id: <20030310175142.B2BAB431A@pivo.mm.lab> Date: Mon, 10 Mar 2003 09:51:42 -0800 (PST) From: Martin Machacek Reply-To: Martin Machacek To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: kern/49079: panic: bwrite: buffer is not busy Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 49079 >Category: kern >Synopsis: panic: bwrite: buffer is not busy >Confidential: no >Severity: critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Mar 10 10:00:24 PST 2003 >Closed-Date: >Last-Modified: >Originator: Martin Machacek >Release: FreeBSD 5.0-RELEASE i386 >Organization: >Environment: System: FreeBSD pivo.mm.lab 5.0-RELEASE FreeBSD 5.0-RELEASE #0: Fri Mar 7 09:15:41 PST 2003 root@pivo.mm.lab:/usr/src/sys/i386/compile/PIVO i386 >Description: The system panics with "panic: bwrite: buffer is not busy" after random time after boot if X server is running (although this is not verified to be necessary) and there is lot of disk activity. It has repeatedly happend during daily periodic check (I'm using xdm, so X server is running all the time). Note: I had to use "DISABLE_PSE" and "DISABLE_PG_G" to prevent applications being killed by SIGILL on this machine. Stack backtrace taken from latest crashdump follows: mm@pivo:/var/crash# gdb -k -c vmcore.1 /sys/i386/compile/PIVO/kernel.debug GNU gdb 5.2.1 (FreeBSD) Copyright 2002 Free Software Foundation, Inc. GDB is free software, covered by the GNU General Public License, and you are welcome to change it and/or distribute copies of it under certain conditions. Type "show copying" to see the conditions. There is absolutely no warranty for GDB. Type "show warranty" for details. This GDB was configured as "i386-undermydesk-freebsd"... panic: bwrite: buffer is not busy??? panic messages: --- panic: ufs_dirbad: bad dir syncing disks, buffers remaining... panic: bwrite: buffer is not busy??? Uptime: 2d23h32m45s Dumping 511 MB ata0: resetting devices .. done 16 32 48 64 80 96 112 128 144 160 176 192 208 224 240 256 272 288 304 320 336 352 368 384 400 416 432 448 464 480 496 --- #0 doadump () at ../../../kern/kern_shutdown.c:232 232 dumping++; (kgdb) bt #0 doadump () at ../../../kern/kern_shutdown.c:232 #1 0xc0237e60 in boot (howto=260) at ../../../kern/kern_shutdown.c:364 #2 0xc023806d in poweroff_wait (junk=0xc03d27e3, howto=-834382628) at ../../../kern/kern_shutdown.c:517 #3 0xc0273237 in bwrite (bp=0x104) at ../../../kern/vfs_bio.c:796 #4 0xc027470c in vfs_bio_awrite (bp=0xce445430) at ../../../kern/vfs_bio.c:1643 #5 0xc0343872 in ffs_fsync (ap=0xe0b45860) at ../../../ufs/ffs/ffs_vnops.c:258 #6 0xc0342aff in ffs_sync (mp=0xc3dff800, waitfor=2, cred=0xc1293e80, td=0xc0424200) at vnode_if.h:612 #7 0xc0285669 in sync (td=0xc0424200, uap=0x0) at ../../../kern/vfs_syscalls.c:138 #8 0xc0237acc in boot (howto=256) at ../../../kern/kern_shutdown.c:273 #9 0xc023806d in poweroff_wait (junk=0xc03df15d, howto=-1007009616) at ../../../kern/kern_shutdown.c:517 #10 0xc034a499 in ufs_dirbad (ip=0x0, offset=0, how=0x0) at ../../../ufs/ufs/ufs_lookup.c:631 #11 0xc03499eb in ufs_lookup (ap=0xe0b45ac0) at ../../../ufs/ufs/ufs_lookup.c:294 #12 0xc0350cba in ufs_vnoperate (ap=0x0) at ../../../ufs/ufs/ufs_vnops.c:2796 #13 0xc0277e23 in vfs_cache_lookup (ap=0x0) at vnode_if.h:82 #14 0xc0350cba in ufs_vnoperate (ap=0x0) at ../../../ufs/ufs/ufs_vnops.c:2796 #15 0xc027bebe in lookup (ndp=0xe0b45c28) at vnode_if.h:52 #16 0xc027b8d7 in namei (ndp=0xe0b45c28) at ../../../kern/vfs_lookup.c:181 #17 0xc02880ba in lstat (td=0xc40b38c0, uap=0xe0b45d14) at ../../../kern/vfs_syscalls.c:1699 #18 0xc0393807 in syscall (frame= {tf_fs = 134938671, tf_es = 134873135, tf_ds = 136052783, tf_edi = 135978656, tf_esi = 134876304, tf_ebp = 135977844, tf_isp = -525050508, tf_ebx = 136346664, tf_edx = 0, tf_ecx = 0, tf_eax = 190, tf_trapno = 22, tf_err = 2, tf_eip = 672664659, tf_cs = 31, tf_eflags = 582, tf_esp = 135977708, tf_ss = 47}) at ../../../i386/i386/trap.c:1033 #19 0xc03849fd in Xint0x80_syscall () at {standard input}:140 ---Can't read userspace from dump, or kernel process--- dmesg: mm@pivo:/var/crash# cat /var/run/dmesg.boot Copyright (c) 1992-2003 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-RELEASE #0: Fri Mar 7 09:15:41 PST 2003 root@pivo.mm.lab:/usr/src/sys/i386/compile/PIVO Preloaded elf kernel "/boot/kernel/kernel" at 0xc0565000. Preloaded elf module "/boot/kernel/acpi.ko" at 0xc05650a8. Timecounter "i8254" frequency 1193182 Hz Timecounter "TSC" frequency 1793363468 Hz CPU: Pentium 4 (1793.36-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0xf24 Stepping = 4 Features=0x3febfbff real memory = 536285184 (511 MB) avail memory = 515149824 (491 MB) Initializing GEOMetry subsystem Pentium Pro MTRR support enabled npx0: on motherboard npx0: INT 16 interface acpi0: on motherboard ACPI-0625: *** Info: GPE Block0 defined as GPE0 to GPE31 Using $PIR table, 9 entries at 0xc00feae0 acpi0: power button is handled as a fixed feature programming model. Timecounter "ACPI-fast" frequency 3579545 Hz acpi_timer0: <24-bit timer at 3.579545MHz> port 0x808-0x80b on acpi0 acpi_cpu0: on acpi0 acpi_button0: on acpi0 pcib0: port 0xcf8-0xcff on acpi0 pci0: on pcib0 agp0: mem 0xe8000000-0xefffffff at device 0.0 on pci0 pcib1: at device 1.0 on pci0 pci1: on pcib1 drm0: port 0xec00-0xecff mem 0xff8f0000-0xff8fffff,0xf0000000-0xf7ffffff irq 11 at device 0.0 on pci1 info: [drm] AGP at 0xe8000000 128MB info: [drm] Initialized radeon 1.1.1 20010405 on minor 0 uhci0: port 0xff80-0xff9f irq 11 at device 29.0 on pci0 usb0: on uhci0 usb0: USB revision 1.0 uhub0: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub0: 2 ports with 2 removable, self powered ums0: Logitech USB Optical Mouse, rev 1.10/21.10, addr 2, iclass 3/1 ums0: 3 buttons and Z dir. uhci1: port 0xff60-0xff7f irq 10 at device 29.1 on pci0 usb1: on uhci1 usb1: USB revision 1.0 uhub1: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub1: 2 ports with 2 removable, self powered uhci2: port 0xff40-0xff5f irq 9 at device 29.2 on pci0 usb2: on uhci2 usb2: USB revision 1.0 uhub2: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub2: 2 ports with 2 removable, self powered pci0: at device 29.7 (no driver attached) pcib2: at device 30.0 on pci0 pci2: on pcib2 xl0: <3Com 3c905C-TX Fast Etherlink XL> port 0xdc80-0xdcff mem 0xff6ffc00-0xff6ffc7f irq 9 at device 9.0 on pci2 xl0: Ethernet address: 00:01:02:2e:46:78 miibus0: on xl0 xlphy0: <3c905C 10/100 internal PHY> on miibus0 xlphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto em0: port 0xdc40-0xdc7f mem 0xff6c0000-0xff6dffff irq 9 at device 12.0 on pci2 em0: Speed:100 Mbps Duplex:Full isab0: at device 31.0 on pci0 isa0: on isab0 atapci0: port 0xffa0-0xffaf,0-0x3,0-0x7,0-0x3,0-0x7 at device 31.1 on pci0 ata0: at 0x1f0 irq 14 on atapci0 ata1: at 0x170 irq 15 on atapci0 pci0: at device 31.3 (no driver attached) pcm0: port 0xcc40-0xcc7f,0xc800-0xc8ff mem 0xffa20000-0xffa200ff,0xffa20400-0xffa205ff irq 11 at device 31.5 on pci0 speaker0 port 0x61 on acpi0 fdc0: port 0x3f7,0x3f0-0x3f5 irq 6 drq 2 on acpi0 fdc0: FIFO enabled, 8 bytes threshold fd0: <1440-KB 3.5" drive> on fdc0 drive 0 atkbdc0: port 0x64,0x60 irq 1 on acpi0 atkbd0: flags 0x1 irq 1 on atkbdc0 kbd0 at atkbd0 sio0 port 0x3f8-0x3ff irq 4 on acpi0 sio0: type 16550A orm0:
Government Guarantees Security In Your Investment
Click Here For The Best = Kept Secret In America
The average return one m= akes is 15%-50% GUARANTEED by the Goverment, and this is on the low end. O= ur clients are making an incredible 30 to 50 times their money on the high= end. The banks have been doing this for over 100 years. Our company has d= eveloped a program that allows you to capitalize on these proven technique= s and strategies for the first time ever.
For= free information on "INSIDER SECRETS TO IN= VESTING IN GOVERNMENT SECURED TAX CERTIFICATES."
CLICK HERE.
Take Control of Your = Financial Future!
To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Mar 10 15:40:19 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B6FE637B401 for ; Mon, 10 Mar 2003 15:40:15 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 551BD43F85 for ; Mon, 10 Mar 2003 15:40:15 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h2ANeFNS081223 for ; Mon, 10 Mar 2003 15:40:15 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h2ANeFxX081222; Mon, 10 Mar 2003 15:40:15 -0800 (PST) Date: Mon, 10 Mar 2003 15:40:15 -0800 (PST) Message-Id: <200303102340.h2ANeFxX081222@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: JD Subject: Re: i386/49023: Mod to LPD (printjob.c) to pass source filename to input filters Reply-To: JD Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR i386/49023; it has been noted by GNATS. From: JD To: freebsd-gnats-submit@FreeBSD.org, jimd@siu.edu Cc: Subject: Re: i386/49023: Mod to LPD (printjob.c) to pass source filename to input filters Date: Mon, 10 Mar 2003 17:46:46 -0600 This is a multi-part message in MIME format. --------------030209080506070601060700 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Slightly modifed PRINTJOB.C.DIFFS to insert new parameters in input filter list only when original filename is found in the control file. --------------030209080506070601060700 Content-Type: text/plain; name="printjob.c.diffs" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="printjob.c.diffs" *** printjob.c.orig Wed Feb 19 17:42:35 2003 --- printjob.c Mon Mar 10 17:10:09 2003 *************** *** 114,119 **** --- 114,121 ---- /* indentation size in static characters */ static char indent[10] = "-i0"; static char jobname[100]; /* job or file name */ + static char ofilename[100]; /* name of (source) file to print - JD*/ + static long origfpos = 0L; /* original cfp file position - JD */ static char length[10] = "-l"; /* page length in lines */ static char logname[32]; /* user's login name */ static char pxlength[10] = "-y"; /* page length in pixels */ *************** *** 439,445 **** */ /* pass 1 */ - while (getline(cfp)) switch (line[0]) { case 'H': --- 441,446 ---- *************** *** 479,485 **** } else strcpy(jobname, " "); continue; - case 'C': if (line[1] != '\0') strlcpy(class, line + 1, sizeof(class)); --- 480,485 ---- *************** *** 554,560 **** title[0] = '\0'; continue; ! case 'N': case 'U': case 'M': case 'R': --- 554,560 ---- title[0] = '\0'; continue; ! case 'N': case 'U': case 'M': case 'R': *************** *** 645,650 **** --- 645,673 ---- (void) close(fi); return (OK); } + + /* + * reset pointer to config file, parse cf for filename, + * reset pointer again to where it was before we got here + * + * JD 06 March 2003 + * + */ + origfpos = ftell(cfp); /* get previous file position */ + fseek(cfp, 0L, 0); /* set file position to beginning of file */ + strcpy(ofilename, ""); /* initialize variable */ + while (getline(cfp)) + switch (line[0]){ + case 'N': + if (line[1] != '\0') { + strlcpy(ofilename, line + 1, sizeof(ofilename)); + } + continue; + default: continue; + } + fseek(cfp, origfpos, 0); /* reset file pointer */ + /*-------------------- JD */ + switch (format) { case 'p': /* print file using 'pr' */ if (pp->filters[LPF_INPUT] == NULL) { /* use output filter */ *************** *** 780,785 **** --- 803,813 ---- av[n++] = "-h"; av[n++] = origin_host; av[n++] = pp->acct_file; + /* added 20 Feb, 10 Mar 2003 - JD */ + if (strcmp(ofilename, "") != 0) { + av[n++] = "-fn"; + av[n++] = ofilename; + } /* JD */ av[n] = 0; fo = pfd; if (of_pid > 0) { /* stop output filter */ --------------030209080506070601060700-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Mar 10 15:50: 7 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ED75337B401; Mon, 10 Mar 2003 15:50:05 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8D46143FBF; Mon, 10 Mar 2003 15:50:05 -0800 (PST) (envelope-from robert@FreeBSD.org) Received: from freefall.freebsd.org (robert@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h2ANo5NS083322; Mon, 10 Mar 2003 15:50:05 -0800 (PST) (envelope-from robert@freefall.freebsd.org) Received: (from robert@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h2ANo5Up083300; Mon, 10 Mar 2003 15:50:05 -0800 (PST) Date: Mon, 10 Mar 2003 15:50:05 -0800 (PST) From: Robert Drehmel Message-Id: <200303102350.h2ANo5Up083300@freefall.freebsd.org> To: jau@iki.fi, robert@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/49038: /bin/sh does not undefine a function when unset is issued Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: /bin/sh does not undefine a function when unset is issued State-Changed-From-To: feedback->closed State-Changed-By: robert State-Changed-When: Mon Mar 10 15:40:44 PST 2003 State-Changed-Why: The bourne shell in both 4.7-RELEASE and -CURRENT distinguishes between variables and functions in its `unset' command. To unset functions, the `-f' flag must be explicitly given. The problem lay in the documentation of earlier FreeBSD versions. Originator considers PR resolved. http://www.freebsd.org/cgi/query-pr.cgi?pr=49038 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Mar 10 20:42:47 2003 Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0C66F37B401; Mon, 10 Mar 2003 20:42:47 -0800 (PST) Received: from mail.farley.org (adsl-67-64-95-201.dsl.austtx.swbell.net [67.64.95.201]) by mx1.FreeBSD.org (Postfix) with ESMTP id A5C7C43F93; Mon, 10 Mar 2003 20:42:45 -0800 (PST) (envelope-from sean-freebsd@farley.org) Received: from thor.farley.org (5bn2q6ti7lu4ey1y@thor.farley.org [IPv6:2002:4340:5fc9::5]) by mail.farley.org (8.12.8/8.12.8) with ESMTP id h2B4giPs027826; Mon, 10 Mar 2003 22:42:44 -0600 (CST) (envelope-from sean-freebsd@farley.org) Received: from thor.farley.org (localhost [127.0.0.1]) by thor.farley.org (8.12.8/8.12.8) with ESMTP id h2B4gi8v000376; Mon, 10 Mar 2003 22:42:44 -0600 (CST) (envelope-from sean-freebsd@farley.org) Received: from localhost (sean@localhost) by thor.farley.org (8.12.8/8.12.8/Submit) with ESMTP id h2B4gh3I000370; Mon, 10 Mar 2003 22:42:44 -0600 (CST) (envelope-from sean-freebsd@farley.org) X-Authentication-Warning: thor.farley.org: sean owned process doing -bs Date: Mon, 10 Mar 2003 22:42:43 -0600 (CST) From: Sean Farley X-X-Sender: sean@thor.farley.org To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/48927: pcm: setting samplerate below 3400 or above 48700 will result in infinte loop in channel.c:chn_tryspeed() Message-ID: <20030310223927.Y325@thor.farley.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The patch to channel.c by orion fixed this problem (Wine) for me. I do not know if it helped Ulrich's fatal trap as I have it compiled into the kernel. Sean ----------------------- sean-freebsd@farley.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Mon Mar 10 22:30:10 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4AA1237B401 for ; Mon, 10 Mar 2003 22:30:08 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7A22C43F93 for ; Mon, 10 Mar 2003 22:30:05 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h2B6U5NS090663 for ; Mon, 10 Mar 2003 22:30:05 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h2B6U5Xb090662; Mon, 10 Mar 2003 22:30:05 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4A59637B401 for ; Mon, 10 Mar 2003 22:24:59 -0800 (PST) Received: from gw2.svzserv.kemerovo.su (gw2.svzserv.kemerovo.su [213.184.65.69]) by mx1.FreeBSD.org (Postfix) with ESMTP id C611E43F93 for ; Mon, 10 Mar 2003 22:24:57 -0800 (PST) (envelope-from sa@gw2.svzserv.kemerovo.su) Received: from gw2.svzserv.kemerovo.su (localhost [127.0.0.1]) by gw2.svzserv.kemerovo.su (8.12.7/8.12.7) with ESMTP id h2B6Os8L056405 for ; Tue, 11 Mar 2003 13:24:54 +0700 (KRAT) (envelope-from sa@gw2.svzserv.kemerovo.su) Received: (from root@localhost) by gw2.svzserv.kemerovo.su (8.12.7/8.12.7/Submit) id h2B6OsXP056404; Tue, 11 Mar 2003 13:24:54 +0700 (KRAT) Message-Id: <200303110624.h2B6OsXP056404@gw2.svzserv.kemerovo.su> Date: Tue, 11 Mar 2003 13:24:54 +0700 (KRAT) From: Eugene Grosbein To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: bin/49096: cron(8) may segfault when system open file table is full Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 49096 >Category: bin >Synopsis: cron(8) may segfault when system open file table is full >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Mar 10 22:30:04 PST 2003 >Closed-Date: >Last-Modified: >Originator: Eugene Grosbein >Release: FreeBSD 4.8-RC i386 >Organization: Svyaz Service JSC >Environment: System: FreeBSD gw2.svzserv.kemerovo.su 4.8-RC FreeBSD 4.8-RC #12: Tue Mar 4 02:15:40 KRAT 2003 sa@gw2.svzserv.kemerovo.su:/usr/obj/usr/src/sys/GW2 i386 >Description: I've found that cron(8) can segfault easily when a system table of open files is full or nearly full. I tried to rebuild cron with -O0 -g to analyze core dump, reproduced the problem but stack seems to be corrupted completely and gdb does not help. >How-To-Repeat: Run 'sysctl -a | grep files'. Make kern.maxfilesfiles and kern.maxfilesperproc so small that kernel table would be nearly full. Wait for cron to segfault. >Fix: Unknown for me. Eugene Grosbein >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Mar 11 1:40:12 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BDC8A37B401 for ; Tue, 11 Mar 2003 01:40:11 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6D59743F75 for ; Tue, 11 Mar 2003 01:40:11 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h2B9eBNS040561 for ; Tue, 11 Mar 2003 01:40:11 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h2B9eBvp040560; Tue, 11 Mar 2003 01:40:11 -0800 (PST) Date: Tue, 11 Mar 2003 01:40:11 -0800 (PST) Message-Id: <200303110940.h2B9eBvp040560@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Attila Nagy Subject: Re: kern/49079: panic: bwrite: buffer is not busy Reply-To: Attila Nagy Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR kern/49079; it has been noted by GNATS. From: Attila Nagy To: Martin Machacek Cc: FreeBSD-gnats-submit@FreeBSD.org Subject: Re: kern/49079: panic: bwrite: buffer is not busy Date: Tue, 11 Mar 2003 10:30:17 +0100 (CET) Hello, > The system panics with "panic: bwrite: buffer is not busy" after random > time after boot if X server is running (although this is not verified to > >Fix: > Would love to have one :-). CURRENT already has a fix, in rev. 1.373 of vfs_bio.c Could you please try to update to -CURRENT to see if this problem disappears? ----------[ Free Software ISOs - http://www.fsn.hu/?f=download ]---------- Attila Nagy e-mail: Attila.Nagy@fsn.hu Free Software Network (FSN.HU) phone @work: +361 210 1415 (194) cell.: +3630 306 6758 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Mar 11 2: 0:31 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C9E4F37B404 for ; Tue, 11 Mar 2003 02:00:29 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4804D43FDD for ; Tue, 11 Mar 2003 02:00:28 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h2BA0SNS044711 for ; Tue, 11 Mar 2003 02:00:28 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h2BA0SCo044710; Tue, 11 Mar 2003 02:00:28 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A625437B401 for ; Tue, 11 Mar 2003 01:53:31 -0800 (PST) Received: from smtp01.syd.iprimus.net.au (smtp01.syd.iprimus.net.au [210.50.30.70]) by mx1.FreeBSD.org (Postfix) with ESMTP id B043D43FAF for ; Tue, 11 Mar 2003 01:53:30 -0800 (PST) (envelope-from tim@robbins.dropbear.id.au) Received: from dilbert.robbins.dropbear.id.au ([210.50.221.204]) by smtp01.syd.iprimus.net.au with Microsoft SMTPSVC(5.0.2195.5600); Tue, 11 Mar 2003 20:53:24 +1100 Received: from dilbert.robbins.dropbear.id.au (lroksc0xguohgkjb@localhost [127.0.0.1]) by dilbert.robbins.dropbear.id.au (8.12.6/8.12.6) with ESMTP id h2B9qxJK083268 for ; Tue, 11 Mar 2003 20:52:59 +1100 (EST) (envelope-from tim@dilbert.robbins.dropbear.id.au) Received: (from tim@localhost) by dilbert.robbins.dropbear.id.au (8.12.6/8.12.6/Submit) id h2B9qwNF083267; Tue, 11 Mar 2003 20:52:58 +1100 (EST) (envelope-from tim) Message-Id: <200303110952.h2B9qwNF083267@dilbert.robbins.dropbear.id.au> Date: Tue, 11 Mar 2003 20:52:58 +1100 (EST) From: Tim Robbins Reply-To: Tim Robbins To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: kern/49102: Resident set size calculation broken in 5.x Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 49102 >Category: kern >Synopsis: Resident set size calculation broken in 5.x >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Mar 11 02:00:27 PST 2003 >Closed-Date: >Last-Modified: >Originator: Tim Robbins >Release: FreeBSD 5.0-RELEASE i386 >Organization: The FreeBSD Project >Environment: System: FreeBSD 5.0-RELEASE i386 >Description: Resident set size calculation is broken in 5.0 because the kernel stack is counted towards the RSS even when a process has been swapped out. In fill_kinfo_proc(): kp->ki_rssize = vmspace_resident_count(vm); /*XXX*/ if (p->p_sflag & PS_INMEM) kp->ki_rssize += UAREA_PAGES; FOREACH_THREAD_IN_PROC(p, td) /* XXXKSE: thread swapout check */ kp->ki_rssize += KSTACK_PAGES; Note the way KSTACK_PAGES is added on to the RSS even when threads are are swapped out and the XXXKSE comment. >How-To-Repeat: Run some processes. Allocate enough memory so that some processes get swapped out. Observe the RSS with 'top' and notice that it is not 0 for swapped-out processes. >Fix: Not supplied. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Mar 11 2: 5:35 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C135A37B401; Tue, 11 Mar 2003 02:05:34 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6363243F85; Tue, 11 Mar 2003 02:05:34 -0800 (PST) (envelope-from tjr@FreeBSD.org) Received: from freefall.freebsd.org (tjr@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h2BA5YNS049929; Tue, 11 Mar 2003 02:05:34 -0800 (PST) (envelope-from tjr@freefall.freebsd.org) Received: (from tjr@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h2BA5Yvw049925; Tue, 11 Mar 2003 02:05:34 -0800 (PST) Date: Tue, 11 Mar 2003 02:05:34 -0800 (PST) From: "Tim J. Robbins" Message-Id: <200303111005.h2BA5Yvw049925@freefall.freebsd.org> To: tjr@FreeBSD.org, freebsd-bugs@FreeBSD.org, julian@FreeBSD.org Subject: Re: kern/49102: Resident set size calculation broken in 5.x Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Resident set size calculation broken in 5.x Responsible-Changed-From-To: freebsd-bugs->julian Responsible-Changed-By: tjr Responsible-Changed-When: Tue Mar 11 02:05:00 PST 2003 Responsible-Changed-Why: Over to Julian. http://www.freebsd.org/cgi/query-pr.cgi?pr=49102 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Mar 11 9: 0:33 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2B73537B401 for ; Tue, 11 Mar 2003 09:00:31 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2DB5043FD7 for ; Tue, 11 Mar 2003 09:00:30 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h2BH0UNS026777 for ; Tue, 11 Mar 2003 09:00:30 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h2BH0Uaa026776; Tue, 11 Mar 2003 09:00:30 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 93D3B37B401 for ; Tue, 11 Mar 2003 08:53:49 -0800 (PST) Received: from wl394.wlan.uni-regensburg.de (wl394.wlan.uni-regensburg.de [132.199.233.104]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7ED4843F75 for ; Tue, 11 Mar 2003 08:53:48 -0800 (PST) (envelope-from florian@wl394.wlan.uni-regensburg.de) Received: from wl394.wlan.uni-regensburg.de (localhost [127.0.0.1]) by wl394.wlan.uni-regensburg.de (8.12.6/8.12.6) with ESMTP id h2BGrfSs000822; Tue, 11 Mar 2003 17:53:46 +0100 (CET) (envelope-from florian@wl394.wlan.uni-regensburg.de) Received: (from florian@localhost) by wl394.wlan.uni-regensburg.de (8.12.6/8.12.6/Submit) id h2BGre33000821; Tue, 11 Mar 2003 17:53:40 +0100 (CET) Message-Id: <200303111653.h2BGre33000821@wl394.wlan.uni-regensburg.de> Date: Tue, 11 Mar 2003 17:53:40 +0100 (CET) From: Florian Tischer Reply-To: Florian Tischer To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: i386/49116: ACPI module disables /dev/psm0 detection Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 49116 >Category: i386 >Synopsis: ACPI module disables /dev/psm0 detection >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Mar 11 09:00:29 PST 2003 >Closed-Date: >Last-Modified: >Originator: Florian Tischer >Release: FreeBSD 5.0-RELEASE-p4 i386 >Organization: >Environment: System: FreeBSD wl394.wlan.uni-regensburg.de 5.0-RELEASE-p4 FreeBSD 5.0-RELEASE-p4 #0: Tue Mar 11 13:00:18 CET 2003 root@wl394.wlan.uni-regensburg.de:/usr/src/sys/i386/compile/CUSTOM-ALDEBARAN i386 The System is an IBM Thinkpad T30 CPU is a Pentium-4 1.8ghz >Description: While the ACPI module is loaded the Kernel fails to detect the psm0 device. This is the dmesg output while acpi_module is loaded: Note the wrong allocation of the keyboard controller to the acpi bus! atkbdc0: port 0x64,0x60 irq 1 on acpi0 atkbd0: flags 0x1 irq 1 on atkbdc0 atkbd: the current kbd controller command byte 0047 atkbd: keyboard ID 0x54ab (2) kbd0 at atkbd0 kbd0: atkbd0, AT 101/102 (2), config:0x1, flags:0x3d0000 psm0: unable to allocate IRQ When I disable the loading of the acpi module the keyboard controller is correctly attached to the isa0 bus. And most importandtly the psm0 device is detected correctly. atkbdc0: at port 0x64,0x60 on isa0 atkbd0: flags 0x1 irq 1 on atkbdc0 atkbd: the current kbd controller command byte 0047 atkbd: keyboard ID 0x54ab (2) kbd0 at atkbd0 kbd0: atkbd0, AT 101/102 (2), config:0x1, flags:0x3d0000 psm0: current command byte:0047 psm0: irq 12 on atkbdc0 psm0: model Generic PS/2 mouse, device ID 0-00, 2 buttons psm0: config:00000000, flags:00000000, packet size:3 psm0: syncmask:c0, syncbits:00 >How-To-Repeat: Just boot with and without the acpi module loaded >Fix: Disable acpi support. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Mar 11 12: 0:34 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7936937B401 for ; Tue, 11 Mar 2003 12:00:32 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6E0B743FAF for ; Tue, 11 Mar 2003 12:00:31 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h2BK0VNS093117 for ; Tue, 11 Mar 2003 12:00:31 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h2BK0VXO093116; Tue, 11 Mar 2003 12:00:31 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 51CB837B401 for ; Tue, 11 Mar 2003 11:59:39 -0800 (PST) Received: from gin.myn.rcast.u-tokyo.ac.jp (cognac.myn.rcast.u-tokyo.ac.jp [157.82.66.106]) by mx1.FreeBSD.org (Postfix) with ESMTP id A61CC43FE5 for ; Tue, 11 Mar 2003 11:59:37 -0800 (PST) (envelope-from tamaru@gin.myn.rcast.u-tokyo.ac.jp) Received: from gin.myn.rcast.u-tokyo.ac.jp (localhost [127.0.0.1]) by gin.myn.rcast.u-tokyo.ac.jp (8.12.8/8.12.8) with ESMTP id h2BJxeB2023171 for ; Wed, 12 Mar 2003 04:59:41 +0900 (JST) (envelope-from tamaru@gin.myn.rcast.u-tokyo.ac.jp) Received: (from tamaru@localhost) by gin.myn.rcast.u-tokyo.ac.jp (8.12.8/8.12.8/Submit) id h2BJxejB023170; Wed, 12 Mar 2003 04:59:40 +0900 (JST) Message-Id: <200303111959.h2BJxejB023170@gin.myn.rcast.u-tokyo.ac.jp> Date: Wed, 12 Mar 2003 04:59:40 +0900 (JST) From: Hiroharu Tamaru Reply-To: Hiroharu Tamaru To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: conf/49119: rc.diskless1 fails to mfs_mount dirs Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 49119 >Category: conf >Synopsis: rc.diskless1 fails to mfs_mount dirs >Confidential: no >Severity: critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Mar 11 12:00:30 PST 2003 >Closed-Date: >Last-Modified: >Originator: Hiroharu Tamaru >Release: FreeBSD 4.8-RC i386 >Organization: The University of Tokyo >Environment: System: FreeBSD gin.myn.rcast.u-tokyo.ac.jp 4.8-RC FreeBSD 4.8-RC #0: Tue Mar 4 15:50:48 JST 2003 tamaru@gin.myn.rcast.u-tokyo.ac.jp:/w/4src/i386/w/4src/src/sys/MYN-P6 i386 >Description: Diskless systems fail to boot, because the rc.diskless1 script is lacking a backslash >How-To-Repeat: Boot diskless without setting the md_size_foo knob. >Fix: MFC rev 1.20 of /src/etc/rc.diskless1 >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Mar 11 14:50:10 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 97D9437B401 for ; Tue, 11 Mar 2003 14:50:08 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 41E3043FAF for ; Tue, 11 Mar 2003 14:50:08 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h2BMo7NS056144 for ; Tue, 11 Mar 2003 14:50:07 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h2BMo7IJ056143; Tue, 11 Mar 2003 14:50:07 -0800 (PST) Date: Tue, 11 Mar 2003 14:50:07 -0800 (PST) Message-Id: <200303112250.h2BMo7IJ056143@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Eric Anderson Subject: Re: kern/22594: NFS can't handle asymmetric server routing Reply-To: Eric Anderson Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR kern/22594; it has been noted by GNATS. From: Eric Anderson To: freebsd-gnats-submit@FreeBSD.org, peter.jeremy@alcatel.com.au Cc: Subject: Re: kern/22594: NFS can't handle asymmetric server routing Date: Tue, 11 Mar 2003 16:48:51 -0600 This fix works for the NFS server side, but from the client side, there is no way (that I know of) that allows you to allow this behavior. In other words, if I have a Solaris NFS server (that incorrectly responds on a different interface with the wrong source address), my FreeBSD NFS client hangs. I have submitted a PR for this long ago, and was told "too bad - they didn't follow the specs", but the reality is that the FreeBSD mount command (and amd for that matter) should have a bypass to say "I don't care if it comes back from a different source address, take it anyway" - so it will work. I know it is a security risk, but I should be able to enable that if I'd like. This PR should be re-opened. Eric -- ------------------------------------------------------------------ Eric Anderson Systems Administrator Centaur Technology Attitudes are contagious, is yours worth catching? ------------------------------------------------------------------ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Mar 11 15: 7:34 2003 Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1BD1737B401 for ; Tue, 11 Mar 2003 15:07:33 -0800 (PST) Received: from salmon.maths.tcd.ie (salmon.maths.tcd.ie [134.226.81.11]) by mx1.FreeBSD.org (Postfix) with SMTP id 00A3343FEC for ; Tue, 11 Mar 2003 15:07:32 -0800 (PST) (envelope-from iedowse@maths.tcd.ie) Received: from walton.maths.tcd.ie by salmon.maths.tcd.ie with SMTP id ; 11 Mar 2003 23:07:31 +0000 (GMT) To: Eric Anderson Cc: freebsd-bugs@FreeBSD.org Subject: Re: kern/22594: NFS can't handle asymmetric server routing In-Reply-To: Your message of "Tue, 11 Mar 2003 14:50:07 PST." <200303112250.h2BMo7IJ056143@freefall.freebsd.org> Date: Tue, 11 Mar 2003 23:07:30 +0000 From: Ian Dowse Message-ID: <200303112307.aa08677@salmon.maths.tcd.ie> Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org In message <200303112250.h2BMo7IJ056143@freefall.freebsd.org>, Eric Anderson wr ites: > This fix works for the NFS server side, but from the client side, there > is no way (that I know of) that allows you to allow this behavior. In > other words, if I have a Solaris NFS server (that incorrectly responds > on a different interface with the wrong source address), my FreeBSD NFS > client hangs. I have submitted a PR for this long ago, and was told > "too bad - they didn't follow the specs", but the reality is that the > FreeBSD mount command (and amd for that matter) should have a bypass to > say "I don't care if it comes back from a different source address, take > it anyway" - so it will work. I know it is a security risk, but I > should be able to enable that if I'd like. > > This PR should be re-opened. The "-c" option to mount_nfs should do what you want - does this work for you? I'm not sure if there's a way to do this for amd, though on a recent (less than 6 weeks old) -STABLE you cound try setting the sysctl variable `vfs.nfs.nfs_ip_paranoia' to 0. Ian To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Mar 11 16: 0:51 2003 Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2F53937B401 for ; Tue, 11 Mar 2003 16:00:50 -0800 (PST) Received: from cvs.openbsd.org (cvs.openbsd.org [199.185.137.3]) by mx1.FreeBSD.org (Postfix) with ESMTP id DF62A43F3F for ; Tue, 11 Mar 2003 16:00:48 -0800 (PST) (envelope-from deraadt@cvs.openbsd.org) Received: from cvs.openbsd.org (localhost [127.0.0.1]) by cvs.openbsd.org (8.12.7/8.12.1) with ESMTP id h2C01aTL029674; Tue, 11 Mar 2003 17:01:36 -0700 (MST) Message-Id: <200303120001.h2C01aTL029674@cvs.openbsd.org> To: Robin Carey Cc: bugs@openbsd.org, freebsd-bugs@freebsd.org Subject: Re: ARC4 algorithm In-reply-to: Your message of "Tue, 11 Mar 2003 15:51:27 PST." Date: Tue, 11 Mar 2003 17:01:36 -0700 From: Theo de Raadt Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org > Fact: The ARC4 algorithm is multiply and badly broken. > So why is it still being used in OpenBSD and FreeBSD ? > > Here are two URLs which have free source code for CSPRNGs which are > vastly superior to ARC4: > > http://www.burtleburtle.net/bob/rand/isaac.html > http://wizardsworks.org/~robin/leopard.html > > Anybody who chooses to reply to this email better do so in a polite and > friendly manner. OK, how's this for polite: It is used because it is not nearly as broken as you claim it to be. Perhaps you are reading different books than I am reading. Perhaps you are not aware that the code is using well documented workarounds. Secondly, we are not using replacements that are new and as yet not well researched. Thirdly, we are using ARC4 in places where it has specific values, and I would be utterly shocked to see you find us using it in a place where the flaws matter. Is using ARC4 in our random number generator a security flaw? Please describe exactly how, but when you do, please don't include me in the cc. I must thank you for your detailed analysis showing how we are using it wrong. Forever in your debt, Theo. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Mar 11 16:42:12 2003 Delivered-To: freebsd-bugs@freefall.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CD2DA37B401 for ; Tue, 11 Mar 2003 16:42:10 -0800 (PST) Received: from cocono.com.tw (170-142.kingnet.net.tw [61.57.170.142]) by mx1.FreeBSD.org (Postfix) with ESMTP id 34EA143F93 for ; Tue, 11 Mar 2003 16:42:09 -0800 (PST) (envelope-from ibenz@cocono.com.tw) From: acom@cm.com.tw To: freebsd-bugs@freefall.freebsd.org Subject: =?ISO-8859-1?B?pOmxYKXOq36kV7r0wco=?= Reply-To: com@cc.com.tw Date: 12 Mar 2003 08:40:43 +0800 MIME-Version: 1.0 Content-Type: text/html Content-Transfer-Encoding: 8bit Message-Id: <20030312004209.34EA143F93@mx1.FreeBSD.org> Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org ±z¦³¤U¦C¯S½è¶Ü
«lÃz¡I¡I¾_¾Ù¡I¡I
±z¦³¤U¦C¯S½è¶Ü¡H
1.¨Æ·~¥ø¹Ï¤ß
2.¤£¥Ì¤ß¥­¤Z
3.¤£º¡©ó²{ª¬
4.«i©ó­±¹ï¥¼¨Ó
¥u­n±z¾Ö¦³¤W¦C¯S½è¡A§Ú­Ì±N§K¶O°ö°V±z©Ò¦³¬ÛÃö§Þ¾¯à¤O¡A´£¨Ñ±zµ²¦Xºô¸ô¡B¹êÅé¡A­¹¦ç¦í¦æ¡B ¦Y³Üª±¼Öªº³q¸ô¨Æ·~¡IÂI¿ï§Ú¡A±z´N¥i¥H±o¨ì¡I
ps:±N·|¦³±M¤H¬°±z¸Ô²Ó¸Ñ»¡³á¡I
To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Mar 11 21:20: 5 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7BFFD37B401 for ; Tue, 11 Mar 2003 21:20:03 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7FF3643F75 for ; Tue, 11 Mar 2003 21:20:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h2C5K2NS083234 for ; Tue, 11 Mar 2003 21:20:02 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h2C5K2Hb083233; Tue, 11 Mar 2003 21:20:02 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5D32637B401 for ; Tue, 11 Mar 2003 21:16:45 -0800 (PST) Received: from alumni.cse.ucsc.edu (alumni.cse.ucsc.edu [128.114.63.28]) by mx1.FreeBSD.org (Postfix) with ESMTP id D723743FA3 for ; Tue, 11 Mar 2003 21:16:44 -0800 (PST) (envelope-from haining@alumni.cse.ucsc.edu) Received: from alumni.cse.ucsc.edu (localhost [127.0.0.1]) by alumni.cse.ucsc.edu (8.12.5/8.12.5) with ESMTP id h2C5Gi30022762 for ; Tue, 11 Mar 2003 21:16:44 -0800 (PST) Received: from localhost (haining@localhost) by alumni.cse.ucsc.edu (8.12.5/8.12.5/Submit) with ESMTP id h2C5GiiA022759 for ; Tue, 11 Mar 2003 21:16:44 -0800 (PST) Message-Id: Date: Tue, 11 Mar 2003 21:16:43 -0800 (PST) From: Ted Haining To: FreeBSD-gnats-submit@FreeBSD.org Subject: i386/49945: problem with gettimeofday() for FreeBSD 5.0 with AMD K6/350 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 49945 >Category: i386 >Synopsis: problem with gettimeofday() for FreeBSD 5.0 with AMD >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Mar 11 21:20:02 PST 2003 >Closed-Date: >Last-Modified: >Originator: Ted Haining >Release: FreeBSD 5.0-RELEASE-p4 i386 >Organization: >Environment: System: FreeBSD workstation.haining.net 5.0-RELEASE-p4 FreeBSD 5.0-RELEASE-p4 #0: Mon Mar 10 05:44:21 PST 2003 root@workstation.haining.net:/usr/obj/usr/src/sys/GENERIC i386 The system is an AMD K6/350 in an ASUS P5A ATX 512K ALI motherboard with 256MB of RAM. Kernel is a straight compilation from source with no modifications to the GENERIC config file. >Description: Multiple system time calls such as gettimeofday show that system time is advancing at approximately double with wall clock rate. Output of test described below produces: Tue Mar 11 09:25:12 PST 2003 Tue Mar 11 09:25:22 PST 2003 Doubling the sleep value to 10 seconds produces: Tue Mar 11 09:27:08 PST 2003 Tue Mar 11 09:27:28 PST 2003 Verification of the sleep time to a wristwatch shows the sleep time to be approximately correct. >How-To-Repeat: Run the following from a command line shell such as /bin/sh: date; sleep 5; date >Fix: >Release-Note: >Audit-Trail: >Unformatted: K6/350 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Tue Mar 11 23:54: 6 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A355437B401; Tue, 11 Mar 2003 23:54:05 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 395E243FBF; Tue, 11 Mar 2003 23:54:05 -0800 (PST) (envelope-from roam@FreeBSD.org) Received: from freefall.freebsd.org (roam@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h2C7s5NS022766; Tue, 11 Mar 2003 23:54:05 -0800 (PST) (envelope-from roam@freefall.freebsd.org) Received: (from roam@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h2C7s550022762; Tue, 11 Mar 2003 23:54:05 -0800 (PST) Date: Tue, 11 Mar 2003 23:54:05 -0800 (PST) From: Peter Pentchev Message-Id: <200303120754.h2C7s550022762@freefall.freebsd.org> To: roam@FreeBSD.org, freebsd-bugs@FreeBSD.org, jhay@FreeBSD.org Subject: Re: conf/49119: rc.diskless1 fails to mfs_mount dirs Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: rc.diskless1 fails to mfs_mount dirs Responsible-Changed-From-To: freebsd-bugs->jhay Responsible-Changed-By: roam Responsible-Changed-When: Tue Mar 11 23:53:28 PST 2003 Responsible-Changed-Why: John Hay committed rev. 1.20; John, should this go into -stable before 4.8 is released? http://www.freebsd.org/cgi/query-pr.cgi?pr=49119 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 12 1:10: 7 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 44C7537B404 for ; Wed, 12 Mar 2003 01:10:03 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D5ADC43FCB for ; Wed, 12 Mar 2003 01:10:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h2C9A1NS043754 for ; Wed, 12 Mar 2003 01:10:01 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h2C9A12a043753; Wed, 12 Mar 2003 01:10:01 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 35B9137B401 for ; Wed, 12 Mar 2003 01:08:29 -0800 (PST) Received: from cirb503493.alcatel.com.au (c18609.belrs1.nsw.optusnet.com.au [210.49.80.204]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8E96043F93 for ; Wed, 12 Mar 2003 01:08:26 -0800 (PST) (envelope-from peterjeremy@optushome.com.au) Received: from cirb503493.alcatel.com.au (localhost.alcatel.com.au [127.0.0.1]) by cirb503493.alcatel.com.au (8.12.6/8.12.5) with ESMTP id h2C98OiM006832; Wed, 12 Mar 2003 20:08:25 +1100 (EST) (envelope-from jeremyp@cirb503493.alcatel.com.au) Received: (from jeremyp@localhost) by cirb503493.alcatel.com.au (8.12.6/8.12.5/Submit) id h2C98N5Z006831; Wed, 12 Mar 2003 20:08:23 +1100 (EST) Message-Id: <200303120908.h2C98N5Z006831@cirb503493.alcatel.com.au> Date: Wed, 12 Mar 2003 20:08:23 +1100 (EST) From: Peter Jeremy To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: bin/49951: [patch] hcreate(3) man page unclear Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 49951 >Category: bin >Synopsis: [patch] hcreate(3) man page unclear >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Wed Mar 12 01:10:01 PST 2003 >Closed-Date: >Last-Modified: >Originator: Peter Jeremy >Release: FreeBSD 4.6-STABLE i386 >Organization: n/a >Environment: System: FreeBSD cirb503493.alcatel.com.au 4.6-STABLE FreeBSD 4.6-STABLE #0: Mon Jul 22 21:45:58 EST 2002 root@cirb503493.alcatel.com.au:/usr/obj/usr/src/sys/pj1592 i386 The man page is identical in 5-CURRENT >Description: The description of hdestroy() states that the search table is destroyed but is vague about the disposition of the table elements. The actual implementation of hdestroy() calls free(ie->ent.key) but not on ie->ent.data. This implies that the key (but not the data) passed to hsearch(..., ENTER) should be malloc()d. The sample program is also misleading. Whilst it is safe as is, it is incompatible with hdestroy() and could lead the user to conclude that allocating keys from an static buffer is appropriate in all cases (ie, even when hdestroy() is called). The attached patch explicitly states that the key (but not the data) is free()d by hdestroy() and should therefore be malloc()d. The sample program is updated to passed heap-allocated keys and call hdestroy(). >How-To-Repeat: Code inspection. Adding an hdestroy() to the sample program should cause it to blow up. >Fix: Index: hcreate.3 =================================================================== RCS file: /usr/ncvs/src/lib/libc/stdlib/hcreate.3,v retrieving revision 1.2.2.1 diff -u -r1.2.2.1 hcreate.3 --- hcreate.3 2 Oct 2001 11:22:56 -0000 1.2.2.1 +++ hcreate.3 12 Mar 2003 08:31:55 -0000 @@ -44,6 +44,12 @@ After the call to .Fn hdestroy , the data can no longer be considered accessible. +The +.Fn hdestroy +function calls +.Xr free 3 +for each comparison key in the search table +but not the data item associated with the key. .Pp The .Fn hsearch @@ -88,6 +94,20 @@ indicated by the return of a .Dv NULL pointer. +.Pp +The comparison key (passed to +.Fn hsearch +as +.Fa item.key ) +must be allocated using +.Xr malloc 3 +if +.Fa action +is +.Dv ENTER +and +.Fn hdestroy +is called. .Sh RETURN VALUES The .Fn hcreate @@ -132,6 +152,7 @@ #include #include #include +#include struct info { /* This is the info stored in the table */ int age, room; /* other than the key. */ @@ -142,9 +163,8 @@ int main(void) { - char string_space[NUM_EMPL*20]; /* Space to store strings. */ + char str[BUFSIZ]; /* Space to read string */ struct info info_space[NUM_EMPL]; /* Space to store employee info. */ - char *str_ptr = string_space; /* Next space in string_space. */ struct info *info_ptr = info_space; /* Next space in info_space. */ ENTRY item; ENTRY *found_item; /* Name to look for in table. */ @@ -154,12 +174,11 @@ /* Create table; no error checking is performed. */ (void) hcreate(NUM_EMPL); - while (scanf("%s%d%d", str_ptr, &info_ptr->age, + while (scanf("%s%d%d", str, &info_ptr->age, &info_ptr->room) != EOF && i++ < NUM_EMPL) { /* Put information in structure, and structure in item. */ - item.key = str_ptr; + item.key = strdup(str); item.data = info_ptr; - str_ptr += strlen(str_ptr) + 1; info_ptr++; /* Put item into table. */ (void) hsearch(item, ENTER); @@ -177,6 +196,7 @@ } else (void)printf("no such employee %s\en", name_to_find); } + hdestroy(); return 0; } .Ed >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 12 2:39:42 2003 Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F322937B401; Wed, 12 Mar 2003 02:39:41 -0800 (PST) Received: from zibbi.icomtek.csir.co.za (zibbi.icomtek.csir.co.za [146.64.24.58]) by mx1.FreeBSD.org (Postfix) with ESMTP id 316EC43FA3; Wed, 12 Mar 2003 02:39:38 -0800 (PST) (envelope-from jhay@zibbi.icomtek.csir.co.za) Received: from zibbi.icomtek.csir.co.za (localhost [IPv6:::1]) by zibbi.icomtek.csir.co.za (8.12.8/8.12.6) with ESMTP id h2CAdX80086227; Wed, 12 Mar 2003 12:39:33 +0200 (SAST) (envelope-from jhay@zibbi.icomtek.csir.co.za) Received: (from jhay@localhost) by zibbi.icomtek.csir.co.za (8.12.8/8.12.6/Submit) id h2CAdWZo086226; Wed, 12 Mar 2003 12:39:32 +0200 (SAST) Date: Wed, 12 Mar 2003 12:39:32 +0200 From: John Hay To: Peter Pentchev Cc: freebsd-bugs@FreeBSD.org, jhay@FreeBSD.org Subject: Re: conf/49119: rc.diskless1 fails to mfs_mount dirs Message-ID: <20030312103932.GA86066@zibbi.icomtek.csir.co.za> References: <200303120754.h2C7s550022762@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200303120754.h2C7s550022762@freefall.freebsd.org> User-Agent: Mutt/1.4i Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org > John Hay committed rev. 1.20; John, should this go into -stable > before 4.8 is released? > > http://www.freebsd.org/cgi/query-pr.cgi?pr=49119 I think it should go into -stable but it is a bit late in the release cycle and maybe not crittical enough to go in before 4.8. John -- John Hay -- John.Hay@icomtek.csir.co.za / jhay@FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 12 4: 6: 9 2003 Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DB6F937B401; Wed, 12 Mar 2003 04:06:08 -0800 (PST) Received: from heimsnet.is (xs.heimsnet.is [193.4.194.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id CC01B43F93; Wed, 12 Mar 2003 04:06:07 -0800 (PST) (envelope-from keila@mail.com) Received: from [213.220.112.35] (HELO mail.heimsnet.is) by heimsnet.is (CommuniGate Pro SMTP 4.0.2) with SMTP id 10827951; Wed, 12 Mar 2003 12:06:05 +0000 Date: 12 Mar 2003 12:07:04 From: keila@mail.com Subject: Sigfried To: keila@mail.com Message-ID: Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org http://www.hn.is/idx I hope the site will not shock you :-) Odinn Thor To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 12 5:30:24 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3561B37B404 for ; Wed, 12 Mar 2003 05:30:13 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D7B3243FAF for ; Wed, 12 Mar 2003 05:30:10 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h2CDUANS069029 for ; Wed, 12 Mar 2003 05:30:10 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h2CDUA85069028; Wed, 12 Mar 2003 05:30:10 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 61B6A37B401 for ; Wed, 12 Mar 2003 05:20:50 -0800 (PST) Received: from castle.jp.FreeBSD.org (castle.jp.FreeBSD.org [210.226.20.15]) by mx1.FreeBSD.org (Postfix) with ESMTP id A2AAB43FA3 for ; Wed, 12 Mar 2003 05:20:48 -0800 (PST) (envelope-from kogane@jp.FreeBSD.org) Received: (from kogane@localhost) by castle.jp.FreeBSD.org (8.11.6+3.4W/8.11.3) id h2CDKlL31889; Wed, 12 Mar 2003 22:20:47 +0900 (JST) (envelope-from kogane) Message-Id: <200303080155.h281tGD09709.chi@bd.mbn.or.jp> Date: Mon, 10 Mar 2003 07:43:19 +0900 From: Chiharu Shibata Reply-To: Chiharu Shibata To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: kern/49957: CRC32 generator should be the common routine Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 49957 >Category: kern >Synopsis: CRC32 generator should be the common routine >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Mar 12 05:30:10 PST 2003 >Closed-Date: >Last-Modified: >Originator: Chiharu Shibata >Release: any >Organization: Japan FreeBSD Users Group >Environment: Using NIC for ethernet >Description: Many NIC needs CRC32 generator to receive multicast packets, and each NIC driver has it locally. We should make the common routine of CRC32 generator. (NetBSD already did so.) >How-To-Repeat: none >Fix: Here is the patch of the common CRC32 generator routines. The table-driven version of big-endian is contributed by Seishi Hiragushi. --- sys/net/if_ethersubr.c 2003/02/02 11:29:47 1.2 +++ if_ethersubr.c 2003/03/07 07:36:36 @@ -49,6 +49,7 @@ #include #include #include +#include #include #include @@ -914,3 +915,95 @@ } } +#if 0 +#define CRC32_POLY_BE 0x04c11db7UL +#define CRC32_POLY_LE 0xedb88320UL + +/* + * These are for reference. We have a table-driven version + * of the crc32 generator, which is faster than the double-loop. + */ +u_int32_t +ether_crc32_be(const u_int8_t *buf, size_t len) +{ + u_int32_t crc = ~0; + u_int8_t b; + int carry, i, j; + + for (i = 0; i < len; ++i) { + b = *buf++; + for (j = 8; --j >= 0;) { + carry = ((crc & 0x80000000) ? 1 : 0) ^ (b & 0x01); + crc <<= 1; + b >>= 1; + if (carry) + crc ^= CRC32_POLY_BE; + } + } + return crc; +} + +u_int32_t +ether_crc32_le(const u_int8_t *buf, size_t len) +{ + u_int32_t crc = ~0; + u_int8_t b; + int carry, i, j; + + for (i = 0; i < len; ++i) { + b = *buf++; + for (j = 8; --j >= 0;) { + carry = ((crc & 0x01) ? 1 : 0) ^ (b & 0x01); + crc >>= 1; + b >>= 1; + if (carry) + crc ^= CRC32_POLY_LE; + } + } + return crc; +} +#else +u_int32_t +ether_crc32_be(const u_int8_t *buf, size_t len) +{ + u_int32_t crc = ~0; + int i; + + static u_int8_t cnv[] = { + 0, 8, 4, 12, 2, 10, 6, 14, 1, 9, 5, 13, 3, 11, 7, 15, + }; + + static const u_int32_t crctab[] = { + 0x00000000UL, 0x04c11db7UL, 0x09823b6eUL, 0x0d4326d9UL, + 0x130476dcUL, 0x17c56b6bUL, 0x1a864db2UL, 0x1e475005UL, + 0x2608edb8UL, 0x22c9f00fUL, 0x2f8ad6d6UL, 0x2b4bcb61UL, + 0x350c9b64UL, 0x31cd86d3UL, 0x3c8ea00aUL, 0x384fbdbdUL, + }; + + for (i = 0; i < len; ++i) { + crc = (crc << 4) ^ crctab[(crc >> 28) ^ cnv[*buf & 0xf]]; + crc = (crc << 4) ^ crctab[(crc >> 28) ^ cnv[*buf++ >>4]]; + } + return crc; +} + +u_int32_t +ether_crc32_le(const u_int8_t *buf, size_t len) +{ + u_int32_t crc = ~0; + int i; + static const u_int32_t crctab[] = { + 0x00000000UL, 0x1db71064UL, 0x3b6e20c8UL, 0x26d930acUL, + 0x76dc4190UL, 0x6b6b51f4UL, 0x4db26158UL, 0x5005713cUL, + 0xedb88320UL, 0xf00f9344UL, 0xd6d6a3e8UL, 0xcb61b38cUL, + 0x9b64c2b0UL, 0x86d3d2d4UL, 0xa00ae278UL, 0xbdbdf21cUL, + }; + + for (i = 0; i < len; ++i) { + crc ^= *buf++; + crc = (crc >> 4) ^ crctab[crc & 0xf]; + crc = (crc >> 4) ^ crctab[crc & 0xf]; + } + return crc; +} +#endif --- sys/net/if_var.h 2003/02/02 11:44:23 1.1 +++ if_var.h 2003/02/02 11:49:22 @@ -74,6 +74,9 @@ #endif #include /* get TAILQ macros */ +#ifdef _KERNEL +#include /* u_int* */ +#endif TAILQ_HEAD(ifnethead, ifnet); /* we use TAILQs so that the order of */ TAILQ_HEAD(ifaddrhead, ifaddr); /* instantiation is preserved in the list */ @@ -332,6 +335,8 @@ struct mbuf *, struct sockaddr *, struct rtentry *)); int ether_output_frame __P((struct ifnet *, struct mbuf *)); int ether_ioctl __P((struct ifnet *, int, caddr_t)); +u_int32_t ether_crc32_be __P((const u_int8_t *, size_t)); +u_int32_t ether_crc32_le __P((const u_int8_t *, size_t)); int if_addmulti __P((struct ifnet *, struct sockaddr *, struct ifmultiaddr **)); %%%%%%%%%%%%%%%% In addition, the follows are sample patches for NIC driver. Many NIC drivers need to modify like this. --- sys/pci/if_dc.c 2003/02/02 12:26:40 1.1 +++ if_dc.c 2003/02/02 12:52:19 @@ -229,7 +229,6 @@ static void dc_setcfg __P((struct dc_softc *, int)); static u_int32_t dc_crc_le __P((struct dc_softc *, caddr_t)); -static u_int32_t dc_crc_be __P((caddr_t)); static void dc_setfilt_21143 __P((struct dc_softc *)); static void dc_setfilt_asix __P((struct dc_softc *)); static void dc_setfilt_admtek __P((struct dc_softc *)); @@ -901,7 +900,6 @@ return; } -#define DC_POLY 0xEDB88320 #define DC_BITS_512 9 #define DC_BITS_128 7 #define DC_BITS_64 6 @@ -910,15 +908,10 @@ struct dc_softc *sc; caddr_t addr; { - u_int32_t idx, bit, data, crc; + u_int32_t crc; /* Compute CRC for the address value. */ - crc = 0xFFFFFFFF; /* initial value */ - - for (idx = 0; idx < 6; idx++) { - for (data = *addr++, bit = 0; bit < 8; bit++, data >>= 1) - crc = (crc >> 1) ^ (((crc ^ data) & 1) ? DC_POLY : 0); - } + crc = ether_crc32_le(addr, ETHER_ADDR_LEN); /* * The hash table on the PNIC II and the MX98715AEC-C/D/E @@ -937,30 +930,7 @@ /* * Calculate CRC of a multicast group address, return the lower 6 bits. */ -static u_int32_t dc_crc_be(addr) - caddr_t addr; -{ - u_int32_t crc, carry; - int i, j; - u_int8_t c; - - /* Compute CRC for the address value. */ - crc = 0xFFFFFFFF; /* initial value */ - - for (i = 0; i < 6; i++) { - c = *(addr + i); - for (j = 0; j < 8; j++) { - carry = ((crc & 0x80000000) ? 1 : 0) ^ (c & 0x01); - crc <<= 1; - c >>= 1; - if (carry) - crc = (crc ^ 0x04c11db6) | carry; - } - } - - /* return the filter bit position */ - return((crc >> 26) & 0x0000003F); -} +#define dc_crc_be(addr) ((ether_crc32_be((addr), ETHER_ADDR_LEN) >> 26) & 0x3F) /* * 21143-style RX filter setup routine. Filter programming is done by --- sys/i386/isa/if_lnc.c 2003/02/02 12:54:23 1.1 +++ if_lnc.c 2003/02/02 12:50:57 @@ -218,27 +218,11 @@ return (inw(sc->bdp)); } -static __inline u_long -ether_crc(const u_char *ether_addr) -{ -#define POLYNOMIAL 0xEDB88320UL - u_char i, j, addr; - u_int crc = 0xFFFFFFFFUL; - - for (i = 0; i < ETHER_ADDR_LEN; i++) { - addr = *ether_addr++; - for (j = 0; j < MULTICAST_FILTER_LEN; j++) { - crc = (crc >> 1) ^ (((crc ^ addr) & 1) ? POLYNOMIAL : 0); - addr >>= 1; - } - } - return crc; -#undef POLYNOMIAL -} - /* * Set up the logical address filter for multicast packets */ +#define ether_crc(ep) (ether_crc32_le((ep), ETHER_ADDR_LEN) >> 26) + static __inline void lnc_setladrf(struct lnc_softc *sc) { @@ -266,8 +250,7 @@ if (ifma->ifma_addr->sa_family != AF_LINK) continue; - index = ether_crc(LLADDR((struct sockaddr_dl *)ifma->ifma_addr)) - >> 26; + index = ether_crc(LLADDR((struct sockaddr_dl *)ifma->ifma_addr)); sc->init_block->ladrf[index >> 3] |= 1 << (index & 7); } } --- sys/dev/ed/if_ed.c 2003/02/02 11:12:50 1.1 +++ if_ed.c 2003/02/02 11:12:53 @@ -102,7 +102,6 @@ static void ed_setrcr __P((struct ed_softc *)); -static u_int32_t ds_crc __P((u_char *ep)); /* * Interrupt conversion table for WD/SMC ASIC/83C584 @@ -3398,35 +3397,11 @@ } /* - * Compute crc for ethernet address - */ -static u_int32_t -ds_crc(ep) - u_char *ep; -{ -#define POLYNOMIAL 0x04c11db6 - register u_int32_t crc = 0xffffffff; - register int carry, i, j; - register u_char b; - - for (i = 6; --i >= 0;) { - b = *ep++; - for (j = 8; --j >= 0;) { - carry = ((crc & 0x80000000) ? 1 : 0) ^ (b & 0x01); - crc <<= 1; - b >>= 1; - if (carry) - crc = (crc ^ POLYNOMIAL) | carry; - } - } - return crc; -#undef POLYNOMIAL -} - -/* * Compute the multicast address filter from the * list of multicast addresses we need to listen to. */ +#define ds_crc(ep) (ether_crc32_be((ep), ETHER_ADDR_LEN) >> 26) + static void ds_getmcaf(sc, mcaf) struct ed_softc *sc; @@ -3443,8 +3418,7 @@ ifma = ifma->ifma_link.le_next) { if (ifma->ifma_addr->sa_family != AF_LINK) continue; - index = ds_crc(LLADDR((struct sockaddr_dl *)ifma->ifma_addr)) - >> 26; + index = ds_crc(LLADDR((struct sockaddr_dl *)ifma->ifma_addr)); af[index >> 3] |= 1 << (index & 7); } } --- sys/dev/fe/if_fe.c 2003/02/02 12:48:36 1.1 +++ if_fe.c 2003/02/02 12:51:52 @@ -2085,34 +2085,11 @@ } /* - * Compute hash value for an Ethernet address - */ -static int -fe_hash ( u_char * ep ) -{ -#define FE_HASH_MAGIC_NUMBER 0xEDB88320L - - u_long hash = 0xFFFFFFFFL; - int i, j; - u_char b; - u_long m; - - for ( i = ETHER_ADDR_LEN; --i >= 0; ) { - b = *ep++; - for ( j = 8; --j >= 0; ) { - m = hash; - hash >>= 1; - if ( ( m ^ b ) & 1 ) hash ^= FE_HASH_MAGIC_NUMBER; - b >>= 1; - } - } - return ( ( int )( hash >> 26 ) ); -} - -/* * Compute the multicast address filter from the * list of multicast addresses we need to listen to. */ +#define fe_hash(ep) (ether_crc32_le((ep), ETHER_ADDR_LEN) >> 26) + static struct fe_filter fe_mcaf ( struct fe_softc *sc ) { --- sys/dev/usb/if_cue.c 2003/02/02 02:18:59 1.1 +++ if_cue.c 2003/02/02 02:22:48 @@ -117,7 +117,6 @@ Static void cue_shutdown __P((device_t)); Static void cue_setmulti __P((struct cue_softc *)); -Static u_int32_t cue_crc __P((caddr_t)); Static void cue_reset __P((struct cue_softc *)); Static int csr_read_1 __P((struct cue_softc *, int)); @@ -348,24 +347,10 @@ return(0); } -#define CUE_POLY 0xEDB88320 #define CUE_BITS 9 -Static u_int32_t cue_crc(addr) - caddr_t addr; -{ - u_int32_t idx, bit, data, crc; - - /* Compute CRC for the address value. */ - crc = 0xFFFFFFFF; /* initial value */ - - for (idx = 0; idx < 6; idx++) { - for (data = *addr++, bit = 0; bit < 8; bit++, data >>= 1) - crc = (crc >> 1) ^ (((crc ^ data) & 1) ? CUE_POLY : 0); - } - - return (crc & ((1 << CUE_BITS) - 1)); -} +#define cue_crc(addr) (ether_crc32_le((addr), ETHER_ADDR_LEN) \ + & ((1 << CUE_BITS) - 1)) Static void cue_setmulti(sc) struct cue_softc *sc; >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 12 5:40:43 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2135437B401; Wed, 12 Mar 2003 05:40:42 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 69EF843FAF; Wed, 12 Mar 2003 05:40:41 -0800 (PST) (envelope-from dwmalone@FreeBSD.org) Received: from freefall.freebsd.org (dwmalone@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h2CDefNS072477; Wed, 12 Mar 2003 05:40:41 -0800 (PST) (envelope-from dwmalone@freefall.freebsd.org) Received: (from dwmalone@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h2CDef3l072467; Wed, 12 Mar 2003 05:40:41 -0800 (PST) Date: Wed, 12 Mar 2003 05:40:41 -0800 (PST) From: David Malone Message-Id: <200303121340.h2CDef3l072467@freefall.freebsd.org> To: haining@alumni.cse.ucsc.edu, dwmalone@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: i386/49945: problem with gettimeofday() for FreeBSD 5.0 with AMD Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: problem with gettimeofday() for FreeBSD 5.0 with AMD State-Changed-From-To: open->closed State-Changed-By: dwmalone State-Changed-When: Wed Mar 12 05:39:36 PST 2003 State-Changed-Why: This PR is almost certainly a duplicate of 48020. Please have a look at my follow up to: http://www.FreeBSD.org/cgi/query-pr.cgi?pr=48020 for a possible solution to this problem. David. http://www.freebsd.org/cgi/query-pr.cgi?pr=49945 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 12 5:42:45 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6073537B401; Wed, 12 Mar 2003 05:42:44 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id F2D1943FA3; Wed, 12 Mar 2003 05:42:43 -0800 (PST) (envelope-from dwmalone@FreeBSD.org) Received: from freefall.freebsd.org (dwmalone@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h2CDghNS079555; Wed, 12 Mar 2003 05:42:43 -0800 (PST) (envelope-from dwmalone@freefall.freebsd.org) Received: (from dwmalone@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h2CDghEP079551; Wed, 12 Mar 2003 05:42:43 -0800 (PST) Date: Wed, 12 Mar 2003 05:42:43 -0800 (PST) From: David Malone Message-Id: <200303121342.h2CDghEP079551@freefall.freebsd.org> To: dwmalone@FreeBSD.org, freebsd-bugs@FreeBSD.org, gad@FreeBSD.org Subject: Re: i386/49023: Mod to LPD (printjob.c) to pass source filename to input filters Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Mod to LPD (printjob.c) to pass source filename to input filters Responsible-Changed-From-To: freebsd-bugs->gad Responsible-Changed-By: dwmalone Responsible-Changed-When: Wed Mar 12 05:42:27 PST 2003 Responsible-Changed-Why: One for the lpd maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=49023 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 12 5:44:58 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E9F7D37B401; Wed, 12 Mar 2003 05:44:56 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4ACE543FD7; Wed, 12 Mar 2003 05:44:56 -0800 (PST) (envelope-from dwmalone@FreeBSD.org) Received: from freefall.freebsd.org (dwmalone@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h2CDiuNS079641; Wed, 12 Mar 2003 05:44:56 -0800 (PST) (envelope-from dwmalone@freefall.freebsd.org) Received: (from dwmalone@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h2CDiuFg079637; Wed, 12 Mar 2003 05:44:56 -0800 (PST) Date: Wed, 12 Mar 2003 05:44:56 -0800 (PST) From: David Malone Message-Id: <200303121344.h2CDiuFg079637@freefall.freebsd.org> To: dwmalone@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/49048: [patch] ctm(1) does not check parent directory of objects Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: [patch] ctm(1) does not check parent directory of objects State-Changed-From-To: open->feedback State-Changed-By: dwmalone State-Changed-When: Wed Mar 12 05:44:32 PST 2003 State-Changed-Why: Put this PR into the feedback state, while Peter works on a new patch. http://www.freebsd.org/cgi/query-pr.cgi?pr=49048 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 12 6: 0:21 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AF4A937B401 for ; Wed, 12 Mar 2003 06:00:19 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id CB06543FCB for ; Wed, 12 Mar 2003 06:00:18 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h2CE0INS083864 for ; Wed, 12 Mar 2003 06:00:18 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h2CE0IQK083863; Wed, 12 Mar 2003 06:00:18 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A2F5837B401 for ; Wed, 12 Mar 2003 05:51:22 -0800 (PST) Received: from vlad.ru (mail.vlad.ru [212.107.220.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8A1D243F93 for ; Wed, 12 Mar 2003 05:51:21 -0800 (PST) (envelope-from root@vlad.ru) Received: from root by vlad.ru with local (Exim 4.10) id 18t6da-000FW3-00 for FreeBSD-gnats-submit@freebsd.org; Wed, 12 Mar 2003 23:51:18 +1000 Message-Id: Date: Wed, 12 Mar 2003 23:51:18 +1000 From: Mikhalych Reply-To: Mikhalych To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: bin/49959: ipfw tee port rule skips parsing next rules Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 49959 >Category: bin >Synopsis: ipfw tee port rule skips parsing next rules >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Mar 12 06:00:17 PST 2003 >Closed-Date: >Last-Modified: >Originator: Sergey Mikhalych >Release: FreeBSD 4.7-RELEASE i386 >Organization: OAO Dalsvyaz >Environment: System: FreeBSD mail.vlad.ru 4.7-RELEASE FreeBSD 4.7-RELEASE #0: Sun Nov 24 01:13:21 VLAT 2002 mich@relay.vlad.ru:/usr/src/sys/compile/MAIL i386 >Description: For a traffic count I can copy all packets coming to my network interface xl0 with `ipfw tee` option to some port, for example 8888, after this rule all this packets must be pass next ipfw rules (like `ipfw count` option). Problem: `ipfw tee port` option brakes this order, packets is marked as accepted by rule (like `ipfw allow` option). Example: 00001 143 22387 tee 8888 ip from any to any in recv xl0 00002 120 30373 tee 8888 ip from any to any out xmit xl0 00100 0 0 allow tcp from 212.107.192.0/19 to 212.107.200.82 22 00110 0 0 allow tcp from 212.107.200.82 22 to 212.107.192.0/19 00200 0 0 reset tcp from any to 212.107.200.82 22 00300 0 0 reset tcp from any to 212.107.200.80/28 113 00500 0 0 reset tcp from any to 212.107.200.82 3306 00501 0 0 reset tcp from any to 212.107.200.83 3306 65535 258 35124 allow ip from any to any Telnet to denied 22, 113, 3306 ports is acceptable! Using ipfw tee is unsecure :( >How-To-Repeat: You can try add `tee port` option before any of your rules. >Fix: Add reset/deny rules BEFORE tee option, but this dropped packets will be lost for accounting/copy by tee. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 12 6:20:29 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8860837B401; Wed, 12 Mar 2003 06:20:28 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2849843FBF; Wed, 12 Mar 2003 06:20:28 -0800 (PST) (envelope-from dwmalone@FreeBSD.org) Received: from freefall.freebsd.org (dwmalone@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h2CEKSNS092185; Wed, 12 Mar 2003 06:20:28 -0800 (PST) (envelope-from dwmalone@freefall.freebsd.org) Received: (from dwmalone@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h2CEKRpF092181; Wed, 12 Mar 2003 06:20:27 -0800 (PST) Date: Wed, 12 Mar 2003 06:20:27 -0800 (PST) From: David Malone Message-Id: <200303121420.h2CEKRpF092181@freefall.freebsd.org> To: dwmalone@FreeBSD.org, freebsd-bugs@FreeBSD.org, dwmalone@FreeBSD.org Subject: Re: bin/49951: [patch] hcreate(3) man page unclear Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: [patch] hcreate(3) man page unclear Responsible-Changed-From-To: freebsd-bugs->dwmalone Responsible-Changed-By: dwmalone Responsible-Changed-When: Wed Mar 12 06:18:30 PST 2003 Responsible-Changed-Why: I've committed the patch to -current. Take the PR as a reminder to MFC it. http://www.freebsd.org/cgi/query-pr.cgi?pr=49951 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 12 8:50: 9 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D043037B401 for ; Wed, 12 Mar 2003 08:50:06 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D0DA243F85 for ; Wed, 12 Mar 2003 08:50:05 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h2CGo5NS096199 for ; Wed, 12 Mar 2003 08:50:05 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h2CGo5aX096198; Wed, 12 Mar 2003 08:50:05 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3C5F637B401 for ; Wed, 12 Mar 2003 08:43:59 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D677043F85 for ; Wed, 12 Mar 2003 08:43:58 -0800 (PST) (envelope-from jhb@FreeBSD.org) Received: from freefall.freebsd.org (jhb@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h2CGhwNS091969 for ; Wed, 12 Mar 2003 08:43:58 -0800 (PST) (envelope-from jhb@freefall.freebsd.org) Received: (from jhb@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h2CGhwr4091918; Wed, 12 Mar 2003 08:43:58 -0800 (PST) Message-Id: <200303121643.h2CGhwr4091918@freefall.freebsd.org> Date: Wed, 12 Mar 2003 08:43:58 -0800 (PST) From: John Baldwin Reply-To: John Baldwin To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: kern/49963: Lack of error return for some proc sysctl's Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 49963 >Category: kern >Synopsis: Lack of error return for some proc sysctl's >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Mar 12 08:50:05 PST 2003 >Closed-Date: >Last-Modified: >Originator: John Baldwin >Release: FreeBSD 5.0-CURRENT i386 >Organization: >Environment: System: FreeBSD laptop.baldwin.cx 5.0-CURRENT FreeBSD 5.0-CURRENT #799: Mon Mar 10 17:09:27 EST 2003 root@laptop.baldwin.cx:/usr/src/sys/i386/compile/LAPTOP i386 >Description: In /sys/kern/kern_proc.c sysctl_kern_proc() and sysctl_kern_proc_args() the functions return 0 (success) if we fail to find a process asked for by a specific PID or if p_cansee() fails for the process. It would seem more intuitive to return ESRCH in those cases instead. >How-To-Repeat: >Fix: Index: kern_proc.c =================================================================== RCS file: /home/ncvs/src/sys/kern/kern_proc.c,v retrieving revision 1.174 diff -u -r1.174 kern_proc.c --- kern_proc.c 12 Mar 2003 16:14:55 -0000 1.174 +++ kern_proc.c 12 Mar 2003 16:43:04 -0000 @@ -865,10 +865,10 @@ return (EINVAL); p = pfind((pid_t)name[0]); if (!p) - return (0); + return (ESRCH); if (p_cansee(curthread, p)) { PROC_UNLOCK(p); - return (0); + return (ESRCH); } error = sysctl_out_proc(p, req, 0); return (error); @@ -1033,11 +1033,11 @@ p = pfind((pid_t)name[0]); if (!p) - return (0); + return (ESRCH); if ((!ps_argsopen) && p_cansee(curthread, p)) { PROC_UNLOCK(p); - return (0); + return (ESRCH); } if (req->newptr && curproc != p) { >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 12 9:25: 7 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4F1BC37B404; Wed, 12 Mar 2003 09:25:06 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7BE8343FDD; Wed, 12 Mar 2003 09:25:05 -0800 (PST) (envelope-from dwmalone@FreeBSD.org) Received: from freefall.freebsd.org (smmsp@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h2CHP5NU022063; Wed, 12 Mar 2003 09:25:05 -0800 (PST) (envelope-from dwmalone@freefall.freebsd.org) Received: (from dwmalone@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h2CGrpqZ000162; Wed, 12 Mar 2003 08:53:51 -0800 (PST) Date: Wed, 12 Mar 2003 08:53:51 -0800 (PST) From: David Malone Message-Id: <200303121653.h2CGrpqZ000162@freefall.freebsd.org> To: dwmalone@FreeBSD.org, freebsd-bugs@FreeBSD.org, njl@FreeBSD.org Subject: Re: kern/49054: QUIRK: SanDisk USB compact flash reader Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: QUIRK: SanDisk USB compact flash reader Responsible-Changed-From-To: freebsd-bugs->njl Responsible-Changed-By: dwmalone Responsible-Changed-When: Wed Mar 12 08:53:33 PST 2003 Responsible-Changed-Why: Quirk for Nate. http://www.freebsd.org/cgi/query-pr.cgi?pr=49054 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 12 9:48:51 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E242F37B401; Wed, 12 Mar 2003 09:48:50 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4356443FAF; Wed, 12 Mar 2003 09:48:50 -0800 (PST) (envelope-from jhb@FreeBSD.org) Received: from freefall.freebsd.org (jhb@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h2CHmoNS026345; Wed, 12 Mar 2003 09:48:50 -0800 (PST) (envelope-from jhb@freefall.freebsd.org) Received: (from jhb@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h2CHmocE026341; Wed, 12 Mar 2003 09:48:50 -0800 (PST) Date: Wed, 12 Mar 2003 09:48:50 -0800 (PST) From: John Baldwin Message-Id: <200303121748.h2CHmocE026341@freefall.freebsd.org> To: jhb@FreeBSD.org, freebsd-bugs@FreeBSD.org, rwatson@FreeBSD.org Subject: Re: kern/49963: Lack of error return for some proc sysctl's Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Lack of error return for some proc sysctl's Responsible-Changed-From-To: freebsd-bugs->rwatson Responsible-Changed-By: jhb Responsible-Changed-When: Wed Mar 12 09:48:14 PST 2003 Responsible-Changed-Why: Robert wanted this one. http://www.freebsd.org/cgi/query-pr.cgi?pr=49963 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 12 10:20: 5 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3666637B404 for ; Wed, 12 Mar 2003 10:20:03 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B1F6A43FE0 for ; Wed, 12 Mar 2003 10:20:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h2CIK1NS036237 for ; Wed, 12 Mar 2003 10:20:01 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h2CIK1cH036236; Wed, 12 Mar 2003 10:20:01 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E562C37B404 for ; Wed, 12 Mar 2003 10:19:36 -0800 (PST) Received: from myvision.it (morettoni.net [213.213.67.165]) by mx1.FreeBSD.org (Postfix) with SMTP id 67D1E43FAF for ; Wed, 12 Mar 2003 10:19:34 -0800 (PST) (envelope-from luca@morettoni.net) Received: (qmail 97144 invoked by uid 85); 12 Mar 2003 18:19:30 -0000 Received: from unknown (HELO ) (151.27.160.26) by 0 with SMTP; 12 Mar 2003 18:19:28 -0000 Received: (qmail 556 invoked by uid 1001); 12 Mar 2003 18:16:14 -0000 Message-Id: <20030312181614.555.qmail@morettoni.net> Date: 12 Mar 2003 18:16:14 -0000 From: Luca Morettoni Reply-To: Luca Morettoni To: FreeBSD-gnats-submit@FreeBSD.org Cc: Brian Somers X-Send-Pr-Version: 3.113 Subject: bin/49965: Print ppp pid number Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 49965 >Category: bin >Synopsis: Print ppp pid number >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Mar 12 10:20:00 PST 2003 >Closed-Date: >Last-Modified: >Originator: Luca Morettoni >Release: FreeBSD 4.8-RC i386 >Organization: Luca Morettoni >Environment: System: FreeBSD home.morettoni.net 4.8-RC FreeBSD 4.8-RC #0: Wed Mar 12 10:47:51 CET 2003 luca@home.morettoni.net:/usr/obj/usr/src/sys/HOME i386 >Description: When you run ppp and he goes on background you must type a ``ifconfig'' to know the pid of ppp daemon. With this patch you can see the pid when the connection is fire up, like this: luca@home:~% ppp -background libero Working in background mode Using interface: tun0 PPP enabled (PID 227) >How-To-Repeat: >Fix: Fix with the attached patch for main.c in /usr/src/usr.sbin/ppp --- ppp_pid.patch begins here --- --- usr.sbin/ppp/main.c Thu Mar 6 14:11:51 2003 +++ usr.sbin/ppp/main.c.luca Wed Mar 12 14:25:40 2003 @@ -463,7 +463,7 @@ switch (c) { case EX_NORMAL: if (!sw.quiet) { - prompt_Printf(prompt, "PPP enabled\n"); + prompt_Printf(prompt, "PPP enabled (PID %d)\n", bgpid); log_Printf(LogPHASE, "Parent: PPP enabled\n"); } break; --- ppp_pid.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 12 11:30:23 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9F2EB37B405 for ; Wed, 12 Mar 2003 11:30:17 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id BEE0D43FD7 for ; Wed, 12 Mar 2003 11:30:05 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h2CJU5NS054674 for ; Wed, 12 Mar 2003 11:30:05 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h2CJU51p054673; Wed, 12 Mar 2003 11:30:05 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7BE2237B401 for ; Wed, 12 Mar 2003 11:21:43 -0800 (PST) Received: from mail.farley.org (adsl-67-64-95-201.dsl.austtx.swbell.net [67.64.95.201]) by mx1.FreeBSD.org (Postfix) with ESMTP id 063A843FB1 for ; Wed, 12 Mar 2003 11:21:40 -0800 (PST) (envelope-from sean@farley.org) Received: from thor.farley.org (xneub6cbalt42a08@thor.farley.org [IPv6:2002:4340:5fc9::5]) by mail.farley.org (8.12.8/8.12.8) with ESMTP id h2CJLcPs044004 for ; Wed, 12 Mar 2003 13:21:38 -0600 (CST) (envelope-from sean@gw.farley.org) Received: from thor.farley.org (localhost [127.0.0.1]) by thor.farley.org (8.12.8/8.12.8) with ESMTP id h2CJLcuk000665 for ; Wed, 12 Mar 2003 13:21:38 -0600 (CST) (envelope-from sean@thor.farley.org) Received: (from sean@localhost) by thor.farley.org (8.12.8/8.12.8/Submit) id h2CJLbYH000664; Wed, 12 Mar 2003 13:21:37 -0600 (CST) (envelope-from sean) Message-Id: <200303121921.h2CJLbYH000664@thor.farley.org> Date: Wed, 12 Mar 2003 13:21:37 -0600 (CST) From: "Sean C. Farley" To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: misc/49967: Minor fixes to fortunes data Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 49967 >Category: misc >Synopsis: Minor fixes to fortunes data >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Mar 12 11:30:05 PST 2003 >Closed-Date: >Last-Modified: >Originator: Sean C. Farley >Release: FreeBSD 4.8-RC i386 >Organization: >Environment: System: FreeBSD thor.farley.org 4.8-RC FreeBSD 4.8-RC #1: Mon Mar 10 20:14:00 CST 2003 root@thor.farley.org:/usr/obj/usr/src/sys/THOR i386 >Description: I corrected what I believe to be small mistakes in spacing and punctuation in one (the default) of the fortune data files. Reason: someone had to do it. :) >How-To-Repeat: >Fix: Here is a patch: --- fortunes Wed Feb 12 14:45:55 2003 +++ fortunes.patched Wed Feb 12 14:46:19 2003 @@ -735,8 +735,8 @@ these sometime around the middle of next week". -- Dave Barry, "The Taming of the Screw" % - How many seconds are there in a year? If I tell you there are -3.155 x 10^7, you won't even try to remember it. On the other hand, + How many seconds are there in a year? If I tell you there are +3.155 x 10^7, you won't even try to remember it. On the other hand, who could forget that, to within half a percent, pi seconds is a nanocentury. -- Tom Duff, Bell Labs @@ -1879,7 +1879,7 @@ facts of life in bandages of self-illusion. -- H. L. Mencken % -A general leading the State Department resembles a dragon commanding +A general leading the State Department resembles a dragon commanding ducks. -- New York Times, Jan. 20, 1981 % @@ -1940,7 +1940,7 @@ O is for Olive, run through with an awl, P is for Prue, trampled flat in a brawl Q is for Quinton who sank in a mire, R is for Rhoda, consumed by a fire. S is for Susan who parished of fits, T is for Titas who flew into bits. -U is for Una who slipped down a drain, V is for Victor, squashed under a train. +U is for Una who slipped down a drain, V is for Victor, squashed under a train. W is for Winie, embedded in ice, X is for Xercies, devoured by mice. Y is for Yoric whose head was bashed in, Z is for Zilla who drank too much gin. -- Edward Gorey "The Gastly Crumb Tines" @@ -2433,8 +2433,7 @@ After a few boring years, socially meaningful rock 'n' roll died out. It was replaced by disco, which offers no guidance to any form of life more advanced than the lichen family. - -- Dave Barry, "Kids Today: They Don't Know Dum Diddly - Do" + -- Dave Barry, "Kids Today: They Don't Know Dum Diddly Do" % After a number of decimal places, nobody gives a damn. % @@ -2869,8 +2868,7 @@ television's message has always been that the need for truth, wisdom and world peace pales by comparison with the need for a toothpaste that offers whiter teeth *___and* fresher breath. - -- Dave Barry, "Kids Today: They Don't Know Dum Diddly - Do" + -- Dave Barry, "Kids Today: They Don't Know Dum Diddly Do" % Anthony's Law of Force: Don't force it; get a larger hammer. @@ -4427,7 +4425,7 @@ -- Stan Kelly-Bootle, "The Devil's DP Dictionary" % #define BITCOUNT(x) (((BX_(x)+(BX_(x)>>4)) & 0x0F0F0F0F) % 255) -#define BX_(x) ((x) - (((x)>>1)&0x77777777) \ +#define BX_(x) ((x) - (((x)>>1)&0x77777777) \ - (((x)>>2)&0x33333333) \ - (((x)>>3)&0x11111111)) @@ -4486,7 +4484,7 @@ since withdrawn. % Demographic polls show that you have lost credibility across the -board. Especially with those 14 year-old Valley girls. +board. Especially with those 14 year-old Valley girls. % Dentist, n.: A Prestidigitator who, putting metal in one's mouth, pulls @@ -4935,7 +4933,7 @@ All the other prehistoric people were out puncturing each other with spears, and the wise men were back in the cave saying: "How about: Would you please take my wife? No. How about: Here is my wife, please -take her right now. No How about: Would you like to take something? +take her right now. No. How about: Would you like to take something? My wife is available. No. How about ..." -- Dave Barry, "Why Humor is Funny" % @@ -8454,8 +8452,7 @@ destruction of the of the planet Earth and had made many attempts to alert mankind to the danger; but most of their communications were misinterpreted ... - -- Douglas Admas "The Hitch-Hikers' Guide To The - Galaxy" + -- Douglas Admas "The Hitch-Hikers' Guide To The Galaxy" % It is better for civilization to be going down the drain than to be coming up it. @@ -8974,8 +8971,7 @@ teenager for sitting around and sulking all day instead of hunting for grubs and berries like dad primate. Then you'd see the primate teenager stomp up to his branch and slam the leaves. - -- Dave Barry, "Kids Today: They Don't Know Dum Diddly - Do" + -- Dave Barry, "Kids Today: They Don't Know Dum Diddly Do" % Kin, n.: An affliction of the blood @@ -9567,7 +9563,7 @@ -- Albert Einstein % Mandrell: "You know what I think?" -Doctor: "Ah, ah that's a catch question. With a brain your size you +Doctor: "Ah, ah that's a catch question. With a brain your size you don't think, right?" -- Dr. Who % @@ -12783,7 +12779,7 @@ The best book on programming for the layman is "Alice in Wonderland"; but that's because it's the best book on anything for the layman. % -The best cure for insomnia is to get a lot of sleep. +The best cure for insomnia is to get a lot of sleep. -- W. C. Fields % The best defense against logic is ignorance. @@ -13736,7 +13732,7 @@ % The Sixth Commandment of Frisbee: The greatest single aid to distance is for the disc to be going -in a direction you did not want. (Goes the wrong way = Goes a long +in a direction you did not want. (Goes the wrong way = Goes a long way.) -- Dan Roddick % @@ -14153,7 +14149,7 @@ doing. % There is no TRUTH. There is no REALITY. There is no CONSISTENCY. -There are no ABSOLUTE STATEMENTS I'm very probably wrong. +There are no ABSOLUTE STATEMENTS. I'm very probably wrong. % "There is nothing which cannot be answered by means of my doctrine," said a monk, coming into a teahouse where Nasrudin sat. "And yet just @@ -16341,7 +16337,7 @@ another $2 for each "special" he describes involving confusing terms such as "shallots," and $4 if the menu contains the word "fixin's." In many restaurants, this means the waiter will actually owe you money. -If you are traveling with a child aged six months to three years, you +If you are traveling with a child aged six months to three years, you should leave an additional amount equal to twice the bill to compensate for the fact that they will have to take the banquette out and burn it because the cracks are wedged solid with gobbets made of partially >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 12 12:10:11 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B0C4637B401 for ; Wed, 12 Mar 2003 12:10:08 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3A3BA43FCB for ; Wed, 12 Mar 2003 12:10:07 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h2CKA7NS068709 for ; Wed, 12 Mar 2003 12:10:07 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h2CKA72F068708; Wed, 12 Mar 2003 12:10:07 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4667F37B401 for ; Wed, 12 Mar 2003 12:07:16 -0800 (PST) Received: from mail.farley.org (adsl-67-64-95-201.dsl.austtx.swbell.net [67.64.95.201]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0D40743F3F for ; Wed, 12 Mar 2003 12:07:13 -0800 (PST) (envelope-from sean@farley.org) Received: from thor.farley.org (46ddx1zv8l6srpym@thor.farley.org [IPv6:2002:4340:5fc9::5]) by mail.farley.org (8.12.8/8.12.8) with ESMTP id h2CK7CPs044147 for ; Wed, 12 Mar 2003 14:07:12 -0600 (CST) (envelope-from sean@gw.farley.org) Received: from thor.farley.org (localhost [127.0.0.1]) by thor.farley.org (8.12.8/8.12.8) with ESMTP id h2CK7Cuk001121 for ; Wed, 12 Mar 2003 14:07:12 -0600 (CST) (envelope-from sean@thor.farley.org) Received: (from sean@localhost) by thor.farley.org (8.12.8/8.12.8/Submit) id h2CK7CwK001120; Wed, 12 Mar 2003 14:07:12 -0600 (CST) (envelope-from sean) Message-Id: <200303122007.h2CK7CwK001120@thor.farley.org> Date: Wed, 12 Mar 2003 14:07:12 -0600 (CST) From: "Sean C. Farley" To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: bin/49968: ipcs is incorrectly documented Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 49968 >Category: bin >Synopsis: ipcs is incorrectly documented >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Wed Mar 12 12:10:06 PST 2003 >Closed-Date: >Last-Modified: >Originator: Sean C. Farley >Release: FreeBSD 4.8-RC i386 >Organization: >Environment: System: FreeBSD thor.farley.org 4.8-RC FreeBSD 4.8-RC #1: Mon Mar 10 20:14:00 CST 2003 root@thor.farley.org:/usr/obj/usr/src/sys/THOR i386 >Description: The built-in usage for ipcs lacks the M, Q, S and T options while the man page has the description of the C and N options reversed. I tried to spruce up the man page. This is the first time I have edited a man page; I think it still works. >How-To-Repeat: >Fix: Patch for the code and man page: --- src/usr.bin/ipcs/ipcs.1.orig Wed Mar 12 12:43:45 2003 +++ src/usr.bin/ipcs/ipcs.1 Wed Mar 12 12:58:15 2003 @@ -38,8 +38,8 @@ .Sh SYNOPSIS .Nm .Op Fl abcmopqstMQST -.Op Fl C Ar system -.Op Fl N Ar core +.Op Fl C Ar corefile +.Op Fl N Ar namelist .Sh DESCRIPTION The .Nm @@ -97,16 +97,19 @@ the last send or receive of a message, the last attach or detach of a shared memory segment, or the last operation on a semaphore. -.It Fl C Ar system -Extract the name list from the specified system instead of the -default -.Dq Pa /kernel . -.It Fl M -Display system information about shared memory. -.It Fl N Ar core +.It Fl C Ar corefile Extract values associated with the name list from the specified -core instead of the default +file +.Ar corefile +instead of the default .Dq Pa /dev/kmem . +.It Fl M +Display system information about shared memory. +.It Fl N Ar namelist +Extract the name list from the specified file +.Ar namelist +instead of the default +.Dq Pa /kernel . .It Fl Q Display system information about messages queues. .It Fl S --- src/usr.bin/ipcs/ipcs.c.orig Wed Mar 12 12:43:55 2003 +++ src/usr.bin/ipcs/ipcs.c Wed Mar 12 12:54:12 2003 @@ -482,6 +482,6 @@ { fprintf(stderr, - "usage: ipcs [-abcmopqst] [-C corefile] [-N namelist]\n"); + "usage: ipcs [-abcmopqstMQST] [-C corefile] [-N namelist]\n"); exit(1); } >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 12 14: 7:37 2003 Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 16D9337B401 for ; Wed, 12 Mar 2003 14:07:36 -0800 (PST) Received: from 2416418hfc192.tampabay.rr.com (2416418hfc192.tampabay.rr.com [24.164.18.192]) by mx1.FreeBSD.org (Postfix) with SMTP id 08F9743F3F for ; Wed, 12 Mar 2003 14:07:33 -0800 (PST) (envelope-from vasin.otdel.stroy2003@bitex.ru) From: Íà÷àëüíèê äîãîâîðíîãî îòäåëà Âàñèí Àíäðåé Âëàäèìèðîâè÷ To: Freebsd-bugs Subject: Ïðåäëîæåíèå ïî ñòðîèòåëüñòâó mba MIME-Version: 1.0 Content-type: text/html; charset=Windows-1251 Content-Transfer-Encoding: 8bit Message-Id: <20030312220733.08F9743F3F@mx1.FreeBSD.org> Date: Wed, 12 Mar 2003 14:07:33 -0800 (PST) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Ñòðîèòåëüíàÿ êîìïàíèÿ "Ñïèãàò"
 
Ñòðîèòåëüíàÿ Êîìïàíèÿ «Ñïèãàò»
ã.Ìîñêâà, óë. Äóáíèíñêàÿ 83
Òåë. 900-54-12; òåë/ôàêñ: 741-59-57


Óâàæàåìûå ãîñïîäà!

Ñòðîèòåëüíàÿ êîìïàíèÿ "Ñïèãàò" ïðåäëàãàåò ñâîè óñëóãè â îáëàñòè ïðîåêòèðîâàíèÿ, ñòðîèòåëüñòâà, ðåìîíòó, ðåêîíñòðóêöèè ïðîìûøëåííûõ ñäàíèé è ñîîðóæåíèé.

ÑÊ "Ñïèãàò" ðàáîòàåò íà ñòðîèòåëüíîì ðûíêå ñ 1993 ãîäà.  òå÷åíèå âñåãî âðåìåíè ðàáîòû ñîòðóäíèêè íàøåé êîìïàíèè ñîçäàëè ñïëî÷åííûé ïðîôåññèîíàëüíûé êîëëåêòèâ èç âûïóñêíèêîâ ëó÷øèõ òåõíè÷åñêèõ âóçîâ ñòîëèöû è Ïîäìîñêîâüÿ, êîòîðûé ìîæåò îïåðàòèâíî ðåøàòü çàäà÷è ëþáîãî óðîâíÿ ñëîæíîñòè, ñâÿçàííîãî ñ íàøåé ïðîôåññèîíàëüíîé äåÿòåëüíîñòüþ. Íàêîïëåí áîãàòûé îïûò ïðàêòè÷åñêîé ðàáîòû, îòðàáîòàíî âçàèìîäåéñòâèå ñ ïðîåêòíûìè èíñòèòóòàìè ïîñòàâùèêàìè ìàòåðèàëîâ è îáîðóäîâàíèÿ. Ìàòåðèàëüíî òåõíè÷åñêàÿ áàçà ïîçâîëÿåò ïðîèçâîäèòü øèðîêèé ñïåêòð ðàáîò ñîáñòâåííûìè ñèëàìè.

Ìåíåäæåðû ïðîåêòîâ ãîòîâû ïîäêëþ÷èòüñÿ ê ðåàëèçàöèè Âàøèõ ïëàíîâ íà ýòàïå ïîëó÷åíèÿ èñõîäíî-ðàçðåøèòåëüíîé äîêóìåíòàöèè è ó÷àñòâîâàòü â îñóùåñòâëåíèè óïðàâëåíèÿ ñòðîèòåëüíûì ïðîöåññîì äî ñäà÷è îáúåêòà ãîñóäàðñòâåííîé êîìèññèè.

Îñíîâíûìè íàïðàâëåíèÿìè äåÿòåëüíîñòè ôèðìû ÿâëÿåòñÿ ñòðîèòåëüñòâî ïðîìûøëåííûõ è ãðàæäàíñêèõ çäàíèé è ñîîðóæåíèé, à òàêæå êàïèòàëüíûé ðåìîíò ïðîìûøëåííûõ çäàíèé è ñîîðóæåíèé, â òîì ÷èñëå èíæåíåðíûå êîììóíèêàöèè, êîòåëüíûå, ãàçîâîå îáîðóäîâàíèå.

Ñî äíÿ îñíîâàíèÿ ôèðìû îñíîâíûì ïðèíöèïàìè ðàáîòû ÿâëÿþòñÿ íàäåæíîñòü, âûñîêîå êà÷åñòâî, ñòðîãîå ñîáëþäåíèå ñîãëàñîâàííûõ ñðîêîâ ñòðîèòåëüñòâà è ïîæåëàíèé Çàêàç÷èêà.

Ñ óâàæåíèåì,
Ãåíåðàëüíûé äèðåêòîð ÎÎÎ ÑÊ "Ñïèãàò"
 
Ãðèùåíêî Ì.À.
To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 12 18:34:36 2003 Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0C35937B404 for ; Wed, 12 Mar 2003 18:34:35 -0800 (PST) Received: from webmail05.lax.untd.com (outbound-28.lax.untd.com [64.136.28.100]) by mx1.FreeBSD.org (Postfix) with SMTP id BF5C843F3F for ; Wed, 12 Mar 2003 18:34:33 -0800 (PST) (envelope-from chudimalik@juno.com) Received: from cookie.juno.com by cookie.juno.com for <"szg1QkGKuvjjpfscZYceEwLFkxwqsEcGXFTlxmuRRaJAkOBn4ZGv9w=="> Received: (from chudimalik@juno.com) by webmail05.lax.untd.com (jqueuemail) id HS5AP89P; Wed, 12 Mar 2003 18:34:25 PST Received: from [81.23.193.84] by webmail05.lax.untd.com X-Originating-IP: [81.23.193.84] X-Original-From: chudimalik@juno.com Date: Thu, 13 Mar 2003 02:33:18 GMT To: chudimalik@juno.com Subject: INVESTMENT CONTACTS. X-Mailer: WebMail Version 1.0 From: chudimalik@juno.com Message-Id: <20030312.183425.11116.580684@webmail05.lax.untd.com> Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Compliment of the season, and I pray that this mail meet you in good Health. I am writing to get assistance from you. There is an over invoice of Sum of USD$14.7 Million US Dollars floating in our bank, where I am the Director Foreign Operations. REASONS; Some contractor's from Europe, Asia and American were paid for their contract’s, which was APPROVED and paid by our bank WEMA BANK PLC, Being their full contract SUM, and was paid completely. But the remaining money being the over invoiced after payment is still lying here unclaimed and we are looking for a foreign partner who will OPEN AN ACCOUNT, FOR US to transfer this money into with a desired Percentage to be paid to whosoever will assist in this transfer. After the transfer, we will accept to give you 20% of the total sum, And will invest 30% of the total money in your country on FINANCING PROJECT and REAL ESTATE MANAGEMENT as partners with You for the DURATION OF TIME that you may ACCEPT, and also 5% goes For charity organizations, While 5%is for any expenses made by both Of us in any way it may come, like phone bills, opening ofa new Account etc., AND we will take 40% for our personal use. My name is Mr.Chudi Malik (Director Foreign Operations), please treat This mail as your personal matter and send to me a reply if you are Willing to assist so we can discuss further. Thanks, . As I expect your urgent reply. Regards Mr.Chudi Malik. (Director Foreign Operations). NB; that this transaction will only last for about 10 bankWorking days. It is 100%risk free, as men involved Dose not want to be disgraced out of office please. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Wed Mar 12 21:40: 5 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0F04F37B404 for ; Wed, 12 Mar 2003 21:40:05 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 93BEA43FAF for ; Wed, 12 Mar 2003 21:40:04 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h2D5e4NS092921 for ; Wed, 12 Mar 2003 21:40:04 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h2D5e4Da092920; Wed, 12 Mar 2003 21:40:04 -0800 (PST) Date: Wed, 12 Mar 2003 21:40:04 -0800 (PST) Message-Id: <200303130540.h2D5e4Da092920@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Nate Lawson Subject: Re: kern/41281: USB scanning works only once Reply-To: Nate Lawson Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR kern/41281; it has been noted by GNATS. From: Nate Lawson To: Henning Meier-Geinitz Cc: freebsd-gnats-submit@freebsd.org Subject: Re: kern/41281: USB scanning works only once Date: Wed, 12 Mar 2003 21:30:16 -0800 (PST) Please send me a pointer to the relevant code in the linux driver and I may be able to put together a workaround. -Nate To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Mar 13 0:20:13 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 750BF37B404 for ; Thu, 13 Mar 2003 00:20:11 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 89FDA43F3F for ; Thu, 13 Mar 2003 00:20:10 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h2D8KANS036178 for ; Thu, 13 Mar 2003 00:20:10 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h2D8KAR2036176; Thu, 13 Mar 2003 00:20:10 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0597637B401 for ; Thu, 13 Mar 2003 00:13:07 -0800 (PST) Received: from ic-proc.paume.itb.ac.id (process.paume.ITB.ac.id [167.205.21.101]) by mx1.FreeBSD.org (Postfix) with SMTP id C7A2D43FDD for ; Thu, 13 Mar 2003 00:13:03 -0800 (PST) (envelope-from adharul@ic-proc.paume.itb.ac.id) Received: (qmail 10286 invoked by uid 0); 13 Mar 2003 08:13:03 -0000 Message-Id: <20030313081303.10285.qmail@ic-proc.paume.itb.ac.id> Date: 13 Mar 2003 08:13:03 -0000 From: Adharul M Reply-To: Adharul M To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: i386/49978: installation problem on Acer Altos G300 Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 49978 >Category: i386 >Synopsis: installation problem on Acer Altos G300 >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Mar 13 00:20:09 PST 2003 >Closed-Date: >Last-Modified: >Originator: Adharul M >Release: FreeBSD 4.8-RC i386 >Organization: >Environment: System: FreeBSD ic-proc.paume.itb.ac.id 4.8-RC FreeBSD 4.8-RC #0: Fri Mar 7 15:37:03 WIT 2003 root@belitung.paume.itb.ac.id:/usr/obj/usr/src/sys/IC-PROC i386 Acer Altos G300, Pentium 4-1.8GHz, SCSI sym53c1010-66 , 18GB Seagate SCSI Hardisk >Description: I will replace my old server with the new one: ACER ALT G300. I found message "BTX Halted" when I try to boot FreeBSD using current hard disk. This message also repeated when I try to reinstall FreeBSD (4.7) using Floppy disk and CDROM to the new server. Here the message int=00000001 err=00000000 efl=00020202 eip=0000f842 eax=00008080 ebx=00000000 ecx=00000000 edx=00000000 esi=00000000 edi=00000000 ebp=00000000 esp=0000040a cs=f000 ds=0000 es=0000 fs=0000 gs=0000 ss=9d7d cs:eip= 1e 6a 40 1f a1 13 00 1f-cf 00 00 e8 0a b3 1e 6a ss:esp= 38 91 00 00 02 02 f8 3b-09 00 e6 10 00 00 12 00 BTX halted. I couldn't install FreeBSD to my ALTOS G300 Server. Does anyone have the solution for this problem? >How-To-Repeat: - When booting using recent FreeBSD 4.7 installed Hardidisk - When booting before installation >Fix: >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Mar 13 1:50:20 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E9A2337B401 for ; Thu, 13 Mar 2003 01:50:14 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C28CC43FB1 for ; Thu, 13 Mar 2003 01:50:13 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h2D9oDNS061354 for ; Thu, 13 Mar 2003 01:50:13 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h2D9oDAd061353; Thu, 13 Mar 2003 01:50:13 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7D39D37B404 for ; Thu, 13 Mar 2003 01:48:07 -0800 (PST) Received: from home.kawasaki3.org (home.kawasaki3.org [61.206.116.61]) by mx1.FreeBSD.org (Postfix) with SMTP id 0887E43FA3 for ; Thu, 13 Mar 2003 01:48:06 -0800 (PST) (envelope-from kawasaki@kawasaki3.org) Received: (qmail 6468 invoked from network); 13 Mar 2003 09:48:02 -0000 Received: from unknown (HELO localhost) (211.14.2.57) by home.kawasaki3.org with SMTP; 13 Mar 2003 09:48:02 -0000 Message-Id: <20030313.184800.30191150.kawasaki@kawasaki3.org> Date: Thu, 13 Mar 2003 18:48:00 +0900 (JST) From: moto kawasaki To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: kern/49980: patch to enable ThinkPAD X24 sound device (Intel 82801CA (ICH3)) Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 49980 >Category: kern >Synopsis: patch to enable ThinkPAD X24 sound device (Intel 82801CA (ICH3)) >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Mar 13 01:50:13 PST 2003 >Closed-Date: >Last-Modified: >Originator: moto kawasaki >Release: FreeBSD 4.8-RC i386 >Organization: n/a >Environment: Machine: IBM ThinkPAD X24 (2662-L3J) PIII-M 1.13GHz(512KB), 1024MB RAM, 30.0GB HDD, 12.1 XGA(1024x768) TFT LCD, 802.11b wireless(MPCI), Ethernet(CDC), Modem(MPCI), IBM Secure Chip, USB-FDD, IEEE 1394, 6Cell Li-Ion battery, WinXP Pro System: FreeBSD x24.local 4.8-RC FreeBSD 4.8-RC #2: Thu Mar 6 15:30:58 JST 2003 kawasaki@x24.local:/usr/obj/usr/src/sys/X24 i386 Target: sound device on Intel 82891CA ICH3. >Description: Please find attached patch which enable sound device (pcm) on IBM ThinkPAD X24. Following instructions below (unfortunately in Japanese) and modifying them as matching codes in 4.7-stable through 4.8-RC, I am enjoying music now. [bsd-nomads: 15930] http://www.clave.gr.jp/ml/bsd-nomads/200109/msg00028.html [bsd-nomads: 16348] http://www.clave.gr.jp/ml/bsd-nomads/200206/msg00023.html >How-To-Repeat: Install 4.8-RC onto X24, then kernel cannot detect this device. >Fix: please find attached patch below. --- dmesg.boot begins here --- Copyright (c) 1992-2003 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 4.8-RC #2: Thu Mar 6 15:30:58 JST 2003 kawasaki@x24.local:/usr/obj/usr/src/sys/X24 Timecounter "i8254" frequency 1193182 Hz CPU: Intel(R) Pentium(R) III Mobile CPU 1133MHz (1129.57-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x6b1 Stepping = 1 Features=0x383f9ff real memory = 670498816 (654784K bytes) avail memory = 647806976 (632624K bytes) Preloaded elf kernel "kernel" at 0xc03c3000. Pentium Pro MTRR support enabled md0: Malloc disk Using $PIR table, 14 entries at 0xc00fdeb0 apm0: on motherboard apm0: found APM BIOS v1.2, connected at v1.2 npx0: on motherboard npx0: INT 16 interface pcib0: on motherboard pci0: on pcib0 pcib1: at device 1.0 on pci0 pci1: on pcib1 pci1: at 0.0 irq 11 uhci0: port 0x1800-0x181f irq 11 at device 29.0 on pci0 usb0: on uhci0 usb0: USB revision 1.0 uhub0: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub0: 2 ports with 2 removable, self powered uhci1: port 0x1820-0x183f irq 11 at device 29.1 on pci0 usb1: on uhci1 usb1: USB revision 1.0 uhub1: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub1: 2 ports with 2 removable, self powered uhci2: port 0x1840-0x185f irq 11 at device 29.2 on pci0 usb2: on uhci2 usb2: USB revision 1.0 uhub2: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub2: 2 ports with 2 removable, self powered pcib2: at device 30.0 on pci0 pci2: on pcib2 pcic0: mem 0x50000000-0x50000fff irq 11 at device 3.0 on pci2 pccard0: on pcic0 pcic1: mem 0x50100000-0x50100fff irq 11 at device 3.1 on pci2 pccard1: on pcic1 pci2: (vendor=0x1180, dev=0x0552) at 3.2 irq 11 wi0: mem 0xf0000000-0xf0000fff irq 11 at device 5.0 on pci2 wi0: 802.11 address: 00:20:e0:8d:1d:39 wi0: using RF:PRISM2.5 MAC:ISL3874A(Mini-PCI) wi0: Intersil Firmware: Primary 1.01.00, Station 1.04.02 fxp0: port 0x8000-0x803f mem 0xc0200000-0xc0200fff irq 11 at device 8.0 on pci2 fxp0: Ethernet address 00:d0:59:ca:8f:03 inphy0: on miibus0 inphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto isab0: at device 31.0 on pci0 isa0: on isab0 atapci0: port 0x1860-0x186f,0x374-0x377,0x170-0x177,0x3f4-0x3f7,0x1f0-0x1f7 at device 31.1 on pci0 ata0: at 0x1f0 irq 14 on atapci0 ata1: at 0x170 irq 15 on atapci0 ichsmb0: port 0x1880-0x189f irq 11 at device 31.3 on pci0 smbus0: on ichsmb0 pcm0: port 0x18c0-0x18ff,0x1c00-0x1cff irq 11 at device 31.5 on pci0 pcm0: (id=0x43525936) pci0: (vendor=0x8086, dev=0x2486) at 31.6 irq 11 isa0: too many memory ranges orm0:

òåë.: (095) 782-64-54, 912-73-18

ÑÒÅËËÀÆ ÓÍÈÂÅÐÑÀËÜÍÛÉ ÐÀÇÁÎÐÍÛÉ
(Ñåðèè ÍÐ)

Ñòåëëàæ ñîñòîèò èç:

- ñòîåê, èçãîòîâëåííûõ èç ìåòàëëà òîëùèíîé 4.00 ìì ñ ïîëèìåðíûì ïîêðûòèåì;
- ñòÿæåê, èçãîòîâëåííûõ èç ìåòàëëà òîëùèíîé 2.00 ìì ñ ïîëèìåðíûì ïîêðûòèåì;
- ïîëîê, èçãîòîâëåííûõ èç ôàíåðû òîëùèíîé 8 – 10 ìì èëè èç ÄÑÏ òîëùèíîé 16 ìì
Ïîëèìåðíîå ïîêðûòèå ìîæåò áûòü ëþáîãî öâåòà – ïî ïðåäâàðèòåëüíîìó çàêàçó.
Ñòàíäàðòíûé öâåò: ñòîéêè – ñèíèé; ñòÿæêè – æåëòûé èëè ñåðûé
Êîëè÷åñòâî ïîëîê â êîìïëåêòå ìîæåò áûòü èçìåíåíî ïî æåëàíèþ çàêàç÷èêà.
Ðàññòîÿíèå ìåæäó ïîëêàìè èçìåíÿåòñÿ ñ øàãîì 50 èëè 100 ìì. Äîïóñòèìàÿ ðàñïðåäåëåííàÿ íàãðóçêà íà îäíó ïîëêó äëÿ ñòåëëàæà Ñ-05 ñîñòàâëÿåò 300 êã.
Ñáîðêà ïðîèçâîäèòñÿ çà ñ÷åò çàöåïëåíèÿ äåòàëåé ìåæäó ñîáîé, íå òðåáóåò ïðèìåíåíèÿ ñïåöèàëüíîãî èíñòðóìåíòà; ìîíòàæ îñóùåñòâëÿåòñÿ çà ìàêñèìàëüíî êîðîòêîå âðåìÿ. Íåñêîëüêî ñòåëëàæåé ìîãóò áûòü ñîáðàíû â äëèíó è ñêðåïëåíû ìåæäó ñîáîé îòäåëüíûìè äåòàëÿìè.

         Ïðàéñ-ëèñò íà ñòàíäàðòíûå òèïîðàçìåðû ñòåëëàæåé ñåðèè ÍÐ ñ 4-ìÿ ïîëêàìè:

¹
ï/ï
Îáîçíà÷åíèå ñòåëëàæà Ãàáàðèòíûå ðàçìåðû, ìì Îòïóñêíàÿ öåíà, ðóá.
âûñî-
òà
äëè-
íà
ãëó-
áèíà
Ôàíåð-
íàÿ ïîëêà
Ñòàëüíàÿ ïîëêà
ïëîñ-
êàÿ
Ãîô-
ðà
1 ÍÐ-00 2000 1024 655 3495 4115 4277
2 ÍÐ-01 2000 1540 655 3822 5175 4937
3 ÍÐ-02 1500 1540 655 3550 4903 4665
4 ÍÐ-03 1500 1024 455 2638 3461 3325
5 ÍÐ-05 2000 1540 770 4114 5562 5262
6 ÍÐ-06 1950 1024 770 3618 4665 4427
7 ÍÐ-08 2000 1540 455 3352 4529 4359
8 ÍÐ-12 2000 1540 1005 4916 7208 6256
9 ÍÐ-12 – êðàøåííûå ïîëêè 2000 1540 1005 5321
10 ÍÐ-13 2000 1360 555 3679 4944 4698
11 ÍÐ-16 2000 1540 610 3794 5148 4910
12 ÍÐ-17 2000 1540 500 3400 4597 4440

òåë.: (095) 782-64-54, 912-73-18

 

 

Äàííàÿ ðàññûëêà ïðîèçâåäåíà â ñîîòâåòñòâèè ñ ÷.4 ñò.29 Êîíñòèòóöèè ÐÔ. Âàø ýëåêòðîííûé àäðåñ ïîëó÷åí èç îòêðûòûõ èñòî÷íèêîâ.  ñëó÷àå íåæåëàíèÿ ïîëó÷àòü êîììåð÷åñêèå ïðåäëîæåíèÿ, îòâåòüòå íà ýòî ïèñüìî ñ ïîìåòêîé â Òåìå "Delete". Âàø e-mail áóäåò óäàëåí èç áàçû.

BUVSGULFRIDQEREVPJVZVRSXKJTUFVROVKWBMH To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Mar 13 13:32:32 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B964537B401; Thu, 13 Mar 2003 13:32:31 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2971743F85; Thu, 13 Mar 2003 13:32:31 -0800 (PST) (envelope-from dwmalone@FreeBSD.org) Received: from freefall.freebsd.org (dwmalone@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h2DLWVNS045674; Thu, 13 Mar 2003 13:32:31 -0800 (PST) (envelope-from dwmalone@freefall.freebsd.org) Received: (from dwmalone@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h2DLWVp3045670; Thu, 13 Mar 2003 13:32:31 -0800 (PST) Date: Thu, 13 Mar 2003 13:32:31 -0800 (PST) From: David Malone Message-Id: <200303132132.h2DLWVp3045670@freefall.freebsd.org> To: dwmalone@FreeBSD.org, freebsd-bugs@FreeBSD.org, phk@FreeBSD.org Subject: Re: bin/48765: sysinstall crashes when GBDE device is attached to kernel Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: sysinstall crashes when GBDE device is attached to kernel Responsible-Changed-From-To: freebsd-bugs->phk Responsible-Changed-By: dwmalone Responsible-Changed-When: Thu Mar 13 13:31:11 PST 2003 Responsible-Changed-Why: The bug actually seems to be in libdisk on line 337 of disk.c. I think it is just missing a case to understand what to do with GBDE disks. Poul-Hennig will probably know what to do here. http://www.freebsd.org/cgi/query-pr.cgi?pr=48765 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Mar 13 13:41: 2 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A393537B405; Thu, 13 Mar 2003 13:41:01 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 40B6443F75; Thu, 13 Mar 2003 13:41:01 -0800 (PST) (envelope-from dwmalone@FreeBSD.org) Received: from freefall.freebsd.org (dwmalone@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h2DLf1NS047689; Thu, 13 Mar 2003 13:41:01 -0800 (PST) (envelope-from dwmalone@freefall.freebsd.org) Received: (from dwmalone@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h2DLf0ca047685; Thu, 13 Mar 2003 13:41:00 -0800 (PST) Date: Thu, 13 Mar 2003 13:41:00 -0800 (PST) From: David Malone Message-Id: <200303132141.h2DLf0ca047685@freefall.freebsd.org> To: B.Candler@pobox.com, dwmalone@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/49990: tcpdump pointer error when decoding radius acct-status-type Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: tcpdump pointer error when decoding radius acct-status-type State-Changed-From-To: open->feedback State-Changed-By: dwmalone State-Changed-When: Thu Mar 13 13:38:17 PST 2003 State-Changed-Why: Bill Fenner has just imported tcpdump 3.7.2 for 4.8 release, and there were changes to the radius parsing code, so it may now be fixed. If the bug persists, it probably makes sense to report it to the folks at tcpdump.org, so they can fix it on all platforms. David. http://www.freebsd.org/cgi/query-pr.cgi?pr=49990 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Mar 13 13:43:16 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2E6CA37B401; Thu, 13 Mar 2003 13:43:15 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A2BED43FDF; Thu, 13 Mar 2003 13:43:13 -0800 (PST) (envelope-from dwmalone@FreeBSD.org) Received: from freefall.freebsd.org (dwmalone@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h2DLhDNS047760; Thu, 13 Mar 2003 13:43:13 -0800 (PST) (envelope-from dwmalone@freefall.freebsd.org) Received: (from dwmalone@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h2DLhDaV047756; Thu, 13 Mar 2003 13:43:13 -0800 (PST) Date: Thu, 13 Mar 2003 13:43:13 -0800 (PST) From: David Malone Message-Id: <200303132143.h2DLhDaV047756@freefall.freebsd.org> To: dwmalone@FreeBSD.org, freebsd-bugs@FreeBSD.org, sos@FreeBSD.org Subject: Re: kern/48986: 5.0-R/4.7R system hangs on HighPoint RAID w/ ata driver Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: 5.0-R/4.7R system hangs on HighPoint RAID w/ ata driver Responsible-Changed-From-To: freebsd-bugs->sos Responsible-Changed-By: dwmalone Responsible-Changed-When: Thu Mar 13 13:42:39 PST 2003 Responsible-Changed-Why: Highpoint ATA Raid PR for Soren. http://www.freebsd.org/cgi/query-pr.cgi?pr=48986 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Mar 13 13:47:30 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0296737B404; Thu, 13 Mar 2003 13:47:30 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9015543FBD; Thu, 13 Mar 2003 13:47:29 -0800 (PST) (envelope-from dwmalone@FreeBSD.org) Received: from freefall.freebsd.org (dwmalone@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h2DLlTNS047861; Thu, 13 Mar 2003 13:47:29 -0800 (PST) (envelope-from dwmalone@freefall.freebsd.org) Received: (from dwmalone@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h2DLlTIp047857; Thu, 13 Mar 2003 13:47:29 -0800 (PST) Date: Thu, 13 Mar 2003 13:47:29 -0800 (PST) From: David Malone Message-Id: <200303132147.h2DLlTIp047857@freefall.freebsd.org> To: dwmalone@FreeBSD.org, freebsd-bugs@FreeBSD.org, mckusic@FreeBSD.org Subject: Re: kern/42277: Several kernel panics per day with panicstr: softdep_lock: locking against myself. Further filesystems damage guaranteed. Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Several kernel panics per day with panicstr: softdep_lock: locking against myself. Further filesystems damage guaranteed. Responsible-Changed-From-To: freebsd-bugs->mckusic Responsible-Changed-By: dwmalone Responsible-Changed-When: Thu Mar 13 13:46:44 PST 2003 Responsible-Changed-Why: Maybe Kirk can have a look at this PR - Evgueni is eager to provide more debugging information if it is needed. David. http://www.freebsd.org/cgi/query-pr.cgi?pr=42277 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Mar 13 13:49:52 2003 Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1D4AB37B401; Thu, 13 Mar 2003 13:49:52 -0800 (PST) Received: from mk-smarthost-2.mail.uk.tiscali.com (mk-smarthost-2.mail.uk.tiscali.com [212.74.114.38]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5477243FB1; Thu, 13 Mar 2003 13:49:51 -0800 (PST) (envelope-from b.candler@pobox.com) Received: from [212.74.113.66] (helo=vaio.linnet.org) by mk-smarthost-2.mail.uk.tiscali.com with esmtp (Exim 4.10) id 18taaD-0004XO-00; Thu, 13 Mar 2003 21:49:49 +0000 Received: from brian by vaio.linnet.org with local (Exim 4.12) id 18taaD-000Dzu-00; Thu, 13 Mar 2003 21:49:49 +0000 Date: Thu, 13 Mar 2003 21:49:49 +0000 From: Brian Candler To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/49990: tcpdump pointer error when decoding radius acct-status-type Message-ID: <20030313214949.GB53210@uk.tiscali.com> References: <200303131700.h2DH0Xd4047290@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200303131700.h2DH0Xd4047290@freefall.freebsd.org> User-Agent: Mutt/1.4i Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org My apologies. The machine I was testing was actually running FreeBSD-4.6.2 and this problem has since been fixed, as copying a 4.7 binary onto it makes it work properly. Please close... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Mar 13 13:50:10 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 83A8537B401 for ; Thu, 13 Mar 2003 13:50:09 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B60C343F93 for ; Thu, 13 Mar 2003 13:50:08 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h2DLo8NS047966 for ; Thu, 13 Mar 2003 13:50:08 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h2DLo85B047965; Thu, 13 Mar 2003 13:50:08 -0800 (PST) Date: Thu, 13 Mar 2003 13:50:08 -0800 (PST) Message-Id: <200303132150.h2DLo85B047965@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Brian Candler Subject: Re: bin/49990: tcpdump pointer error when decoding radius acct-status-type Reply-To: Brian Candler Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR bin/49990; it has been noted by GNATS. From: Brian Candler To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-bugs@FreeBSD.org Cc: Subject: Re: bin/49990: tcpdump pointer error when decoding radius acct-status-type Date: Thu, 13 Mar 2003 21:49:49 +0000 My apologies. The machine I was testing was actually running FreeBSD-4.6.2 and this problem has since been fixed, as copying a 4.7 binary onto it makes it work properly. Please close... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Mar 13 13:52:20 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DC1EF37B401; Thu, 13 Mar 2003 13:52:19 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7A93543F93; Thu, 13 Mar 2003 13:52:19 -0800 (PST) (envelope-from dwmalone@FreeBSD.org) Received: from freefall.freebsd.org (dwmalone@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h2DLqJNS049998; Thu, 13 Mar 2003 13:52:19 -0800 (PST) (envelope-from dwmalone@freefall.freebsd.org) Received: (from dwmalone@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h2DLqJqe049994; Thu, 13 Mar 2003 13:52:19 -0800 (PST) Date: Thu, 13 Mar 2003 13:52:19 -0800 (PST) From: David Malone Message-Id: <200303132152.h2DLqJqe049994@freefall.freebsd.org> To: B.Candler@pobox.com, dwmalone@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/49990: tcpdump pointer error when decoding radius acct-status-type Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: tcpdump pointer error when decoding radius acct-status-type State-Changed-From-To: feedback->closed State-Changed-By: dwmalone State-Changed-When: Thu Mar 13 13:51:37 PST 2003 State-Changed-Why: A tcpdump import somewhere between 4.6.2 and 4.7 fixed the problem. http://www.freebsd.org/cgi/query-pr.cgi?pr=49990 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Mar 13 13:55:48 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D580237B404; Thu, 13 Mar 2003 13:55:47 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 568FB43FBD; Thu, 13 Mar 2003 13:55:47 -0800 (PST) (envelope-from dwmalone@FreeBSD.org) Received: from freefall.freebsd.org (dwmalone@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h2DLtlNS050112; Thu, 13 Mar 2003 13:55:47 -0800 (PST) (envelope-from dwmalone@freefall.freebsd.org) Received: (from dwmalone@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h2DLtlKj050108; Thu, 13 Mar 2003 13:55:47 -0800 (PST) Date: Thu, 13 Mar 2003 13:55:47 -0800 (PST) From: David Malone Message-Id: <200303132155.h2DLtlKj050108@freefall.freebsd.org> To: dwmalone@FreeBSD.org, freebsd-bugs@FreeBSD.org, imp@FreeBSD.org Subject: Re: i386/49033: Make FreeBSD recognize new ASUS WL-100 Wireless Card Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Make FreeBSD recognize new ASUS WL-100 Wireless Card Responsible-Changed-From-To: freebsd-bugs->imp Responsible-Changed-By: dwmalone Responsible-Changed-When: Thu Mar 13 13:55:07 PST 2003 Responsible-Changed-Why: Pccard/if_wi IDs for Warner. http://www.freebsd.org/cgi/query-pr.cgi?pr=49033 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Mar 13 14: 0:52 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 488E337B401; Thu, 13 Mar 2003 14:00:51 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 91D7743F93; Thu, 13 Mar 2003 14:00:50 -0800 (PST) (envelope-from dwmalone@FreeBSD.org) Received: from freefall.freebsd.org (dwmalone@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h2DM0oNS051122; Thu, 13 Mar 2003 14:00:50 -0800 (PST) (envelope-from dwmalone@freefall.freebsd.org) Received: (from dwmalone@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h2DM0o1S051118; Thu, 13 Mar 2003 14:00:50 -0800 (PST) Date: Thu, 13 Mar 2003 14:00:50 -0800 (PST) From: David Malone Message-Id: <200303132200.h2DM0o1S051118@freefall.freebsd.org> To: dwmalone@FreeBSD.org, freebsd-bugs@FreeBSD.org, dwmalone@FreeBSD.org Subject: Re: bin/29725: [PATCH] Fixed segmentation fault in simple_httpd and some other bugfixes Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: [PATCH] Fixed segmentation fault in simple_httpd and some other bugfixes Responsible-Changed-From-To: freebsd-bugs->dwmalone Responsible-Changed-By: dwmalone Responsible-Changed-When: Thu Mar 13 13:58:22 PST 2003 Responsible-Changed-Why: I'll have a look at this. http://www.freebsd.org/cgi/query-pr.cgi?pr=29725 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Mar 13 14:20: 7 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 88D5B37B401 for ; Thu, 13 Mar 2003 14:20:06 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id EF0B943FBF for ; Thu, 13 Mar 2003 14:20:05 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h2DMK5NS057650 for ; Thu, 13 Mar 2003 14:20:05 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h2DMK5Cv057649; Thu, 13 Mar 2003 14:20:05 -0800 (PST) Date: Thu, 13 Mar 2003 14:20:05 -0800 (PST) Message-Id: <200303132220.h2DMK5Cv057649@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Tim Robbins Subject: Re: kern/49992: panic: VFS_MOUNT(mp, SCARG(uap, path), SCARG(uap, data), &nd, p); Reply-To: Tim Robbins Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR kern/49992; it has been noted by GNATS. From: Tim Robbins To: bug-followup@freebsd.org Cc: Subject: Re: kern/49992: panic: VFS_MOUNT(mp, SCARG(uap, path), SCARG(uap, data), &nd, p); Date: Fri, 14 Mar 2003 09:10:21 +1100 You have not included any information about how to reproduce the problem, not even the command you typed to cause the panic. Tim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Mar 13 15:40:37 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 039F237B401; Thu, 13 Mar 2003 15:40:37 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 45EB243F93; Thu, 13 Mar 2003 15:40:36 -0800 (PST) (envelope-from scrappy@FreeBSD.org) Received: from freefall.freebsd.org (scrappy@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h2DNeaNS096382; Thu, 13 Mar 2003 15:40:36 -0800 (PST) (envelope-from scrappy@freefall.freebsd.org) Received: (from scrappy@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h2DNeZE2096378; Thu, 13 Mar 2003 15:40:35 -0800 (PST) Date: Thu, 13 Mar 2003 15:40:35 -0800 (PST) From: "Marc G. Fournier" Message-Id: <200303132340.h2DNeZE2096378@freefall.freebsd.org> To: scrappy@hub.org, scrappy@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: kern/49992: panic: VFS_MOUNT(mp, SCARG(uap, path), SCARG(uap, data), &nd, p); Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: panic: VFS_MOUNT(mp, SCARG(uap, path), SCARG(uap, data), &nd, p); State-Changed-From-To: open->closed State-Changed-By: scrappy State-Changed-When: Thu Mar 13 15:38:54 PST 2003 State-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=49992 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Mar 13 15:47:39 2003 Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D537137B401; Thu, 13 Mar 2003 15:47:37 -0800 (PST) Received: from mobile.hub.org (u173n136.eastlink.ca [24.224.173.136]) by mx1.FreeBSD.org (Postfix) with ESMTP id C93F643FBD; Thu, 13 Mar 2003 15:47:36 -0800 (PST) (envelope-from scrappy@hub.org) Received: by mobile.hub.org (Postfix, from userid 1000) id 6F4C93E1E; Thu, 13 Mar 2003 19:47:35 -0400 (AST) Received: from localhost (localhost [127.0.0.1]) by mobile.hub.org (Postfix) with ESMTP id 637883E19; Thu, 13 Mar 2003 19:47:35 -0400 (AST) Date: Thu, 13 Mar 2003 19:47:35 -0400 (AST) From: The Hermit Hacker X-X-Sender: scrappy@localhost To: Tim Robbins Cc: freebsd-bugs@FreeBSD.org Subject: Re: kern/49992: panic: VFS_MOUNT(mp, SCARG(uap, path), SCARG(uap, data), &nd, p); In-Reply-To: <200303132220.h2DMK5Cv057649@freefall.freebsd.org> Message-ID: <20030313194252.M1315@localhost> References: <200303132220.h2DMK5Cv057649@freefall.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Can you provide me with a means of doing this from the core file(s)? The server that this problem report is from is currently running 128 jails, and approx 2400 processes. I, personally, didn't do anything to cause the panic, but I can't tell you what someone was doing in the 128 jails ... I've closed the ticket though, since Tor suggested getting rid of the use of modules, since Frames 6 and 7 are totally void of information, and he's suggested that it might be related to the modules ... On Thu, 13 Mar 2003, Tim Robbins wrote: > The following reply was made to PR kern/49992; it has been noted by GNATS. > > From: Tim Robbins > To: bug-followup@freebsd.org > Cc: > Subject: Re: kern/49992: panic: VFS_MOUNT(mp, SCARG(uap, path), SCARG(uap, data), &nd, p); > Date: Fri, 14 Mar 2003 09:10:21 +1100 > > You have not included any information about how to reproduce the problem, > not even the command you typed to cause the panic. > > > Tim > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-bugs" in the body of the message > Marc G. Fournier ICQ#7615664 IRC Nick: Scrappy Systems Administrator @ hub.org primary: scrappy@hub.org secondary: scrappy@{freebsd|postgresql}.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Thu Mar 13 20:26:53 2003 Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2C34037B401; Thu, 13 Mar 2003 20:26:52 -0800 (PST) Received: from HAL9000.homeunix.com (12-233-57-224.client.attbi.com [12.233.57.224]) by mx1.FreeBSD.org (Postfix) with ESMTP id 79E5743FBF; Thu, 13 Mar 2003 20:26:51 -0800 (PST) (envelope-from das@FreeBSD.ORG) Received: from HAL9000.homeunix.com (localhost [127.0.0.1]) by HAL9000.homeunix.com (8.12.6/8.12.5) with ESMTP id h2E4QmIX018228; Thu, 13 Mar 2003 20:26:49 -0800 (PST) (envelope-from das@FreeBSD.ORG) Received: (from das@localhost) by HAL9000.homeunix.com (8.12.6/8.12.5/Submit) id h2E4Qmt1018227; Thu, 13 Mar 2003 20:26:48 -0800 (PST) (envelope-from das@FreeBSD.ORG) Date: Thu, 13 Mar 2003 20:26:48 -0800 From: David Schultz To: The Hermit Hacker Cc: Tim Robbins , freebsd-bugs@FreeBSD.ORG Subject: Re: kern/49992: panic: VFS_MOUNT(mp, SCARG(uap, path), SCARG(uap, data), &nd, p); Message-ID: <20030314042648.GA18065@HAL9000.homeunix.com> Mail-Followup-To: The Hermit Hacker , Tim Robbins , freebsd-bugs@FreeBSD.ORG References: <200303132220.h2DMK5Cv057649@freefall.freebsd.org> <20030313194252.M1315@localhost> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030313194252.M1315@localhost> Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Thus spake The Hermit Hacker : > Can you provide me with a means of doing this from the core file(s)? The > server that this problem report is from is currently running 128 jails, > and approx 2400 processes. I, personally, didn't do anything to cause the > panic, but I can't tell you what someone was doing in the 128 jails ... > > I've closed the ticket though, since Tor suggested getting rid of the use > of modules, since Frames 6 and 7 are totally void of information, and he's > suggested that it might be related to the modules ... Those question marks won't go away if you compile the modules into your kernel in this particular case. VFS_MOUNT is a macro that calls the function pointed to by mp->mnt_op->vfs_mount, and mnt_op looks like a junk pointer. Hopefully this is less mysterious than some of the other problems you've reported. I'll see if I can spot anything obviously wrong this weekend if nobody beats me to it. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Mar 14 1:30:17 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 51DF537B401 for ; Fri, 14 Mar 2003 01:30:15 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7D02143FDF for ; Fri, 14 Mar 2003 01:30:12 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h2E9UCNS052673 for ; Fri, 14 Mar 2003 01:30:12 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h2E9UCXp052672; Fri, 14 Mar 2003 01:30:12 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E95D937B401 for ; Fri, 14 Mar 2003 01:23:40 -0800 (PST) Received: from foem.leiden.webweaving.org (fia224-72.dsl.hccnet.nl [62.251.72.224]) by mx1.FreeBSD.org (Postfix) with ESMTP id 500AF43FCB for ; Fri, 14 Mar 2003 01:23:37 -0800 (PST) (envelope-from dirkx@foem.leiden.webweaving.org) Received: from foem.leiden.webweaving.org (localhost [127.0.0.1]) by foem.leiden.webweaving.org (8.12.6/8.12.6) with ESMTP id h2E9NZLF007956 for ; Fri, 14 Mar 2003 10:23:35 +0100 (CET) (envelope-from dirkx@foem.leiden.webweaving.org) Received: (from dirkx@localhost) by foem.leiden.webweaving.org (8.12.6/8.12.6/Submit) id h2E9NZrH007955; Fri, 14 Mar 2003 10:23:35 +0100 (CET) Message-Id: <200303140923.h2E9NZrH007955@foem.leiden.webweaving.org> Date: Fri, 14 Mar 2003 10:23:35 +0100 (CET) From: Dirk-Willem van Gulik Reply-To: Dirk-Willem van Gulik To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: conf/50000: ntpdate not ran before (x)ntpd Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 50000 >Category: conf >Synopsis: ntpdate not ran before (x)ntpd >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Mar 14 01:30:11 PST 2003 >Closed-Date: >Last-Modified: >Originator: Dirk-Willem van Gulik >Release: FreeBSD 5.0-CURRENT i386 >Organization: WebWeaving >Environment: System: FreeBSD foem.leiden.webweaving.org 5.0-CURRENT FreeBSD 5.0-CURRENT #1: Tue Nov 26 13:16:54 CET 2002 dirkx@foem.leiden.webweaving.org:/usr/obj/usr/src/sys/FOEM i386 >Description: ntpdate and (x)ntpd both need the same port. I.e. one cannot start ntpd and then use ntpdate. Now in some situations it is useful to have an ntpdate done just before starting ntpd; as the clock may have gone so far out of sync (as the machine was off for a long time) that ntpd is not able to wack it in sync. >How-To-Repeat: just enable both in your rc.conf and see ntpdate fail with a port already in use. >Fix: make rc.d/ntpd dependin gon ntpdate - so that the latter is ran first. Then you can both have ntpdate run first (and once during boot) to get the clock resonably in sync; and then rely on ntpd from thereon. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Mar 14 3:14:23 2003 Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BF04737B401 for ; Fri, 14 Mar 2003 03:14:22 -0800 (PST) Received: from bol.com.br (200-163-046-058.cpece7003.dsl.brasiltelecom.net.br [200.163.46.58]) by mx1.FreeBSD.org (Postfix) with SMTP id DD68543FB1 for ; Fri, 14 Mar 2003 03:14:17 -0800 (PST) (envelope-from redacaocoml@bol.com.br) From: "Redação Comercial" To: Subject: 300 Modelos de Cartas comerciais, avisos, convites, propostas, etc. Mime-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" Date: Fri, 14 Mar 2003 07:14:11 -0400 Content-Transfer-Encoding: 8bit Message-Id: <20030314111417.DD68543FB1@mx1.FreeBSD.org> Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org COMUNICADO IMPORTANTE!! Estamos lançando o KIT DE CARTAS COMERCIAIS, que sana suas dúvidas na elaboração de: agradecimentos, atestados e declarações, avisos, cartas de cobrança, cartas em inglês, comunicados, convites, contratos, propostas, empregos, solicitações e pedidos, telegramas, cartas por e-mail, etc. Composto de 02 (dois) disquetes com 150 modelos de documentos cada um, mais livreto 20 páginas, com técnicas de redação comercial. Indicado para: secretárias em geral, gerências, Rh, executivos, estudantes e empresas de toda ordem. Este kit possui um preço ínfimo em relação ao que poderá gerar no aperfeiçoamento da comunicação de sua empresa. Acesse nossa Home Page para mais detalhes: http://www.redacaocartas.ihp.com.br Ps: Caso não queira receber novas mensagens e novidades sobre esse assunto, acesse: http://www.remova-me.ihp.com.br To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Mar 14 6: 4:38 2003 Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0F41C37B404 for ; Fri, 14 Mar 2003 06:04:37 -0800 (PST) Received: from otter3.centtech.com (moat3.centtech.com [207.200.51.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1F72343F75 for ; Fri, 14 Mar 2003 06:04:36 -0800 (PST) (envelope-from anderson@centtech.com) Received: from centtech.com (electron.centtech.com [204.177.173.173]) by otter3.centtech.com (8.12.3/8.12.3) with ESMTP id h2EE4Y56051153; Fri, 14 Mar 2003 08:04:35 -0600 (CST) (envelope-from anderson@centtech.com) Message-ID: <3E71E15B.9010302@centtech.com> Date: Fri, 14 Mar 2003 08:04:11 -0600 From: Eric Anderson User-Agent: Mozilla/5.0 (X11; U; Linux i386; en-US; rv:1.0.1) Gecko/20020823 Netscape/7.0 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Ian Dowse Cc: freebsd-bugs@FreeBSD.org Subject: Re: kern/22594: NFS can't handle asymmetric server routing References: <200303112307.aa08677@salmon.maths.tcd.ie> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Ian Dowse wrote: > In message <200303112250.h2BMo7IJ056143@freefall.freebsd.org>, Eric Anderson wr > ites: > >>This fix works for the NFS server side, but from the client side, there >>is no way (that I know of) that allows you to allow this behavior. In >>other words, if I have a Solaris NFS server (that incorrectly responds >>on a different interface with the wrong source address), my FreeBSD NFS >>client hangs. I have submitted a PR for this long ago, and was told >>"too bad - they didn't follow the specs", but the reality is that the >>FreeBSD mount command (and amd for that matter) should have a bypass to >>say "I don't care if it comes back from a different source address, take >>it anyway" - so it will work. I know it is a security risk, but I >>should be able to enable that if I'd like. >> >>This PR should be re-opened. > > > The "-c" option to mount_nfs should do what you want - does this > work for you? I'm not sure if there's a way to do this for amd, > though on a recent (less than 6 weeks old) -STABLE you cound try > setting the sysctl variable `vfs.nfs.nfs_ip_paranoia' to 0. I don't know of any way to apply that (-c) to amd. Is there one? I'll try the paranoia tweak - when was that added? Does 4.8-RC1 have it? Eric -- ------------------------------------------------------------------ Eric Anderson Systems Administrator Centaur Technology Attitudes are contagious, is yours worth catching? ------------------------------------------------------------------ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Mar 14 9:50:10 2003 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 75DD337B401 for ; Fri, 14 Mar 2003 09:50:07 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A0E6643FBD for ; Fri, 14 Mar 2003 09:50:05 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h2EHo5NS070607 for ; Fri, 14 Mar 2003 09:50:05 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h2EHo5Pi070606; Fri, 14 Mar 2003 09:50:05 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 233B037B404 for ; Fri, 14 Mar 2003 09:46:10 -0800 (PST) Received: from zagreb.mioc.hr (zagreb.mioc.hr [193.198.200.3]) by mx1.FreeBSD.org (Postfix) with ESMTP id 616E443F85 for ; Fri, 14 Mar 2003 09:46:09 -0800 (PST) (envelope-from mkuntic@mioc.hr) Received: from mkuntic by zagreb.mioc.hr with local (Exim 4.10) id 18ttFv-0000vD-00 for FreeBSD-gnats-submit@freebsd.org; Fri, 14 Mar 2003 18:46:07 +0100 Message-Id: Date: Fri, 14 Mar 2003 18:46:07 +0100 From: Marko Kuntic Reply-To: Marko Kuntic To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: misc/50008: adduser recommendations Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 50008 >Category: misc >Synopsis: adduser recommendations >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Mar 14 09:50:05 PST 2003 >Closed-Date: >Last-Modified: >Originator: Marko Kuntic >Release: FreeBSD 5.0-RELEASE-p4 i386 >Organization: XV. gimnazija >Environment: System: FreeBSD 5.0-RELEASE-p4 >Description: The adduser utility lacks certain functionality desired by many administrators. These are: 1. 'userdir' functionality; creating a new user's home directory in the directory named by the first letter of the user's login 2. ability to, by default, assign users to some group, and not to a usergroup 3. assigning alternate permissions/ownership to the home directory and the newly created mail spool file, if desired All of this should be trivial to implement. Please consider it. >How-To-Repeat: N/A >Fix: N/A >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message From owner-freebsd-bugs Fri Mar 14 10:39:33 2003 Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 68CE337B401 for ; Fri, 14 Mar 2003 10:39:13 -0800 (PST) Received: from scsx01.sc.ehu.es (scsx01.sc.ehu.es [158.227.150.40]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0996643FA3 for ; Fri, 14 Mar 2003 10:39:11 -0800 (PST) (envelope-from stefand@scuc02.sc.ehu.es) Received: from swox03.sw.ehu.es (scuc02.sc.ehu.es [158.227.101.50]) by scsx01.sc.ehu.es (8.9.3/8.9.1) with ESMTP id TAA01133; Fri, 14 Mar 2003 19:39:06 +0100 (MET) Received: by swox03.sw.ehu.es (8.9.3/1.1.29.3/14Aug02-1129AM) id TAA0000295399; Fri, 14 Mar 2003 19:33:53 +0100 (CET) Date: Fri, 14 Mar 2003 19:33:53 +0100 From: "Stefan A. Deutscher" To: freebsd-bugs@freebsd.org Subject: FreeBSD 4.7/5.0 machine dies on scanpci & XFree (long) Message-ID: <20030314193352.A295229@swox03.sw.ehu.es> Reply-To: sad@mailaps.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i X-Operating-System: OSF1 V5.1 732 alpha Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Submitter-Id: no idea, am not posting from a FreeBSD box Originator: Stefan A. Deutscher Organization: Lunatic Asylum Confidential: no Synopsis: FreeBSD 4.7/5.0 machine dies on scanpci & XFree Severity: Priority: Category: bin, i386, kern(?) Class: sw-bug: software bugs. Release: 4.7-RELEASE and 5.0-RELEASE Environment: SW: FreeBSD 4.7 Release, 5.0 Release Clean installs to test system scanpci XFree 3.3.6 and XFree 4.2.x (? what ever comes as default) GENERIC and GENERIC + SMP kernels Hardware: Intergraph TD 4 2x Pentium 100 MHz, 512kB cache 64 MB FPM RAM (meanwhile 192 MB 70ns IBM FPM) Onboard NCR 53C810 SCSI controller BIOS 3.0.4 Onboard AMD Network controller Graphics cards tried: Matrox Millennium, 2 MB, PCI, Bios ??? Number 9FX Vision 330, S3 764x (Trio) based, 1MB, PCI, BIOS 2.03.15 Mouse: PS2 Description: Below in great detail How-To-Repeat: type either 'startx' or 'scanpci' Fix: No idea, alas # --- prose version -- Hi, I have posted this (and a releated request) to no avail in comp.unix.bsd.freebsd.misc, and also searched the web for help. While stumbling across similar souding problems, I didn't find a solution and am inclined to consider the bahviour of my box a bug. I cannot see any hardware conflicts from the various data I have gathered, but maybe someone here can. Other than that, I consider it a sw-bug. Description: As another interesting tidbit: The box builds kernel (in something like 3.5 hours) on one CPU - running the GERNERIC kernel - without a hickup time and again. When I boot a GENERIC-SMP kernel, on the other hand, the compile dies a after a while and takes the box with it on occasion; running a 'make -j 8' never gets through the compile. Anyway, below is all I have. I will be glad to collect more data in about a week when I am on the box again. Thanks for any and all help. Cheers, Stefan > Date: Wed, 5 Mar 2003 09:18:13 +0100 > From: "Stefan A. Deutscher" > To: sad@mailaps.org > X-Mailer: Mutt 1.0.1i > > From: stefand@attglobal.net (Stefan A. Deutscher) > Newsgroups: comp.unix.bsd.freebsd.misc > Subject: [Help] BSD 4.7/5.0 machine dies on scanpci & XFree (long) > Organization: Lunatic asylum > Reply-To: sad@mailaps.org > Message-ID: > User-Agent: slrn/0.9.6.2 (OS/2) > Date: 2 Mar 2003 21:23:28 GMT > > Hi all, > > I am still fighting with my Intergraph TD-4 (dual iP5-100 MHz) not > wanting to startx. It just freezes the machine, requiring a reset. > > Graphics card is a Number Nine FX Vision 330 PCI board (s3 764 / Trio 64 > based, 1 MB RAM, the board has an FCC number JF9-GXE64TrioPCI). > > I tried pretty much all I could think of, including setting it to only > vga or vesa modes, putting it into another PCI slot, even replacing it > with another, known-to-be-good Matrox Mill card: The result is the same, > it freezes. Upon startx, the machine shows the first few lines of the X > Server (nothing unusual nor error indicating) and then freezes, probably > around the time the server probes the card or the PCI bus or what not. > Log files do not get synced to disk, the box hangs up too fast. > I built a debug kernel but no crash dump gets written out, either. > > The scanpci option of the XServer hangs the machine as well, as does the > command line 'scanpci' command, unless called to use the OS method of > identifying the PCI stuff via > > # scanpci -v -0 > No PCI devices found > > > > I am flabbergasted. The box has an ncr 53c810 scsi controller, some > amd ethernet chip set onboard and the graphics card, in text mode all > works well. What is weird is that dmesg claims > > - there be no driver attached to the VGA card > pci0: at device 8.0 (no driver attached) > - the vga card to hang off some ISA bus: > vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 > > The whole thing happens whether I boot into FreeBSD 4.7-Release or into > 5.0-Release. So, hoping someone may help me to make something out of > this mess, I shall post: > > a) output of dmesg > b) output of sysctl hw > c) output of pciconf -l -v > d) the xf86config file (I tried both the default and hard wiring the > server to the PCI slot the card is in) > e) the s3 id as given by the s3id.exe DOS utility from S3 > f) the output of kldload vesa > g) the generic kernel config file > > > Any pointers are most welcome, as are CCs by email regarding the issue, > since I will only be able to read but not to post news in the next two > weeks. Thanks in advance! > Stefan > > > a) output of dmesg > ================== > > > Copyright (c) 1992-2003 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-RELEASE #0: Fri Feb 28 15:13:34 CET 2003 > root@twintower.asylum.net:/usr/src/sys/i386/compile/GENERIC-DEBUG-i586 > Preloaded elf kernel "/boot/kernel/kernel" at 0xc0636000. > Timecounter "i8254" frequency 1193182 Hz > Timecounter "TSC" frequency 99950248 Hz > CPU: Pentium/P54C (99.95-MHz 586-class CPU) > Origin = "GenuineIntel" Id = 0x524 Stepping = 4 > Features=0x7bf > real memory = 201326592 (192 MB) > avail memory = 188887040 (180 MB) > Intel Pentium detected, installing workaround for F00F bug > Initializing GEOMetry subsystem > npx0: on motherboard > npx0: INT 16 interface > pcib0: at pcibus 0 on motherboard > pci0: on pcib0 > eisab0: at device 2.0 on pci0 > eisa0: on eisab0 > mainboard0: on eisa0 slot 0 > isa0: on eisab0 > lnc0: port 0xff80-0xff9f irq 9 at device \ > 6.0 on pci0 > lnc0: Attaching PCNet/PCI Ethernet adapter > lnc0: PCnet-PCI address 08:00:36:30:75:02 > sym0: <810> port 0xfc00-0xfcff mem 0xffbdff00-0xffbdffff irq 10 at \ > device 7.0 on pci0 > sym0: No NVRAM, ID 7, Fast-10, SE, parity checking > pci0: at device 8.0 (no driver attached) > orm0: