From owner-freebsd-emulation Mon Aug 19 1:51:30 2002 Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3895537B400 for ; Mon, 19 Aug 2002 01:51:29 -0700 (PDT) Received: from birch.ripe.net (birch.ripe.net [193.0.1.96]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3890643E3B for ; Mon, 19 Aug 2002 01:51:28 -0700 (PDT) (envelope-from marks@ripe.net) Received: from laptop.6bone.nl (cow.ripe.net [193.0.1.239]) by birch.ripe.net (8.12.5/8.11.6) with SMTP id g7J8pQSe030338; Mon, 19 Aug 2002 10:51:26 +0200 Received: (nullmailer pid 1702 invoked by uid 1000); Mon, 19 Aug 2002 08:51:17 -0000 Date: Mon, 19 Aug 2002 10:51:17 +0200 From: Mark Santcroos To: Roberto Rios Cc: freebsd-emulation@FreeBSD.ORG Subject: Re: Workstation PANIC: BUG F(571):1607 bugNr=2302 Message-ID: <20020819085116.GB706@laptop.6bone.nl> References: <20020815073946.GC615@laptop.6bone.nl> <20020815232015.33762.qmail@web11101.mail.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020815232015.33762.qmail@web11101.mail.yahoo.com> User-Agent: Mutt/1.4i X-Handles: MS6-6BONE, MS18417-RIPE X-RIPE-Spam-Status: NONE ; -1034 X-RIPE-Spam-Level: Sender: owner-freebsd-emulation@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Thu, Aug 15, 2002 at 04:20:15PM -0700, Roberto Rios wrote: > Im using a -RELEASE Then you might think about upgrading, vmware doesn't sound like running on a production server ;-) Mark -- Mark Santcroos RIPE Network Coordination Centre http://www.ripe.net/home/mark/ New Projects Group/TTM To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-emulation" in the body of the message From owner-freebsd-emulation Tue Aug 20 4: 1:52 2002 Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 24F6A37B400 for ; Tue, 20 Aug 2002 04:01:47 -0700 (PDT) Received: from birch.ripe.net (birch.ripe.net [193.0.1.96]) by mx1.FreeBSD.org (Postfix) with ESMTP id 34B9A43E4A for ; Tue, 20 Aug 2002 04:01:46 -0700 (PDT) (envelope-from marks@ripe.net) Received: from laptop.6bone.nl (cow.ripe.net [193.0.1.239]) by birch.ripe.net (8.12.5/8.11.6) with SMTP id g7KB1iF4014904; Tue, 20 Aug 2002 13:01:44 +0200 Received: (nullmailer pid 28320 invoked by uid 1000); Tue, 20 Aug 2002 11:01:34 -0000 Date: Tue, 20 Aug 2002 13:01:34 +0200 From: Mark Santcroos To: emulation@freebsd.org Cc: vsilyaev@mindspring.com Subject: vmware2 fix for fo_ioctl api change Message-ID: <20020820110134.GG716@laptop.6bone.nl> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="bp/iNruPH9dso1Pn" Content-Disposition: inline User-Agent: Mutt/1.4i X-Handles: MS6-6BONE, MS18417-RIPE X-RIPE-Spam-Status: NONE ; -989 X-RIPE-Spam-Level: Sender: owner-freebsd-emulation@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org --bp/iNruPH9dso1Pn Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Attached patches fixes compilation of vmware2 on -CURRENT. Note that it doesn't work at the moment, but that has other reasons and will be addressed in a seperate patch. (Not sure yet whether it is a vmware thing or a linux emu thing) Please commit. Mark (fo_ioctl.patch needs to be put in 'files' and makefile patch is needed to include that patch) -- Mark Santcroos RIPE Network Coordination Centre http://www.ripe.net/home/mark/ New Projects Group/TTM --bp/iNruPH9dso1Pn Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="vmware_makefile.patch" --- /usr/ports/emulators/vmware2/Makefile Wed Aug 14 19:01:42 2002 +++ ./Makefile Tue Aug 20 12:52:27 2002 @@ -110,6 +110,9 @@ ${WRKSRC}/vmware-distrib/vmmon-only/freebsd/*.c .endif cat ${FILESDIR}/kmoddeps.patch | (cd ${WRKSRC} && patch) > /dev/null 2>&1 +.if ${OSVERSION} >= 50038 + cat ${FILESDIR}/fo_ioctl.patch | (cd ${WRKSRC} && patch) > /dev/null 2>&1 +.endif setoptions: ${SED} -e 's;@@PREFIX@@;${PREFIX};' \ --bp/iNruPH9dso1Pn Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="fo_ioctl.patch" --- vmmon-only/freebsd/linux_emu.c Tue Aug 20 12:40:02 2002 +++ vmmon-only/freebsd/linux_emu.c Tue Aug 20 12:42:23 2002 @@ -306,7 +306,7 @@ struct linux_floppy_struct fls; struct fd_type fdt; - if ((error = fo_ioctl(fp, FD_GTYPE, (caddr_t)&fdt, td)) != 0) + if ((error = fo_ioctl(fp, FD_GTYPE, (caddr_t)&fdt, td->td_ucred, td)) != 0) return error; bzero(&fls, sizeof(fls)); @@ -330,7 +330,7 @@ struct linux_hd_geometry drive_geo; struct disklabel dl; - if ((error = fo_ioctl(fp, DIOCGDINFO, (caddr_t)&dl, td)) != 0) + if ((error = fo_ioctl(fp, DIOCGDINFO, (caddr_t)&dl, td->td_ucred, td)) != 0) return error; bzero(&drive_geo, sizeof(drive_geo)); @@ -351,7 +351,7 @@ struct linux_hd_driveid driveid; unsigned int capacity; - if ((error = fo_ioctl(fp, DIOCGDINFO, (caddr_t)&dl, td)) != 0) + if ((error = fo_ioctl(fp, DIOCGDINFO, (caddr_t)&dl, td->td_ucred, td)) != 0) return error; bzero(&driveid, sizeof(driveid)); @@ -388,7 +388,7 @@ struct ioc_vol bsd_vol; struct linux_cdrom_volctrl linux_vol; - if ((error = fo_ioctl(fp, CDIOCGETVOL, (caddr_t)&bsd_vol, td)) != 0) + if ((error = fo_ioctl(fp, CDIOCGETVOL, (caddr_t)&bsd_vol, td->td_ucred, td)) != 0) return error; linux_vol.channel0 = bsd_vol.vol[0]; @@ -411,7 +411,7 @@ if ((error = copyin(muls, &ms, sizeof(ms))) != 0) return error; - if ((error = fo_ioctl(fp, CDIOREADTOCHEADER, (caddr_t)&h, td)) != 0) + if ((error = fo_ioctl(fp, CDIOREADTOCHEADER, (caddr_t)&h, td->td_ucred, td)) != 0) return error; bzero(&t, sizeof(t)); @@ -419,7 +419,7 @@ t.address_format = ms.addr_format ; /* BSD and LINUX formats equal */ t.track = 0; /* get content from the first track */ - if ((error = fo_ioctl(fp, CDIOREADTOCENTRY, (caddr_t)&t, td)) != 0) + if ((error = fo_ioctl(fp, CDIOREADTOCENTRY, (caddr_t)&t, td->td_ucred, td)) != 0) return error; bsd_to_linux_msf_lba(ms.addr_format, &t.entry.addr, &ms.addr); --- vmnet-only/freebsd/vmnet_linux.c Tue Aug 20 12:40:02 2002 +++ vmnet-only/freebsd/vmnet_linux.c Tue Aug 20 12:42:59 2002 @@ -90,7 +90,7 @@ switch (macAddr.version) { case 1: - error = fo_ioctl(fp, SIOCSIFADDR, (caddr_t)macAddr.addr, td); + error = fo_ioctl(fp, SIOCSIFADDR, (caddr_t)macAddr.addr, td->td_ucred, td); DEB(printf("Get ethernet address: %6D\n", macAddr.addr, ":")); break; default: --bp/iNruPH9dso1Pn-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-emulation" in the body of the message From owner-freebsd-emulation Fri Aug 23 9:13:43 2002 Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 365D437B401 for ; Fri, 23 Aug 2002 09:13:30 -0700 (PDT) Received: from rediffmail.com (host217-34-233-214.in-addr.btopenworld.com [217.34.233.214]) by mx1.FreeBSD.org (Postfix) with SMTP id 63DDF43E97 for ; Fri, 23 Aug 2002 09:13:18 -0700 (PDT) (envelope-from franklangers@rediffmail.com) From: "Frank Langa" To: Subject: ASSISTANCE Mime-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: 8bit Date: Fri, 23 Aug 2002 17:13:28 +0100 Reply-To: "Frank Langa" Message-Id: <20020823161318.63DDF43E97@mx1.FreeBSD.org> Sender: owner-freebsd-emulation@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org FROM: COL. FRANK LANGA. DEMOCRATIC REPUBLIC OF CONGO. Tel No: Your country Intl. access code + 8821652098236 email : franklanga@rediffmail.com Dear Sir/Madam SEEKING YOUR IMMEDIATE ASSISTANCE. Please permit me to make your acquaintance in so informal a manner. This is necessitated by my urgent need to reach a dependable and trust worthy foreign partner. This request may seem strange and unsolicited but I crave your indulgence and pray that you view it seriously. My name is COL. FRANK LANGA of the Democratic Republic of Congo and one of the close aides to the former President of the Democratic Republic of Congo LAURENT KABILA of blessed memory, may his soul rest in peace. Due to the military campaign of LAURENT KABILA to force out the rebels in my country, I and some of my colleagues were instructed by Late President Kabila to go abroad to purchase arms and ammunition worth of Twenty Million, Five Hundred Thousand United States Dollars only (US$20,500,000.00) to fight the rebel group. We were then given this money privately by the then President, LAURENT KABILA, without the knowledge of other Cabinet Members. But when President Kabila was killed in a bloody shoot-out by one of his bodyguards a day before we were schedule to travel out of Congo, We immediately decided to put the funds into a private security company here in Congo for safe keeping. The security of the said amount is presently being threatened here following the arrest and seizure of properties of Col. Rasheidi Karesava (One of the aides to Laurent Kabila) a tribesman, and some other Military Personnel from our same tribe, by the new President of the Democratic Republic of Congo, the son of late President Laurent Kabila, Joseph Kabila. In view of this, we need a reliable and trustworthy foreign partner who can assist us to move this money out of my country as the beneficiary. WE have sufficient ''CONTACTS'' here to move the fund under Diplomatic Cover to a security company in Europe in your name. This is to ensure that the Diplomatic Baggage is marked ''CONFIDENTIAL'' and it will not pass through normal custom/airport screening and clearance. Our inability to move this money out of Congo all this while stems from our lack of trust of our supposed good friends (western countries) who suddenly became hostile to those of us who worked with the late President Kabila, immediately after his son took office. Though we have neither seen nor met each other, the information We gathered from an associate who has worked in your country has encouraged and convinced us that with your sincere assistance, this transaction will be properly handled with modesty and honesty to a huge success within two weeks. The said money is a state fund and therefore requires a total confidentiality. We would please need you to stand on our behalf as the beneficiary of this fund in Europe. This is because we are under restricted movement and watch and hence we want to be very careful in order not to lose this fund which we have worked so hard for. Thus, if you are willing to assist us to move this fund out of Congo, you can contact me through my email addresses, Tel/Fax nos. above with your telephone, fax number and personal information to enable us discuss the modalities and what will be your share (percentage) for assisting us. Please note that There are no RISKS involved in this Deal as everyone's Security is Guaranteed if we follow the required guidelines. I will hence furnish you with further details of this Deal as soon as I am assured of your Sincere interest to assist us. I must use this opportunity and medium to implore you to exercise the utmost indulgence to keep this matter extraordinarily confidential, Whatever your decision, while I await your prompt response. Thank you and God Bless. Best Regards COL. FRANK LANGA (RTD). f_langa22@yahoo.co.uk N\B. When you are calling my line, you dial your country Intl. access code, then you dial directly, do not include my country code i.e. (243). Just dial your country Intl. access code + 88216 52098236. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-emulation" in the body of the message From owner-freebsd-emulation Fri Aug 23 9:18: 2 2002 Delivered-To: freebsd-emulation@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C83EF37B405; Fri, 23 Aug 2002 09:17:59 -0700 (PDT) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7C09B43E6E; Fri, 23 Aug 2002 09:17:59 -0700 (PDT) (envelope-from johan@FreeBSD.org) Received: from freefall.freebsd.org (johan@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.4/8.12.4) with ESMTP id g7NGHxJU088791; Fri, 23 Aug 2002 09:17:59 -0700 (PDT) (envelope-from johan@freefall.freebsd.org) Received: (from johan@localhost) by freefall.freebsd.org (8.12.4/8.12.4/Submit) id g7NGHxWB088787; Fri, 23 Aug 2002 09:17:59 -0700 (PDT) Date: Fri, 23 Aug 2002 09:17:59 -0700 (PDT) From: Johan Karlsson Message-Id: <200208231617.g7NGHxWB088787@freefall.freebsd.org> To: johan@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-emulation@FreeBSD.org Subject: Re: kern/41543: Easier wine/w23 support Sender: owner-freebsd-emulation@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Easier wine/w23 support Responsible-Changed-From-To: freebsd-bugs->freebsd-emulation Responsible-Changed-By: johan Responsible-Changed-When: Fri Aug 23 09:16:53 PDT 2002 Responsible-Changed-Why: Over to emulation to decide its fate. http://www.freebsd.org/cgi/query-pr.cgi?pr=41543 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-emulation" in the body of the message From owner-freebsd-emulation Sat Aug 24 19:11:46 2002 Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1DA8137B400; Sat, 24 Aug 2002 19:11:44 -0700 (PDT) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C37EA43E4A; Sat, 24 Aug 2002 19:11:43 -0700 (PDT) (envelope-from johan@FreeBSD.org) Received: from freefall.freebsd.org (johan@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.4/8.12.4) with ESMTP id g7P2BhJU055538; Sat, 24 Aug 2002 19:11:43 -0700 (PDT) (envelope-from johan@freefall.freebsd.org) Received: (from johan@localhost) by freefall.freebsd.org (8.12.4/8.12.4/Submit) id g7P2BhJ9055534; Sat, 24 Aug 2002 19:11:43 -0700 (PDT) Date: Sat, 24 Aug 2002 19:11:43 -0700 (PDT) From: Johan Karlsson Message-Id: <200208250211.g7P2BhJ9055534@freefall.freebsd.org> To: johan@FreeBSD.org, freebsd-emulation@FreeBSD.org, emulation@FreeBSD.org Subject: Re: kern/41543: Easier wine/w23 support Sender: owner-freebsd-emulation@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Easier wine/w23 support Responsible-Changed-From-To: freebsd-emulation->emulation Responsible-Changed-By: johan Responsible-Changed-When: Sat Aug 24 19:11:08 PDT 2002 Responsible-Changed-Why: Use short names for mailing list to make searches using the web query form work with the shown responsible. This also makes open PRs show up in the summery mail. http://www.freebsd.org/cgi/query-pr.cgi?pr=41543 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-emulation" in the body of the message From owner-freebsd-emulation Sat Aug 24 19:11:46 2002 Delivered-To: freebsd-emulation@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1DA8137B400; Sat, 24 Aug 2002 19:11:44 -0700 (PDT) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C37EA43E4A; Sat, 24 Aug 2002 19:11:43 -0700 (PDT) (envelope-from johan@FreeBSD.org) Received: from freefall.freebsd.org (johan@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.4/8.12.4) with ESMTP id g7P2BhJU055538; Sat, 24 Aug 2002 19:11:43 -0700 (PDT) (envelope-from johan@freefall.freebsd.org) Received: (from johan@localhost) by freefall.freebsd.org (8.12.4/8.12.4/Submit) id g7P2BhJ9055534; Sat, 24 Aug 2002 19:11:43 -0700 (PDT) Date: Sat, 24 Aug 2002 19:11:43 -0700 (PDT) From: Johan Karlsson Message-Id: <200208250211.g7P2BhJ9055534@freefall.freebsd.org> To: johan@FreeBSD.org, freebsd-emulation@FreeBSD.org, emulation@FreeBSD.org Subject: Re: kern/41543: Easier wine/w23 support Sender: owner-freebsd-emulation@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: Easier wine/w23 support Responsible-Changed-From-To: freebsd-emulation->emulation Responsible-Changed-By: johan Responsible-Changed-When: Sat Aug 24 19:11:08 PDT 2002 Responsible-Changed-Why: Use short names for mailing list to make searches using the web query form work with the shown responsible. This also makes open PRs show up in the summery mail. http://www.freebsd.org/cgi/query-pr.cgi?pr=41543 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-emulation" in the body of the message