From owner-freebsd-sparc64@FreeBSD.ORG Sun Dec 3 05:30:18 2006 Return-Path: X-Original-To: freebsd-sparc64@hub.freebsd.org Delivered-To: freebsd-sparc64@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DE47216A407 for ; Sun, 3 Dec 2006 05:30:18 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.FreeBSD.org (Postfix) with ESMTP id D185243CA3 for ; Sun, 3 Dec 2006 05:29:53 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id kB35UIVF027363 for ; Sun, 3 Dec 2006 05:30:18 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id kB35UIIC027362; Sun, 3 Dec 2006 05:30:18 GMT (envelope-from gnats) Resent-Date: Sun, 3 Dec 2006 05:30:18 GMT Resent-Message-Id: <200612030530.kB35UIIC027362@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-sparc64@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Patrick Baggett Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E402116A40F for ; Sun, 3 Dec 2006 05:23:29 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [69.147.83.33]) by mx1.FreeBSD.org (Postfix) with ESMTP id 364D343CA2 for ; Sun, 3 Dec 2006 05:23:05 +0000 (GMT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.13.1/8.13.1) with ESMTP id kB35NTGx062727 for ; Sun, 3 Dec 2006 05:23:29 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id kB35NT9h062726; Sun, 3 Dec 2006 05:23:29 GMT (envelope-from nobody) Message-Id: <200612030523.kB35NT9h062726@www.freebsd.org> Date: Sun, 3 Dec 2006 05:23:29 GMT From: Patrick Baggett To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.0 Cc: Subject: sparc64/106251: malloc fails > for large allocations X-BeenThere: freebsd-sparc64@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting FreeBSD to the Sparc List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Dec 2006 05:30:18 -0000 >Number: 106251 >Category: sparc64 >Synopsis: malloc fails > for large allocations >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-sparc64 >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Dec 03 05:30:12 GMT 2006 >Closed-Date: >Last-Modified: >Originator: Patrick Baggett >Release: 6.2-RC1 >Organization: Figgle Software >Environment: FreeBSD SPARCLE.figglesoftware.com 6.2-RC1 FreeBSD 6.2-RC1 #0:Fri Nov 17 02.52.51 UTC 2006 root@s-dallas.cse.buffalo.edu/usr/obj/usr/src/sys/GENERIC sparc64 >Description: I have program that allocates four 768MB blocks of contiguous memory (total of 3GB = 4x768MB) and runs some operations on them. The after the first call (which successfully allocates the memory), the next 3 return NULL as if there was no memory available. Well... The system I work on is an Enterprise 420R 4xUltraSPARC II 400MHz with 4GB RAM. Running 'top' shows that right before running, there is 3667MB of free RAM, and 1024MB of swap available. This should be more than enough to allocate 3GB of RAM, or at least one more 768MB block (for a total of 1.5GB). I compiled this program as a 64 bit program using GCC, so I don't think it should be hitting the line for > 32 bit pointers. Even still, an x86 box could theoretically run this program too. I have successfully compiled and tested the program under Solaris 10, so I don't think there is an error in my source code. Running 'prstat' on Solaris 10 (similar to 'top' if you haven't used Solaris) shows the appropriate 3072MB of allocated RAM. FreeBSD should be able to allocate > 3GB of RAM on a 64 bit architecture, especially a 64 bit architecture. >How-To-Repeat: Run the test program included. Fails every time at allocation #2. $ gcc -m64 -O3 dist_fma.c -o dist_fma $ ./dist_fma >Fix: Allow large allocations? Patch attached with submission follows: /* dist_fma.c -- Distributed floating multiply-add to test sparc64 SMP performance Copyright 2006 Figgle Software Authors: Patrick Baggett (baggett.patrick@figglesoftware.com) */ #include #include #include #include #include #define NUM_FMA (1024*1024*192) /* 128M fma */ /* Use entire 64 bit register */ typedef unsigned long long u64; typedef struct FMAJob { float* x; float* y; float* z; float* out; unsigned int base; unsigned int qty; } FMAJob; /* 64 bit timer, millisecond accurate */ u64 Ticks() { struct timeval tv; gettimeofday(&tv, NULL); return (tv.tv_sec*1000) + (tv.tv_usec/1000); } static void* fma_thread(void* job) { FMAJob* pJob = (FMAJob*)job; u64 i; u64 base = pJob->base; for(i=0; iqty; i++) { pJob->out[i] = pJob->x[base+i]*pJob->y[base+i]+pJob->z[base+i]; } return NULL; } void InitData(float* x, float* y, float* z, float* out) { register u64 i; /* By initializing the data, we make sure that all pages are commited, not just reserved */ printf("Initializing data set...\n"); for(i=0; iRelease-Note: >Audit-Trail: >Unformatted: From owner-freebsd-sparc64@FreeBSD.ORG Mon Dec 4 11:09:03 2006 Return-Path: X-Original-To: freebsd-sparc64@FreeBSD.org Delivered-To: freebsd-sparc64@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 90D5616A538 for ; Mon, 4 Dec 2006 11:09:03 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.FreeBSD.org (Postfix) with ESMTP id 352B443CB9 for ; Mon, 4 Dec 2006 11:08:15 +0000 (GMT) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id kB4B8kOF045530 for ; Mon, 4 Dec 2006 11:08:46 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id kB4B8jUf045526 for freebsd-sparc64@FreeBSD.org; Mon, 4 Dec 2006 11:08:45 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 4 Dec 2006 11:08:45 GMT Message-Id: <200612041108.kB4B8jUf045526@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: linimon set sender to owner-bugmaster@FreeBSD.org using -f From: FreeBSD bugmaster To: freebsd-sparc64@FreeBSD.org Cc: Subject: Current problem reports assigned to you X-BeenThere: freebsd-sparc64@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting FreeBSD to the Sparc List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Dec 2006 11:09:03 -0000 Current FreeBSD problem reports Critical problems Serious problems S Tracker Resp. Description -------------------------------------------------------------------------------- o sparc/71729 sparc64 printf in kernel thread causes panic on SPARC o sparc/72962 sparc64 [sysinstall] Sysinstall panics on sparc64 if /dev/cd0 o sparc/80410 sparc64 [netgraph] netgraph is causing crash with mpd on sparc o sparc/80890 sparc64 [panic] kmem_malloc(73728): kmem_map too small running o sparc/91882 sparc64 [mouse] Ultra 10 mouse/keyboard o sparc/92033 sparc64 [dc] dc(4) issues on Ultra10 o sparc/95297 sparc64 vt100 term does not work in install o sparc/95892 sparc64 [hme] MAC address of hme interfaces is ff:ff:ff:ff:ff: o sparc/98269 sparc64 Fresh 6.1 installation fails to boot o sparc/104428 sparc64 nullfs panics on E4500 (but not E420) o sparc/105048 sparc64 [trm] trm(4) panics on sparc64 o sparc/105607 sparc64 ipfw on sparc64 doesn't work at all (causes panic) o sparc/106251 sparc64 malloc fails > for large allocations 13 problems total. Non-critical problems S Tracker Resp. Description -------------------------------------------------------------------------------- o sparc/72998 sparc64 [kernel] [patch] set_mcontext() change syscalls parame f sparc/91334 sparc64 FreeBSD 6.0 don't support tftp boot from remot tftp se o sparc/94190 sparc64 hw.physmem tunable does not work on sparc o sparc/94483 sparc64 [ath] ath_hal does not work on 6-release/sparc64 o sparc/97707 sparc64 mkskel.sh has bogus timestamp, causing buildworld on s o sparc/105157 sparc64 No reply to ping on Sparc64 6 problems total. From owner-freebsd-sparc64@FreeBSD.ORG Mon Dec 4 14:58:29 2006 Return-Path: X-Original-To: freebsd-sparc@FreeBSD.org Delivered-To: freebsd-sparc64@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 96AFE16A412 for ; Mon, 4 Dec 2006 14:58:29 +0000 (UTC) (envelope-from fred@fastcars.name) Received: from ns56.tstt.net.tt (ns56.tstt.net.tt [196.3.132.56]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8770843CC5 for ; Mon, 4 Dec 2006 14:57:44 +0000 (GMT) (envelope-from fred@fastcars.name) Received: from localhost (spam1.m.tstt.net.tt [192.168.1.56]) by ns56.tstt.net.tt (Postfix) with ESMTP id 2C1DCD7D for ; Mon, 4 Dec 2006 10:58:17 -0400 (AST) Received: from ns56.tstt.net.tt ([127.0.0.1]) by localhost (ns56.tstt.net.tt [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 42307-08 for ; Mon, 4 Dec 2006 10:58:08 -0400 (AST) Received: from ns46.tstt.net.tt (imap3.m.tstt.net.tt [192.168.1.46]) by ns56.tstt.net.tt (Postfix) with ESMTP id B59BCA08 for ; Mon, 4 Dec 2006 10:36:06 -0400 (AST) Received: from 192.168.254.2 (cuscon18746.tstt.net.tt [201.238.83.251]) by ns46.tstt.net.tt (Postfix) with SMTP id 70156AAB6DC for ; Mon, 4 Dec 2006 10:32:49 -0400 (AST) Message-ID: From: "fred" To: "freebsd-sparc" Date: Mon, 4 Dec 2006 10:37:58 -0400 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline X-Virus-Scanned: amavisd-new at tstt.net.tt MIME-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: Fast Cars Update !!! X-BeenThere: freebsd-sparc64@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: fred1234@fastcars.name List-Id: Porting FreeBSD to the Sparc List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Dec 2006 14:58:29 -0000 Dec. 2006 =20 Alert &nbs= p; =20 Stocks Screaming News NEW DEAL THAT WILL LIGHT UP THE BOARD!! &nb= sp; YOU=20 GET IT FIRST! =20 =20 ________________________________________ Biomoda=20 Inc. Symbol: BMOD Recent=20 Price: $3.75 &nb= sp; Day's Range: $3.00 -=20 4.00 Shares Outstanding: 7.187M New Interest=20 and High Potential for Growth (BMOD)! The buy signals are lighting up a= s=20 interest about Biomoda, Inc. builds: [1]http://www.biomoda.com/ BIOMODA, I= NC.=20 MUST BE WORTH ITS WEIGHT AND MORE Read More About The Deal Here... = We=20 have picked another winner with BMOD, for it has just now become public and=20 available to BUY in the market! This stock opened at $3.00 and is poi= sed=20 to make a HUGE run. We feel that this company must have something bre= wing=20 and it is only a matter of time before the news is out! Buying this s= tock=20 could make our investors RICHER than they were yesterday! Biomoda, Inc.= is=20 the right stock to play! ________________________________________ Biomoda Inc. Symbol:=20 BMOD Recent=20 Price: $3.75 &nb= sp; Day's Range: =20 $3.00 - 4.00 Incorporated: New Mexico The right place=20 at the right time! (BMOD) Biomoda, Inc. has just started to release news= and=20 we expect the volume to grow =85=85.. Volume plus price increase will sow s= trong=20 momentum on the MACD indicator. Shake It Up! - Volume and Interest Grow All aboard BMOD next stop $7.57 per share! We=20 think this company will be showing great on the charts by next week. = MACD=20 indicators should looking good and all we need now is some major news and t= his=20 stock should RUN! You know that we pick great stocks and that our=20 following takes us seriously. Biomoda, Inc. Webpage: [2]http://www.biomoda.com/ ________________________________________ MOMENTUM=20 BUILDING: Don't Miss This Stock - BMOD - Run, Run, Run! Advertisements=20 ________________________________________ [3]http://b= iz.yahoo.com/bw/061130/20061130005159.html?.v=3D1 [4]http://biz.yahoo.c= om/e/061114/bmod.ob10qsb.html ________________________________________ DISCLAIMER: We are not a registered broker and may not=20 sell, offer to sell or offer to buy any security. Our profiles are not a=20 solicitation or recommendation to buy, sell or hold securities. An offer to= buy=20 or sell can be made only with accompanying disclosure documents from the co= mpany=20 offering or selling securities and only in the states and provinces for whi= ch=20 they are approved. The material in this release is intended to be strictly=20 informational. Safe Harbor Statement Safe Harbor Statement Under the=20 Private Securities Litigation Reform Act of 1995: Any statements set forth= above=20 that are not historical facts are forward-looking statements that involve r= isks=20 and uncertainties that could cause actual results to differ materially from=20 those in the forward-looking statements. Potential risks and uncertainties=20 include, but are not limited to, such factors as market acceptance, ability= to=20 attract and retain customers, success of marketing and sales efforts, produ= ct=20 performance, competitive products and pricing, growth in targeted markets,= risks=20 of foreign operations, and other information detailed from time to time in= the=20 Company's filings with the United States Securities and Exchange Commission= . ________________________________________ [5]To unsubscribe or=20 change subscriber options:=20 Th= ere is a=20 very large public car park at rear of the shop. Here is the possibility to have a home with=20 potential for an annexed gite for summer rental. Set in Stunning Countrysid= e.=20 let us help you find your holiday home or property investment. This plot is in the very peaceful village o= f=20 Golyamo Boukovo. Laminate flooring in living room and Dining room along wit= h=20 Ceramic floors tiles in hall way, kitchen and bathroom. The views are stunning. Prices are going up fast, so dont delay, ge= t your=20 foot on the ladder while you can. Beautiful renovated farmhouse located in= the=20 foothills of the mountains with breathtaking views of the Pyrenees.=20 This land will be easy to regulate for buil= ding and=20 costs approx. Anywhere in South Yorkshire, may con= sider=20 other areas at right price. Looking for quick sale as moving abroad, he= nce low=20 price. - Flexibility for structural modification w= ithin=20 the building plan. The views are stunning. This village is Golyham Dervant and is appr= ox. You=20 wont get rich over night,but a good solid income. Reluctant sale due to business commitments= in the=20 UK. Ideal location for your dream home. Further=20 restaurants and shopping are just a short walk away. Once registered contac= t us=20 via e-mail and you account will be upgraded for FREE. Anywhere in South=20 Yorkshire, may consider other areas at right price. Local bikers fre= quent=20 the bar. The road access to this land is very=20 good. Although Secluded and Private, within easy= reach of=20 Supermarket and Shops. Planted with Pine, Olive and Fig trees. For Further=20 information about Puglia, upcoming area of Italy, visit our=20 website. Fully fitted carpet upstairs. Has own water= supply=20 and enviromentally friendly power supply. GENUINE ENQUIRIES ONLY. The access to the p= lot is=20 very good and is down a very quite side road. We pay you, in cash for every= sale=20 that goes through. This property is in the middle of the village yet is tuc= ked=20 away. I might be interested in swoping shop for house p. This will make a very grand home. There is a very large public car park at re= ar of=20 the shop. Here is the possibility to have a home with=20 potential for an annexed gite for summer rental. Set in Stunning Countrysid= e.=20 let us help you find your holiday home or property investment. This plot is in the very peaceful village o= f=20 Golyamo Boukovo. Laminate flooring in living room and Dining room along wit= h=20 Ceramic floors tiles in hall way, kitchen and bathroom. The views are stunning. Prices are going up fast, so dont delay, ge= t your=20 foot on the ladder while you can. Beautiful renovated farmhouse located in= the=20 foothills of the mountains with breathtaking views of the Pyrenees.=20 References 1. 3D"http://www.biomoda.com/" 2. 3D"http://www.biomoda.com/" 3. 3D"http://biz.yahoo.com/bw/061130/20061130005159.html?.v=3D1" 4. 3D"http://biz.yahoo.com/e/061114/bmod.ob10qsb.html" 5. 3D"mailto:fred1234@fa= From owner-freebsd-sparc64@FreeBSD.ORG Mon Dec 4 21:54:43 2006 Return-Path: X-Original-To: freebsd-sparc64@freebsd.org Delivered-To: freebsd-sparc64@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0608616AAE5 for ; Mon, 4 Dec 2006 21:54:43 +0000 (UTC) (envelope-from marius@alchemy.franken.de) Received: from alchemy.franken.de (alchemy.franken.de [194.94.249.214]) by mx1.FreeBSD.org (Postfix) with ESMTP id DFCE543F1E for ; Mon, 4 Dec 2006 21:52:25 +0000 (GMT) (envelope-from marius@alchemy.franken.de) Received: from alchemy.franken.de (localhost [127.0.0.1]) by alchemy.franken.de (8.13.8/8.13.8/ALCHEMY.FRANKEN.DE) with ESMTP id kB4LqwID059531; Mon, 4 Dec 2006 22:52:59 +0100 (CET) (envelope-from marius@alchemy.franken.de) Received: (from marius@localhost) by alchemy.franken.de (8.13.8/8.13.8/Submit) id kB4LqwFi059530; Mon, 4 Dec 2006 22:52:58 +0100 (CET) (envelope-from marius) Date: Mon, 4 Dec 2006 22:52:58 +0100 From: Marius Strobl To: Peter Losher Message-ID: <20061204215258.GA59351@alchemy.franken.de> References: <4531DE5B.10109@isc.org> <20061121211138.GA14799@alchemy.franken.de> <45639DB5.3030004@isc.org> <20061122225804.GU76234@alchemy.franken.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20061122225804.GU76234@alchemy.franken.de> User-Agent: Mutt/1.4.2.2i Cc: freebsd-sparc64@freebsd.org Subject: Re: Using Netra T1 105's as console servers. X-BeenThere: freebsd-sparc64@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting FreeBSD to the Sparc List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Dec 2006 21:54:43 -0000 On Wed, Nov 22, 2006 at 11:58:04PM +0100, Marius Strobl wrote: > On Tue, Nov 21, 2006 at 04:45:41PM -0800, Peter Losher wrote: > > Marius Strobl wrote: > > > > >> Has anyone used a T1 as a serial console server, and encountered these > > >> problems? > > > > > > FYI, in HEAD I've fixed rp(4) to work on sparc64. > > > > Hooray, any chance this can be backported to 6-STABLE? (or just a patch > > for now) ;) > > It needs no real backport; just grab the version from HEAD or > use the following patch, which also applies to RELENG_6: > http://people.freebsd.org/~marius/rp_64-bit_endian.diff > I've planned to MFC it to RELENG_6 in ~2 weeks. ...which I did some hours ago. Did the fix also work for you? > > > > > > I can also have a look at the USB drivers if you are still interested and tell me > > > which USB<->RS232 adapters you tried to use. On a quick glance at > > > least some of these drivers aren't endian-clean either. > > > > uplcom is the driver I am using for the USB<->RS232 converters we use > > (Prolific PL-2303/2303X/2303HX). > > Hrm, that's one of those drivers that actually look good to me :) > I'll see if I can get such hardware... ...which finally arrived today. At least with 7.0-CURRENT the adapter works just fine on sparc64 as expected (tested using the comms/minicom port). I haven't checked with RELENG_6, yet, but currently there are at least no driver specific differences in ucom(4) or uplcom(4) between RELENG_6 and HEAD. ucom0: on uhub0 Marius From owner-freebsd-sparc64@FreeBSD.ORG Tue Dec 5 10:58:33 2006 Return-Path: X-Original-To: freebsd-sparc@freebsd.org Delivered-To: freebsd-sparc64@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7413F16A492 for ; Tue, 5 Dec 2006 10:58:33 +0000 (UTC) (envelope-from p2334@www5.ready2host.de) Received: from www5.ready2host.de (www5.ready2host.de [85.10.198.229]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0077543CA7 for ; Tue, 5 Dec 2006 10:57:53 +0000 (GMT) (envelope-from p2334@www5.ready2host.de) Received: by www5.ready2host.de (Postfix, from userid 755) id F0FD21854; Tue, 5 Dec 2006 11:56:38 +0100 (CET) To: freebsd-sparc@freebsd.org From: HSBC Bank PLC. Message-Id: <1307461126.848@hsbc.co.uk> Content-Transfer-Encoding: 8bit Date: Tue, 5 Dec 2006 11:56:38 +0100 (CET) MIME-Version: 1.0 Content-Type: text/plain X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: Security Check: Confirm your Log-In details X-BeenThere: freebsd-sparc64@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting FreeBSD to the Sparc List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Dec 2006 10:58:33 -0000 HSBC Bank plc * HSBC Bank plc * * * * We noticed that you have transfered some money from your account and would like to take extra security measures to ensure that the transaction is not fraudulent. We have also increased in length our security number so as to put an end to all fraudulent activities. You are adviced to follow the link below to confirm your transfer before we complete the transaction. [1]https://securityalert.hsbc.co.uk/1/2/ Security Advisor HSBC Bank PLC. _________________________________________________________________ Please do not reply to this e-mail. Mail sent to this address cannot be answered. For assistance, log in to your HSBC Online Bank account and choose the "Help" link on any page. HSBC Email ID # 1009 References 1. http://www.affective-insanity.de/db/index.html From owner-freebsd-sparc64@FreeBSD.ORG Thu Dec 7 14:36:18 2006 Return-Path: X-Original-To: freebsd-sparc64@freebsd.org Delivered-To: freebsd-sparc64@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 856C116A412 for ; Thu, 7 Dec 2006 14:36:18 +0000 (UTC) (envelope-from anagrane@mail.domicile.fr) Received: from mail.domicile.fr (mirabelle.fts.domicile.fr [193.252.114.69]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9924043D46 for ; Thu, 7 Dec 2006 14:34:05 +0000 (GMT) (envelope-from anagrane@mail.domicile.fr) Received: from localhost (localhost.localdomain [127.0.0.1]) by mail.domicile.fr (Postfix) with ESMTP id 14ACA24368 for ; Thu, 7 Dec 2006 15:34:58 +0100 (CET) Received: from mail.domicile.fr ([127.0.0.1]) by localhost (mirabelle [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id 30162-06 for ; Thu, 7 Dec 2006 15:34:58 +0100 (CET) Received: from cgi12 (cgi12.v104.arc.oleane.net [192.168.4.74]) by mail.domicile.fr (Postfix) with ESMTP id 8FB332444D for ; Thu, 7 Dec 2006 15:34:44 +0100 (CET) Received: by cgi12 (Postfix, from userid 16152) id BFC47460CB; Thu, 7 Dec 2006 15:34:42 +0100 (CET) To: freebsd-sparc64@freebsd.org From: Donell Smith Content-Transfer-Encoding: 8bit Message-Id: <20061207143442.BFC47460CB@cgi12> Date: Thu, 7 Dec 2006 15:34:42 +0100 (CET) X-Virus-Scanned: by amavisd-new-20030616-p10 (Debian) at fts.domicile.fr MIME-Version: 1.0 Content-Type: text/plain X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Lavaro Offer X-BeenThere: freebsd-sparc64@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: donellsmith@o2.pl List-Id: Porting FreeBSD to the Sparc List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Dec 2006 14:36:18 -0000 Ciao Amico, Sono Mark Smith dal Regno Unito,lavoro per un\'azienda di textile(Acotextile Ltd.) Abbiamo clienti in Italia ma abbiamo poca difficoltà per ricevere i nostri soldi da loro,desiderano sempre pagare con l\'assegno ed è difficile da incassare un assegno italiano nel Regno Unito. Vi ho un lavoro per,questo lavoro non disturba il vostro lavoro.li desidero voi responsabile di pagamento in Italia. riceverete il pagamento dai nostri clienti e banca esso,in seguito vi darò le istruzioni su come trasmettere i soldi più velocemente noi nel Regno Unito.è soltanto servizio del banca che offrirete.Otterrete un buon stipendio se siete interessati.Risponda prego immediatamente in modo da vi fornisco le più informazioni sul lavoro. Grazie, Mark. Hello, I am Mark Smith from the UK.I work with Acotextile, an Asian textile company,we manufacture a wide range of textile and fabrics materials.We are presently in need of a new employee in Italy,we will recruit you as our payment representative in Italy. This job offer does not disturb your present job if any as it only entails banking services and book keeping services.The pay is good so please respond immediately. Regards, Mark. From owner-freebsd-sparc64@FreeBSD.ORG Fri Dec 8 00:34:20 2006 Return-Path: X-Original-To: sparc64@freebsd.org Delivered-To: freebsd-sparc64@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7679616A412; Fri, 8 Dec 2006 00:34:20 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from smarthost2.sentex.ca (smarthost2.sentex.ca [205.211.164.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id A3FE143CB9; Fri, 8 Dec 2006 00:33:25 +0000 (GMT) (envelope-from tinderbox@freebsd.org) Received: from smtp1.sentex.ca (smtp1.sentex.ca [199.212.134.4]) by smarthost2.sentex.ca (8.13.8/8.13.8) with ESMTP id kB80YJ4e090601; Thu, 7 Dec 2006 19:34:19 -0500 (EST) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by smtp1.sentex.ca (8.13.8/8.13.8) with ESMTP id kB80YJbL051981; Thu, 7 Dec 2006 19:34:19 -0500 (EST) (envelope-from tinderbox@freebsd.org) Received: by freebsd-current.sentex.ca (Postfix, from userid 666) id 52D8673034; Thu, 7 Dec 2006 19:34:19 -0500 (EST) Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Message-Id: <20061208003419.52D8673034@freebsd-current.sentex.ca> Date: Thu, 7 Dec 2006 19:34:19 -0500 (EST) Cc: Subject: [head tinderbox] failure on sparc64/sparc64 X-BeenThere: freebsd-sparc64@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Porting FreeBSD to the Sparc List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Dec 2006 00:34:20 -0000 TB --- 2006-12-07 23:31:26 - tinderbox 2.3 running on freebsd-current.sentex.ca TB --- 2006-12-07 23:31:26 - starting HEAD tinderbox run for sparc64/sparc64 TB --- 2006-12-07 23:31:26 - cleaning the object tree TB --- 2006-12-07 23:31:58 - checking out the source tree TB --- 2006-12-07 23:31:58 - cd /tinderbox/HEAD/sparc64/sparc64 TB --- 2006-12-07 23:31:58 - /usr/bin/cvs -f -R -q -d/home/ncvs update -Pd -A src TB --- 2006-12-07 23:39:42 - building world (CFLAGS=-O2 -pipe) TB --- 2006-12-07 23:39:42 - cd /src TB --- 2006-12-07 23:39:42 - /usr/bin/make -B buildworld >>> World build started on Thu Dec 7 23:39:43 UTC 2006 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Fri Dec 8 00:32:47 UTC 2006 TB --- 2006-12-08 00:32:47 - generating LINT kernel config TB --- 2006-12-08 00:32:47 - cd /src/sys/sparc64/conf TB --- 2006-12-08 00:32:47 - /usr/bin/make -B LINT TB --- 2006-12-08 00:32:47 - building LINT kernel (COPTFLAGS=-O2 -pipe) TB --- 2006-12-08 00:32:47 - cd /src TB --- 2006-12-08 00:32:47 - /usr/bin/make buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Fri Dec 8 00:32:47 UTC 2006 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies [...] awk -f /src/sys/tools/makeobjops.awk /src/sys/kern/serdev_if.m -h awk -f /src/sys/tools/makeobjops.awk /src/sys/libkern/iconv_converter_if.m -h awk -f /src/sys/tools/makeobjops.awk /src/sys/dev/ofw/ofw_bus_if.m -h awk -f /src/sys/tools/makeobjops.awk /src/sys/sparc64/pci/ofw_pci_if.m -h rm -f .newdep /usr/bin/make -V CFILES -V SYSTEM_CFILES -V GEN_CFILES | MKDEP_CPP="cc -E" CC="cc" xargs mkdep -a -f .newdep -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -fformat-extensions -nostdinc -I- -I. -I/src/sys -I/src/sys/contrib/altq -I/src/sys/contrib/ipfilter -I/src/sys/contrib/pf -I/src/sys/dev/ath -I/src/sys/contrib/ngatm -I/src/sys/dev/twa -I/src/sys/gnu/fs/xfs/FreeBSD -I/src/sys/gnu/fs/xfs/FreeBSD/support -I/src/sys/gnu/fs/xfs -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -mcmodel=medany -msoft-float -ffreestanding /src/sys/dev/mpt/mpt.c:2667:45: macro "MPT_2_HOST16" requires 2 arguments, but only 1 given mkdep: compile failed *** Error code 1 Stop in /obj/sparc64/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2006-12-08 00:34:18 - WARNING: /usr/bin/make returned exit code 1 TB --- 2006-12-08 00:34:18 - ERROR: failed to build lint kernel TB --- 2006-12-08 00:34:18 - tinderbox aborted TB --- 0.64 user 2.38 system 3772.48 real http://tinderbox.des.no/tinderbox-head-HEAD-sparc64-sparc64.full From owner-freebsd-sparc64@FreeBSD.ORG Fri Dec 8 00:51:50 2006 Return-Path: X-Original-To: sparc64@freebsd.org Delivered-To: freebsd-sparc64@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1626516A407; Fri, 8 Dec 2006 00:51:50 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from smarthost2.sentex.ca (smarthost2.sentex.ca [205.211.164.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3341943CA2; Fri, 8 Dec 2006 00:50:55 +0000 (GMT) (envelope-from tinderbox@freebsd.org) Received: from smtp2.sentex.ca (smtp2.sentex.ca [199.212.134.9]) by smarthost2.sentex.ca (8.13.8/8.13.8) with ESMTP id kB80pnJM093670; Thu, 7 Dec 2006 19:51:49 -0500 (EST) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by smtp2.sentex.ca (8.13.8/8.13.8) with ESMTP id kB80pnkT056407; Thu, 7 Dec 2006 19:51:49 -0500 (EST) (envelope-from tinderbox@freebsd.org) Received: by freebsd-current.sentex.ca (Postfix, from userid 666) id 08B1A73034; Thu, 7 Dec 2006 19:51:49 -0500 (EST) Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Message-Id: <20061208005149.08B1A73034@freebsd-current.sentex.ca> Date: Thu, 7 Dec 2006 19:51:49 -0500 (EST) X-Virus-Scanned: ClamAV version 0.88.1, clamav-milter version 0.88.1 on clamscanner2 X-Virus-Status: Clean Cc: Subject: [head tinderbox] failure on sparc64/sun4v X-BeenThere: freebsd-sparc64@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Porting FreeBSD to the Sparc List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Dec 2006 00:51:50 -0000 TB --- 2006-12-07 23:52:22 - tinderbox 2.3 running on freebsd-current.sentex.ca TB --- 2006-12-07 23:52:22 - starting HEAD tinderbox run for sparc64/sun4v TB --- 2006-12-07 23:52:22 - cleaning the object tree TB --- 2006-12-07 23:52:49 - checking out the source tree TB --- 2006-12-07 23:52:49 - cd /tinderbox/HEAD/sparc64/sun4v TB --- 2006-12-07 23:52:49 - /usr/bin/cvs -f -R -q -d/home/ncvs update -Pd -A src TB --- 2006-12-08 00:00:10 - building world (CFLAGS=-O2 -pipe) TB --- 2006-12-08 00:00:10 - cd /src TB --- 2006-12-08 00:00:10 - /usr/bin/make -B buildworld >>> World build started on Fri Dec 8 00:00:11 UTC 2006 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Fri Dec 8 00:50:31 UTC 2006 TB --- 2006-12-08 00:50:31 - generating LINT kernel config TB --- 2006-12-08 00:50:31 - cd /src/sys/sun4v/conf TB --- 2006-12-08 00:50:31 - /usr/bin/make -B LINT TB --- 2006-12-08 00:50:31 - building LINT kernel (COPTFLAGS=-O2 -pipe) TB --- 2006-12-08 00:50:31 - cd /src TB --- 2006-12-08 00:50:31 - /usr/bin/make buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Fri Dec 8 00:50:31 UTC 2006 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies [...] awk -f /src/sys/tools/makeobjops.awk /src/sys/libkern/iconv_converter_if.m -h awk -f /src/sys/tools/makeobjops.awk /src/sys/dev/ofw/ofw_bus_if.m -h awk -f /src/sys/tools/makeobjops.awk /src/sys/sparc64/pci/ofw_pci_if.m -h awk -f /src/sys/tools/makeobjops.awk /src/sys/sun4v/mdesc/mdesc_bus_if.m -h rm -f .newdep /usr/bin/make -V CFILES -V SYSTEM_CFILES -V GEN_CFILES | MKDEP_CPP="cc -E" CC="cc" xargs mkdep -a -f .newdep -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -fformat-extensions -nostdinc -I- -I. -I/src/sys -I/src/sys/contrib/altq -I/src/sys/contrib/ipfilter -I/src/sys/contrib/pf -I/src/sys/dev/ath -I/src/sys/contrib/ngatm -I/src/sys/dev/twa -I/src/sys/gnu/fs/xfs/FreeBSD -I/src/sys/gnu/fs/xfs/FreeBSD/support -I/src/sys/gnu/fs/xfs -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -mcmodel=medany -msoft-float -ffreestanding /src/sys/dev/mpt/mpt.c:2667:45: macro "MPT_2_HOST16" requires 2 arguments, but only 1 given mkdep: compile failed *** Error code 1 Stop in /obj/sun4v/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2006-12-08 00:51:48 - WARNING: /usr/bin/make returned exit code 1 TB --- 2006-12-08 00:51:48 - ERROR: failed to build lint kernel TB --- 2006-12-08 00:51:48 - tinderbox aborted TB --- 0.62 user 2.08 system 3566.92 real http://tinderbox.des.no/tinderbox-head-HEAD-sparc64-sun4v.full