From owner-freebsd-ppc Sun Jan 19 7:43:47 2003 Delivered-To: freebsd-ppc@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8590137B409 for ; Sun, 19 Jan 2003 07:43:43 -0800 (PST) Received: from postbode02.zonnet.nl (postbode02.zonnet.nl [62.58.50.89]) by mx1.FreeBSD.org (Postfix) with ESMTP id 83E6243FCB for ; Sun, 19 Jan 2003 07:43:27 -0800 (PST) (envelope-from lijst10sec@hotmail.com) Received: (qmail 25769 invoked by uid 0); 19 Jan 2003 15:43:25 -0000 Received: from unknown (HELO smtp.com) ([62.59.141.29]) (envelope-sender ) by postbode02.zonnet.nl (qmail-ldap-1.03) with SMTP for ; 19 Jan 2003 15:43:25 -0000 Date: Sun, 19 Jan 2003 15:54:13 +0100 From: lijst10sec@hotmail.com Subject: First Seconds: 40+ dating To: lijst10sec@hotmail.com Reply-To: info@firstseconds.nl X-Bulkmail: 2.05 Message-Id: <20030119154329.83E6243FCB@mx1.FreeBSD.org> Sender: owner-freebsd-ppc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG L.s. Onder single dertigers is "speeddating" een trend. Het snelle daten is een vrolijke en spannende manier om in korte tijd veel mensen te ontmoeten. First Seconds organiseert deze vorm van kennismaken voor alleenstaanden van begin 40 tot eind 50. In Hotel New York te Rotterdam op 23 februari zullen 25 dames 25 heren ontmoeten. Gedurende enkele minuten knopen zij een gesprekje aan, stellen wat vragen, beslissen of ze hun gespreksparter nog eens willen ontmoeten en gaan naar de volgende persoon. Aan het einde van de middag geeft men aan First Seconds door wie men leuk genoeg vindt voor een vervolg. Als er een 'match' is, ontvangen deelnemers de volgende dag het e-mailadres of telefoonnummer van de andere partij. Interesse in een vrolijk en spannend middagje uit? Bezoek onze site: http://www.firstseconds.nl Met vriendelijke groet, First Seconds To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ppc" in the body of the message From owner-freebsd-ppc Tue Jan 21 6:59:12 2003 Delivered-To: freebsd-ppc@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ECF8B37B401 for ; Tue, 21 Jan 2003 06:59:10 -0800 (PST) Received: from duke.cs.duke.edu (duke.cs.duke.edu [152.3.140.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3E61F43F13 for ; Tue, 21 Jan 2003 06:59:10 -0800 (PST) (envelope-from gallatin@cs.duke.edu) Received: from grasshopper.cs.duke.edu (grasshopper.cs.duke.edu [152.3.145.30]) by duke.cs.duke.edu (8.12.6/8.12.6) with ESMTP id h0LEx4ro029167 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO) for ; Tue, 21 Jan 2003 09:59:04 -0500 (EST) Received: (from gallatin@localhost) by grasshopper.cs.duke.edu (8.11.6/8.9.1) id h0LEwxx88613; Tue, 21 Jan 2003 09:58:59 -0500 (EST) (envelope-from gallatin@cs.duke.edu) From: Andrew Gallatin MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15917.24627.430905.314812@grasshopper.cs.duke.edu> Date: Tue, 21 Jan 2003 09:58:59 -0500 (EST) To: freebsd-ppc@freebsd.org Subject: pmap_remove_all() X-Mailer: VM 6.75 under 21.1 (patch 12) "Channel Islands" XEmacs Lucid Sender: owner-freebsd-ppc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG The kernel currently does not link because pmap_remove_all() isn't implemented for powerpc, and pagedaemon_waken isn't declared. Appended is a patch which fixes this. I have no idea if it works, (and no time to test) but it does make the kernel compile and link... FWIW, my pmap_remove_all() is based on the guts of pmap_page_protect(), so if pmap_page_protect() works, pmap_remove_all() should work too.. Drew Index: powerpc/powerpc/pmap.c =================================================================== RCS file: /home/ncvs/src/sys/powerpc/powerpc/pmap.c,v retrieving revision 1.50 diff -u -r1.50 pmap.c --- powerpc/powerpc/pmap.c 13 Nov 2002 05:39:58 -0000 1.50 +++ powerpc/powerpc/pmap.c 21 Jan 2003 14:52:44 -0000 @@ -190,6 +190,7 @@ }; int pmap_bootstrapped = 0; +int pmap_pagedaemon_waken; /* * Virtual and physical address of message buffer. @@ -1243,6 +1244,25 @@ ("pmap_remove_pages: non current pmap")); /* XXX */ } + +/* + * Remove this page from all mappings + */ + +void +pmap_remove_all(vm_page_t m) +{ + struct pvo_head *pvo_head; + struct pvo_entry *pvo, *next_pvo; + + pvo_head = vm_page_to_pvoh(m); + for (pvo = LIST_FIRST(pvo_head); pvo != NULL; pvo = next_pvo) { + next_pvo = LIST_NEXT(pvo, pvo_vlink); + PMAP_PVO_CHECK(pvo); /* sanity check */ + pmap_pvo_remove(pvo, -1); + } +} + /* * Lower the permission for all mappings to a given page. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ppc" in the body of the message From owner-freebsd-ppc Tue Jan 21 8:57:17 2003 Delivered-To: freebsd-ppc@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9A16D37B401 for ; Tue, 21 Jan 2003 08:57:15 -0800 (PST) Received: from duke.cs.duke.edu (duke.cs.duke.edu [152.3.140.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 11B3043F1E for ; Tue, 21 Jan 2003 08:57:11 -0800 (PST) (envelope-from gallatin@cs.duke.edu) Received: from grasshopper.cs.duke.edu (grasshopper.cs.duke.edu [152.3.145.30]) by duke.cs.duke.edu (8.12.6/8.12.6) with ESMTP id h0LGv5ro007094 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO) for ; Tue, 21 Jan 2003 11:57:05 -0500 (EST) Received: (from gallatin@localhost) by grasshopper.cs.duke.edu (8.11.6/8.9.1) id h0LGv0988716; Tue, 21 Jan 2003 11:57:00 -0500 (EST) (envelope-from gallatin@cs.duke.edu) From: Andrew Gallatin MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15917.31708.428540.631402@grasshopper.cs.duke.edu> Date: Tue, 21 Jan 2003 11:57:00 -0500 (EST) To: freebsd-ppc@freebsd.org Subject: updated pmap patch.. X-Mailer: VM 6.75 under 21.1 (patch 12) "Channel Islands" XEmacs Lucid Sender: owner-freebsd-ppc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Here's an updated pmap patch, which adds needed vm page queue locking to pmap_new_thread() ... this gets me to the mountroot prompt. However, something has changed in the last month, or I'm missing some patches or something, as I can no longer mount my root device. Geom? I don't know.. bootverbose doesn't seem to supply any useful info. Drew Index: powerpc/powerpc/pmap.c =================================================================== RCS file: /home/ncvs/src/sys/powerpc/powerpc/pmap.c,v retrieving revision 1.50 diff -u -r1.50 pmap.c --- powerpc/powerpc/pmap.c 13 Nov 2002 05:39:58 -0000 1.50 +++ powerpc/powerpc/pmap.c 21 Jan 2003 14:52:44 -0000 @@ -190,6 +190,7 @@ }; int pmap_bootstrapped = 0; +int pmap_pagedaemon_waken; /* * Virtual and physical address of message buffer. @@ -1243,6 +1244,25 @@ ("pmap_remove_pages: non current pmap")); /* XXX */ } + +/* + * Remove this page from all mappings + */ + +void +pmap_remove_all(vm_page_t m) +{ + struct pvo_head *pvo_head; + struct pvo_entry *pvo, *next_pvo; + + pvo_head = vm_page_to_pvoh(m); + for (pvo = LIST_FIRST(pvo_head); pvo != NULL; pvo = next_pvo) { + next_pvo = LIST_NEXT(pvo, pvo_vlink); + PMAP_PVO_CHECK(pvo); /* sanity check */ + pmap_pvo_remove(pvo, -1); + } +} + /* * Lower the permission for all mappings to a given page. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ppc" in the body of the message From owner-freebsd-ppc Tue Jan 21 16:58:40 2003 Delivered-To: freebsd-ppc@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EBF5437B401 for ; Tue, 21 Jan 2003 16:58:39 -0800 (PST) Received: from gt3.OntheNet.com.au (nt.com.au [203.13.70.61]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9173F43ED8 for ; Tue, 21 Jan 2003 16:58:38 -0800 (PST) (envelope-from grehan@freebsd.org) Received: from freebsd.org (CPE-203-45-238-180.qld.bigpond.net.au [203.45.238.180]) by gt3.OntheNet.com.au (8.12.6/8.12.6) with ESMTP id h0M16AvM082134; Wed, 22 Jan 2003 11:06:13 +1000 (EST) (envelope-from grehan@freebsd.org) Message-ID: <3E2DECBC.928C55C1@freebsd.org> Date: Wed, 22 Jan 2003 10:58:36 +1000 From: Peter Grehan X-Mailer: Mozilla 4.79 [en] (X11; U; Linux 2.2.14-12 i686) X-Accept-Language: en MIME-Version: 1.0 To: Andrew Gallatin Cc: freebsd-ppc@freebsd.org Subject: Re: updated pmap patch.. References: <15917.31708.428540.631402@grasshopper.cs.duke.edu> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ppc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > However, something has changed in the last month, or I'm missing some > patches or something, as I can no longer mount my root device. > Geom? I don't know.. bootverbose doesn't seem to supply any useful > info. *Almost* everything has made it back into CVS, except pmap.c and the GEOM file. I have to clean up pmap.c - it has the relics of some old debug code, and I'd like to clean up the geom file a bit. In the meantime, I've put them up at: www.freebsd.org/~grehan/pmap.c geom_apm.c later, Peter. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ppc" in the body of the message From owner-freebsd-ppc Tue Jan 21 17:27:41 2003 Delivered-To: freebsd-ppc@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 574B037B406; Tue, 21 Jan 2003 17:27:31 -0800 (PST) Received: from oldtimeradiovault.com (dsl-ebprk-208-38-10-98-cgy.nucleus.com [208.38.10.98]) by mx1.FreeBSD.org (Postfix) with ESMTP id B2FC043ED8; Tue, 21 Jan 2003 17:27:19 -0800 (PST) (envelope-from spam@garynuman.info) Received: from gkar.47AVE ([208.38.10.100]) by oldtimeradiovault.com ([208.38.10.98]) with SMTP (MDaemon.PRO.v6.0.3.R); Tue, 21 Jan 2003 18:27:42 -0700 From: "Joey Lindstrom" To: "postmaster@freebsd.org" , "Andrew Gallatin" , "owner-freebsd-ppc@FreeBSD.ORG" , "Peter Grehan" Cc: "freebsd-ppc@freebsd.org" Date: Tue, 21 Jan 2003 18:27:41 -0700 X-Mailer: PMMail 2000 Standard (2.20.2661) For Windows 2000 (5.0.2195;3) In-Reply-To: <3E2DECBC.928C55C1@freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Subject: Re: updated pmap patch.. X-MDRemoteIP: 208.38.10.100 X-Return-Path: spam@garynuman.info Reply-To: spam@garynuman.info Message-ID: Sender: owner-freebsd-ppc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I'm passing this email on to the recipient, but future emails will be spam-filtered until and unless you get your host unlisted from spews.org. The offending host is: freebsd.org (CPE-203-45-238-180.qld.bigpond.net.au [203.45.238.180]) On Wed, 22 Jan 2003 10:58:36 +1000, Peter Grehan wrote: >Return-path: >Received: from mx2.freebsd.org ([216.136.204.119]) > by oldtimeradiovault.com ([208.38.10.98]) > with SMTP (MDaemon.PRO.v6.0.3.R) > for ; Tue, 21 Jan 2003 17:59:36 -0700 >Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) > by mx2.freebsd.org (Postfix) with ESMTP > id 1182755DFD; Tue, 21 Jan 2003 16:58:41 -0800 (PST) > (envelope-from owner-freebsd-ppc@FreeBSD.ORG) >Received: by hub.freebsd.org (Postfix, from userid 538) > id D152937B405; Tue, 21 Jan 2003 16:58:40 -0800 (PST) >Received: from localhost (localhost [127.0.0.1]) > by hub.freebsd.org (Postfix) with SMTP > id CB93A2E801C; Tue, 21 Jan 2003 16:58:40 -0800 (PST) >Received: by hub.freebsd.org (bulk_mailer v1.12); Tue, 21 Jan 2003 16:58:40 -0800 >Delivered-To: freebsd-ppc@freebsd.org >Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) > by hub.freebsd.org (Postfix) with ESMTP id EBF5437B401 > for ; Tue, 21 Jan 2003 16:58:39 -0800 (PST) >Received: from gt3.OntheNet.com.au (nt.com.au [203.13.70.61]) > by mx1.FreeBSD.org (Postfix) with ESMTP id 9173F43ED8 > for ; Tue, 21 Jan 2003 16:58:38 -0800 (PST) > (envelope-from grehan@freebsd.org) >Received: from freebsd.org (CPE-203-45-238-180.qld.bigpond.net.au [203.45.238.180]) > by gt3.OntheNet.com.au (8.12.6/8.12.6) with ESMTP id h0M16AvM082134; > Wed, 22 Jan 2003 11:06:13 +1000 (EST) > (envelope-from grehan@freebsd.org) >Message-ID: <3E2DECBC.928C55C1@freebsd.org> >Date: Wed, 22 Jan 2003 10:58:36 +1000 >From: Peter Grehan >X-Mailer: Mozilla 4.79 [en] (X11; U; Linux 2.2.14-12 i686) >X-Accept-Language: en >MIME-Version: 1.0 >To: Andrew Gallatin >Cc: freebsd-ppc@freebsd.org >Subject: Re: updated pmap patch.. >References: <15917.31708.428540.631402@grasshopper.cs.duke.edu> >Content-Type: text/plain; charset=us-ascii >Content-Transfer-Encoding: 7bit >Sender: owner-freebsd-ppc@FreeBSD.ORG >List-ID: >List-Archive: (Web Archive) >List-Help: (List Instructions) >List-Subscribe: >List-Unsubscribe: >X-Loop: FreeBSD.ORG >Precedence: bulk >X-RBL-Warning: spam from 203.45.238.180 refused, see http://www.spews.org >X-MDRcpt-To: jay@garynuman.info >X-MDRemoteIP: 216.136.204.119 >X-Return-Path: owner-freebsd-ppc@FreeBSD.ORG >X-MDaemon-Deliver-To: spam@garynuman.info >Reply-To: owner-freebsd-ppc@FreeBSD.ORG > >> However, something has changed in the last month, or I'm missing some >> patches or something, as I can no longer mount my root device. >> Geom? I don't know.. bootverbose doesn't seem to supply any useful >> info. > > *Almost* everything has made it back into CVS, except pmap.c and the GEOM file. >I have to clean up pmap.c - it has the relics of some old debug code, >and I'd like to clean up the geom file a bit. > > In the meantime, I've put them up at: > > www.freebsd.org/~grehan/pmap.c > geom_apm.c > >later, > >Peter. > >To Unsubscribe: send mail to majordomo@FreeBSD.org >with "unsubscribe freebsd-ppc" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ppc" in the body of the message From owner-freebsd-ppc Tue Jan 21 19:18:13 2003 Delivered-To: freebsd-ppc@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A280637B401; Tue, 21 Jan 2003 19:18:12 -0800 (PST) Received: from duke.cs.duke.edu (duke.cs.duke.edu [152.3.140.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3E15B43F13; Tue, 21 Jan 2003 19:18:08 -0800 (PST) (envelope-from gallatin@cs.duke.edu) Received: from grasshopper.cs.duke.edu (grasshopper.cs.duke.edu [152.3.145.30]) by duke.cs.duke.edu (8.12.6/8.12.6) with ESMTP id h0M3I7ro017821 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO); Tue, 21 Jan 2003 22:18:07 -0500 (EST) Received: (from gallatin@localhost) by grasshopper.cs.duke.edu (8.11.6/8.9.1) id h0M3I2Q89390; Tue, 21 Jan 2003 22:18:02 -0500 (EST) (envelope-from gallatin@cs.duke.edu) From: Andrew Gallatin MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15918.3434.493018.167413@grasshopper.cs.duke.edu> Date: Tue, 21 Jan 2003 22:18:02 -0500 (EST) To: Peter Grehan Cc: freebsd-ppc@FreeBSD.ORG Subject: Re: updated pmap patch.. In-Reply-To: <3E2DECBC.928C55C1@freebsd.org> References: <15917.31708.428540.631402@grasshopper.cs.duke.edu> <3E2DECBC.928C55C1@freebsd.org> X-Mailer: VM 6.75 under 21.1 (patch 12) "Channel Islands" XEmacs Lucid Sender: owner-freebsd-ppc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Peter Grehan writes: > > However, something has changed in the last month, or I'm missing some > > patches or something, as I can no longer mount my root device. > > Geom? I don't know.. bootverbose doesn't seem to supply any useful > > info. > > *Almost* everything has made it back into CVS, except pmap.c and the GEOM file. > I have to clean up pmap.c - it has the relics of some old debug code, > and I'd like to clean up the geom file a bit. > > In the meantime, I've put them up at: > > www.freebsd.org/~grehan/pmap.c > geom_apm.c Excellent! Those 2 files get me going. Thanks. I managed to build a kernel natively too. It seems rock solid, no problems beating on the network. It can fill a 100Mb pipe w/o breaking a sweat. The only bug I noticed is there may be a problem with floating point. Every now and then, top reports crazy values for %cpu. This seems to only happen when another FP using process is running, so perhaps there may be some problem with saving/restoring the fp registers... I'm very impressed! Drew To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ppc" in the body of the message From owner-freebsd-ppc Thu Jan 23 11: 4: 6 2003 Delivered-To: freebsd-ppc@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7077037B401 for ; Thu, 23 Jan 2003 11:04:02 -0800 (PST) Received: from exchange.hacc.net (zzz-216043099140.splitrock.net [216.43.99.140]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5EE1C43E4A for ; Thu, 23 Jan 2003 11:04:01 -0800 (PST) (envelope-from dragger44@lbuksrthmvmm.nu) Received: by proxy.hacc.net with Internet Mail Service (5.5.2650.21) id ; Wed, 22 Jan 2003 23:01:05 -0600 Received: from oqingywbqaj.nu (a.51.91.13.infovia.com.ar [200.51.91.13]) by exchange.hacc.net with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.2650.21) id YD47R6GQ; Thu, 9 Jan 2003 00:09:18 -0600 From: Wendy To: freebsd-ppc@freebsd.org Cc: andreaisis@yahoo.com, ataraxia@bit-tech.net, diamondsil@yahoo.com, dennis@ecshelp.com, thesweetguy92664@aol.com, tom@k-5.com, cwoofter@opus2.com, xcdat1@ix.netcom.com, matflintoft@yahoo.com, moniquet1@hotmail.com, craig@iscp.bellcore.com Message-ID: <000029ee28b7$00006fda$00004012@lbuksrthmvmm.nu> Subject: Small Bio-tech firm with Major Cancer Breakthrough23586 Date: Wed, 08 Jan 2003 22:24:15 -2000 MIME-Version: 1.0 Content-Type: text/plain; charset="Windows-1252" Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ppc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG STOCK ALERT: BUY OTC BB : RJVN The Company profiled below is expected to announce several major accomplishments via Press Releases, which could dramatically effect its stock price over the next 30-days. You can be among the first to receive this information by opting-in to our mailing list at this time. You will receive live and timely updates regarding the company profiled below as well as free trials to valuable investment tools. See Opt-in instructions below. Buy OTC BB : RJVN - Investors who are still making money in the stock market are those who know what stocks are in play or stocks about to be promoted/syndicated. By now you probably realize that stocks don't just go up but are pushed up by brokerage firms that give companies exposure and analyst coverage, they promote them! To make money, an investor needs to buy at the beginning of the PUSH and sell within a 60-day period. We report on which stocks are being pushed and at what price levels to buy and sell at. Our current pick, OTC BB : RJVN is ready to move quickly with news to be released and a promotion underway. Company----------RJV Networks, Inc. Symbol-----------RJVN Current Price----$0.26 52 Week High-----$2.10 52 Week Low------$0.12 Target Price $2 in Q1/2003 Update: Experts agree that RJVN cancer treatment therapies capable of treating most cancers. Investment Highlights RJVN projects it will be able to treat most cancers with its combined targeted therapy treatment, which is based upon an astounding discovery by a molecular biologist at the Univ. of Michigan - The causal link to breast and most other malignancies and cancers in the protein Mammastatin. RJVN has developed a series of cancer treatment therapies, which utilize pan-cancer market antibodies. Antibody therapies do not create chemical toxicity and, as such, are fast tracked through the regulatory approval process. Using the therapy approach, RJVN is targeted to enter testing for its products this spring. RJVN's combination of two leading, well known technologies previously announced by BioCurex and InNexus Corp along with RJVN's key MAb protein replicating technology has allowed the Company to create a series of patented therapeutic products that many molecular biologists believe will treat most cancers. RJVN's R&D and Management are led by Dr. John Todd, Dr. Charles Morgan (a world renowned molecular biologist and 5 other industry leading Dr's all with several years experience in bio-tech development. For more info see RJVN in the news. ******************* Special Offer ******************* As a member of our opt-in mailing list, you will be among the first to receive up to the minute information regarding the company profiled above as well as a free 10-day trial to a website with real-time Level II quotes, research reports, OTC BB promo / syndication calendar, trading chat rooms, full threading message boards, along with many other valuable and free investment tools not readily available to the general public. This is an incredible opportunity! Just click the link below to send us an email, and you will be immediately added to our Opt-in list. Please be sure that "opt-me-in" is in the subject line of the email. MailTo:christie721@excite.com?Subject=opt-me-in . Thank you. ***********************Disclaimer******************** Information within this email contains "forward looking statements" within the meaning of Section 27A of the Securities Act of 1933 and Section 21B of the Securities Exchange Act of 1934. Any statements that express or involve discussions with respect to predictions, goals, expectations, beliefs, plans, projections, objectives, assumptions or future events or performance are not statements of historical fact and may be "forward looking statements." Forward looking statements are based on expectations, estimates and projections at the time the statements are made that involve a number of risks and uncertainties which could cause actual results or events to differ materially from those presently anticipated. Forward looking statements in this action may be identified through the use of words such as: "projects", "foresee", "expects", "estimates," "believes," "understands" "will," "anticipates," or that by statements indicating certain actions "may," "could," or "might" occur. All information provided within this email pertaining to investing, stocks, securities must be understood as information provided and not investment advice. Emerging Equity Alert advises all readers and subscribers to seek advice from a registered professional securities representative before deciding to trade in stocks featured within this email. None of the material within this report shall be construed as any kind of investment advice. In compliance with the Securities Act of 1933, Section 17(b), Emerging Stock Alert discloses the receipt of 125,000 unrestricted shares of RJVN from a third party for the publication of this report. Be aware of an inherent conflict of interest resulting from such compensation due to our intent to profit from the liquidation of these shares. Shares may be sold at any time, even after positive statements have been made regarding the above company. All factual information in this report was gathered from public sources, including but not limited to SEC filings, Company Press Releases, and Market Guide. Emerging Equity Alert believes this information to be reliable but can make no guarantee as to its accuracy or completeness. Use of the material within this email constitutes your acceptance of these terms. ****** Advertising Disclaimer ****** We are an internet advertising company and have received a monetary payment for this mailing service. We hold no stocks and have no personal interest in this company whatsoever. We are simply being paid to perform a service. This message is an advertisement. ****** Removal Instructions ****** This message has been sent to you in compliance with our strict anti-abuse regulations. We will continue to bring you valuable offers on the products and services that interest you most. If you do not wish to receive further mailings, please click below. We respect all removal requests. To be removed immediately from our mailing lists just click on the link below: MailTo:berryja3116@excite.com?Subject=Please-Remove . Be sure that "Please-Remove" is in the subject line of the email prior to sending it. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ppc" in the body of the message From owner-freebsd-ppc Fri Jan 24 11:56: 9 2003 Delivered-To: freebsd-ppc@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 608) id 7C53137B401; Fri, 24 Jan 2003 11:56:06 -0800 (PST) From: "Jonathan M. Bresler" To: spam@garynuman.info Cc: postmaster@freebsd.org, gallatin@cs.duke.edu, owner-freebsd-ppc@FreeBSD.ORG, grehan@freebsd.org, freebsd-ppc@freebsd.org In-reply-to: (spam@garynuman.info) Subject: Re: updated pmap patch.. References: Message-Id: <20030124195606.7C53137B401@hub.freebsd.org> Date: Fri, 24 Jan 2003 11:56:06 -0800 (PST) Sender: owner-freebsd-ppc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Joey, I have no idea who/what the host at ip address 203.45.238.180 is. it certainly is NOT part of FreeBSD.org. as we both know, a host can claim to be anything in the SMTP converation. it seems that 203.45.238.180 is claiming to be FreeBSD.org. FreeBSD.orig is contained in the 216.136.204.0 ip address range. jmb > From: "Joey Lindstrom" > Cc: "freebsd-ppc@freebsd.org" > Date: Tue, 21 Jan 2003 18:27:41 -0700 > Priority: Normal > Content-Type: text/plain; charset="us-ascii" > X-MDRemoteIP: 208.38.10.100 > X-Return-Path: spam@garynuman.info > Reply-To: spam@garynuman.info > > I'm passing this email on to the recipient, but future emails will be spam-filtered until > and unless you get your host unlisted from spews.org. The offending host is: > > freebsd.org (CPE-203-45-238-180.qld.bigpond.net.au [203.45.238.180]) > > > On Wed, 22 Jan 2003 10:58:36 +1000, Peter Grehan wrote: > > >Return-path: > >Received: from mx2.freebsd.org ([216.136.204.119]) > > by oldtimeradiovault.com ([208.38.10.98]) > > with SMTP (MDaemon.PRO.v6.0.3.R) > > for ; Tue, 21 Jan 2003 17:59:36 -0700 > >Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) > > by mx2.freebsd.org (Postfix) with ESMTP > > id 1182755DFD; Tue, 21 Jan 2003 16:58:41 -0800 (PST) > > (envelope-from owner-freebsd-ppc@FreeBSD.ORG) > >Received: by hub.freebsd.org (Postfix, from userid 538) > > id D152937B405; Tue, 21 Jan 2003 16:58:40 -0800 (PST) > >Received: from localhost (localhost [127.0.0.1]) > > by hub.freebsd.org (Postfix) with SMTP > > id CB93A2E801C; Tue, 21 Jan 2003 16:58:40 -0800 (PST) > >Received: by hub.freebsd.org (bulk_mailer v1.12); Tue, 21 Jan 2003 16:58:40 -0800 > >Delivered-To: freebsd-ppc@freebsd.org > >Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) > > by hub.freebsd.org (Postfix) with ESMTP id EBF5437B401 > > for ; Tue, 21 Jan 2003 16:58:39 -0800 (PST) > >Received: from gt3.OntheNet.com.au (nt.com.au [203.13.70.61]) > > by mx1.FreeBSD.org (Postfix) with ESMTP id 9173F43ED8 > > for ; Tue, 21 Jan 2003 16:58:38 -0800 (PST) > > (envelope-from grehan@freebsd.org) > >Received: from freebsd.org (CPE-203-45-238-180.qld.bigpond.net.au [203.45.238.180]) > > by gt3.OntheNet.com.au (8.12.6/8.12.6) with ESMTP id h0M16AvM082134; > > Wed, 22 Jan 2003 11:06:13 +1000 (EST) > > (envelope-from grehan@freebsd.org) > >Message-ID: <3E2DECBC.928C55C1@freebsd.org> > >Date: Wed, 22 Jan 2003 10:58:36 +1000 > >From: Peter Grehan > >X-Mailer: Mozilla 4.79 [en] (X11; U; Linux 2.2.14-12 i686) > >X-Accept-Language: en > >MIME-Version: 1.0 > >To: Andrew Gallatin > >Cc: freebsd-ppc@freebsd.org > >Subject: Re: updated pmap patch.. > >References: <15917.31708.428540.631402@grasshopper.cs.duke.edu> > >Content-Type: text/plain; charset=us-ascii > >Content-Transfer-Encoding: 7bit > >Sender: owner-freebsd-ppc@FreeBSD.ORG > >List-ID: > >List-Archive: (Web Archive) > >List-Help: (List Instructions) > >List-Subscribe: > >List-Unsubscribe: > >X-Loop: FreeBSD.ORG > >Precedence: bulk > >X-RBL-Warning: spam from 203.45.238.180 refused, see http://www.spews.org > >X-MDRcpt-To: jay@garynuman.info > >X-MDRemoteIP: 216.136.204.119 > >X-Return-Path: owner-freebsd-ppc@FreeBSD.ORG > >X-MDaemon-Deliver-To: spam@garynuman.info > >Reply-To: owner-freebsd-ppc@FreeBSD.ORG > > > >> However, something has changed in the last month, or I'm missing some > >> patches or something, as I can no longer mount my root device. > >> Geom? I don't know.. bootverbose doesn't seem to supply any useful > >> info. > > > > *Almost* everything has made it back into CVS, except pmap.c and the GEOM file. > >I have to clean up pmap.c - it has the relics of some old debug code, > >and I'd like to clean up the geom file a bit. > > > > In the meantime, I've put them up at: > > > > www.freebsd.org/~grehan/pmap.c > > geom_apm.c > > > >later, > > > >Peter. > > > >To Unsubscribe: send mail to majordomo@FreeBSD.org > >with "unsubscribe freebsd-ppc" in the body of the message > > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ppc" in the body of the message From owner-freebsd-ppc Sat Jan 25 13:38: 4 2003 Delivered-To: freebsd-ppc@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 95CF837B405 for ; Sat, 25 Jan 2003 13:38:03 -0800 (PST) Received: from mail.dada.it (mail3.dada.it [195.110.100.3]) by mx1.FreeBSD.org (Postfix) with SMTP id 0487743F18 for ; Sat, 25 Jan 2003 13:38:02 -0800 (PST) (envelope-from ale@unixmania.net) Received: (qmail 20857 invoked from network); 25 Jan 2003 21:37:53 -0000 Received: from unknown (HELO libero.sunshine.ale) (195.110.114.252) by mail.dada.it with SMTP; 25 Jan 2003 21:37:53 -0000 Received: by libero.sunshine.ale (Postfix, from userid 1001) id EA9155E1D; Sat, 25 Jan 2003 22:37:54 +0100 (CET) Date: Sat, 25 Jan 2003 22:37:54 +0100 From: Alessandro de Manzano To: ppc@freebsd.org Subject: does Teron CX MoBo works with FreeBSD for PPC ? Message-ID: <20030125223754.A34342@libero.sunshine.ale> Reply-To: Alessandro de Manzano Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i X-Operating-System: FreeBSD 4.7-STABLE Sender: owner-freebsd-ppc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello! well, subj says all ;), however I'ld know, if possible, if Terra Soft's Teron CX motherboard (ATX factor, IBM 750CXe G3 CPU) would work with currently available (or soon availble ?) FreeBSD for PPC platform. Or, if not, is planned to support such hardware in future. Since I'ld try a new hardware platform, I'm looking for a quite affordable alternatives to x86 and this MoBo could be interesting... (just FYI : http://terrasoftsolutions.com/products/boxer/teron_cx.shtml ) Many thanks for your kind answer! :) -- bye! Ale To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ppc" in the body of the message From owner-freebsd-ppc Sat Jan 25 15:22:51 2003 Delivered-To: freebsd-ppc@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8E88D37B405 for ; Sat, 25 Jan 2003 15:22:49 -0800 (PST) Received: from mail.jeamland.net (rafe.jeamland.net [203.18.243.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id CA8FA43F7C for ; Sat, 25 Jan 2003 15:22:48 -0800 (PST) (envelope-from benno@FreeBSD.org) Received: from ratchet.int.jeamland.net (dsl-210-15-217-227.VIC.netspace.net.au [210.15.217.227]) by mail.jeamland.net (Postfix) with ESMTP id 593007060A; Sun, 26 Jan 2003 10:22:38 +1100 (EST) Subject: Re: does Teron CX MoBo works with FreeBSD for PPC ? From: Benno Rice To: freebsd-ppc@freebsd.org, Alessandro de Manzano In-Reply-To: <20030125223754.A34342@libero.sunshine.ale> References: <20030125223754.A34342@libero.sunshine.ale> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-eF95TPXZCBEDtolpBtrK" Organization: Message-Id: <1043536956.645.4.camel@localhost> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.2.1 Date: 26 Jan 2003 10:22:36 +1100 Sender: owner-freebsd-ppc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --=-eF95TPXZCBEDtolpBtrK Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Sun, 2003-01-26 at 08:37, Alessandro de Manzano wrote: > Hello! >=20 > well, subj says all ;), however I'ld know, if possible, if Terra > Soft's Teron CX motherboard (ATX factor, IBM 750CXe G3 CPU) would work > with currently available (or soon availble ?) FreeBSD for PPC platform. > Or, if not, is planned to support such hardware in future. >=20 > Since I'ld try a new hardware platform, I'm looking for a quite > affordable alternatives to x86 and this MoBo could be interesting... >=20 > (just FYI : http://terrasoftsolutions.com/products/boxer/teron_cx.shtml ) >=20 >=20 > Many thanks for your kind answer! :) FreeBSD won't work on that board yet, mainly because none of the people who are working on the port have one yet. We're mainly concentrating on New World Apple hardware at the moment, but I'm hoping to look at writing support for the Teron CX as soon as we get the Apple boxes working a bit better. --=20 Benno Rice --=-eF95TPXZCBEDtolpBtrK Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQA+Mxw8XjRwWofFmQkRAo8lAJ9i4jgVJrgrFrjQy0pOvdd/NaOHcACcDN8e z6B5IHVUO409hTKSc4iAt1g= =PimK -----END PGP SIGNATURE----- --=-eF95TPXZCBEDtolpBtrK-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ppc" in the body of the message