<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<id>tag:old.nabble.com,2006:forum-6583</id>
	<title>Nabble - freebsd-hackers</title>
	<updated>2009-11-24T10:29:38Z</updated>
	<link rel="self" type="application/atom+xml" href="http://old.nabble.com/freebsd-hackers-f6583.xml" />
	<link rel="alternate" type="text/html" href="http://old.nabble.com/freebsd-hackers-f6583.html" />
	<subtitle type="html">Technical Discussions relating to FreeBSD</subtitle>
	
<entry>
	<id>tag:old.nabble.com,2006:post-26501398</id>
	<title>zero size set_pcpu linker sets</title>
	<published>2009-11-24T10:29:38Z</published>
	<updated>2009-11-24T10:29:38Z</updated>
	<author>
		<name>Navdeep Parhar</name>
	</author>
	<content type="html">objdump -h shows that most, but not all, KLDs on amd64 have a &amp;quot;set_pcpu&amp;quot;
&lt;br&gt;section of size 0. &amp;nbsp;Why? &amp;nbsp;What is the difference between having a 0
&lt;br&gt;sized set_pcpu vs. not having it at all?
&lt;br&gt;&lt;br&gt;The kernel linker considers the alignment requirements of these empty
&lt;br&gt;sections and advances mapsize/mapbase. &amp;nbsp;This bothers my kgdb (which is
&lt;br&gt;slightly modified to deal with amd64 KLDs).
&lt;br&gt;&lt;br&gt;I'm using the patch shown here as a stopgap measure. &amp;nbsp;I think the correct
&lt;br&gt;fix is to not have these empty sections in the KLD to begin with.
&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;Navdeep
&lt;br&gt;&lt;br&gt;diff -r 09b877bb00f2 sys/kern/link_elf_obj.c
&lt;br&gt;--- a/sys/kern/link_elf_obj.c &amp;nbsp; Mon Nov 23 12:42:09 2009 -0800
&lt;br&gt;+++ b/sys/kern/link_elf_obj.c &amp;nbsp; Tue Nov 24 10:13:02 2009 -0800
&lt;br&gt;@@ -680,10 +680,12 @@
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; switch (shdr[i].sh_type) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; case SHT_PROGBITS:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; case SHT_NOBITS:
&lt;br&gt;- &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; alignmask = shdr[i].sh_addralign - 1;
&lt;br&gt;- &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; mapsize += alignmask;
&lt;br&gt;- &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; mapsize &amp;= ~alignmask;
&lt;br&gt;- &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; mapsize += shdr[i].sh_size;
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if (shdr[i].sh_size) {
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; alignmask = shdr[i].sh_addralign - 1;
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; mapsize += alignmask;
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; mapsize &amp;= ~alignmask;
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; mapsize += shdr[i].sh_size;
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; break;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;@@ -740,9 +742,15 @@
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; switch (shdr[i].sh_type) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; case SHT_PROGBITS:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; case SHT_NOBITS:
&lt;br&gt;- &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; alignmask = shdr[i].sh_addralign - 1;
&lt;br&gt;- &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; mapbase += alignmask;
&lt;br&gt;- &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; mapbase &amp;= ~alignmask;
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if (shdr[i].sh_size) {
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; alignmask = shdr[i].sh_addralign - 1;
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; mapbase += alignmask;
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; mapbase &amp;= ~alignmask;
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if (ef-&amp;gt;shstrtab &amp;&amp; shdr[i].sh_name != 0)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ef-&amp;gt;progtab[pb].name =
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ef-&amp;gt;shstrtab + shdr[i].sh_name;
&lt;br&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26501398&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-hackers@...&lt;/a&gt; mailing list
&lt;br&gt;&lt;a href=&quot;http://lists.freebsd.org/mailman/listinfo/freebsd-hackers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.freebsd.org/mailman/listinfo/freebsd-hackers&lt;/a&gt;&lt;br&gt;To unsubscribe, send any mail to &amp;quot;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26501398&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-hackers-unsubscribe@...&lt;/a&gt;&amp;quot;
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/zero-size-set_pcpu-linker-sets-tp26501398p26501398.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26500925</id>
	<title>IPTPS '10 CFP</title>
	<published>2009-11-24T10:03:55Z</published>
	<updated>2009-11-24T10:03:55Z</updated>
	<author>
		<name>Lionel Garth Jones</name>
	</author>
	<content type="html">On behalf of the 9th International Workshop on Peer-to-Peer Systems
&lt;br&gt;(IPTPS '10) program committee, we are inviting you to submit engaging
&lt;br&gt;position papers on the current and future trends in peer-to-peer &amp;nbsp;
&lt;br&gt;systems.
&lt;br&gt;&lt;br&gt;Co-located with NSDI '10 in San Jose, CA, this one-day workshop provides
&lt;br&gt;a venue in which to present and discuss peer-to-peer technologies,
&lt;br&gt;applications, and systems and to identify key research issues and
&lt;br&gt;challenges that lie ahead.
&lt;br&gt;&lt;br&gt;This year, the workshop's charter will be expanded to include topics
&lt;br&gt;relating to self-organizing and self-managing distributed systems. This
&lt;br&gt;is in response to recent trends where self-organizing techniques
&lt;br&gt;proposed in early peer-to-peer systems have found their way into more
&lt;br&gt;managed settings such as datacenters, enterprises, and ISPs to help deal
&lt;br&gt;with growing scale, complexity, and heterogeneity. In the context of
&lt;br&gt;this year's workshop, peer-to-peer systems are defined to be large-scale
&lt;br&gt;distributed systems that are mostly decentralized, are self-organizing,
&lt;br&gt;and might or might not include resources from multiple administrative
&lt;br&gt;domains.
&lt;br&gt;&lt;br&gt;Papers will be selected based on originality, likelihood of spawning
&lt;br&gt;insightful discussion, and technical merit. The program will include
&lt;br&gt;presentations of position papers along with plenty of time for lively
&lt;br&gt;discussion among the participants, as well as a demo session for working
&lt;br&gt;systems.
&lt;br&gt;&lt;br&gt;Topics of interest include but are not limited to:
&lt;br&gt;&lt;br&gt;* Network and system support for peer-to-peer systems
&lt;br&gt;* Self-organizing and self-managing distributed systems
&lt;br&gt;* Adaptive algorithms and architectures for large-scale distributed &amp;nbsp;
&lt;br&gt;systems
&lt;br&gt;* New applications and protocols for peer-to-peer systems
&lt;br&gt;* Availability, robustness, performance, and scaling
&lt;br&gt;* Security, privacy, anonymity, anti-censorship, and incentives
&lt;br&gt;* Lessons drawn from experience with deployed peer-to-peer systems
&lt;br&gt;* Measurement, modeling, and workload characterization
&lt;br&gt;&lt;br&gt;Complete paper submissions are due Friday, December 18, 2009, 11:59
&lt;br&gt;p.m. EST.
&lt;br&gt;&lt;br&gt;For more details on the submission process, please see the complete
&lt;br&gt;Call for Papers at:
&lt;br&gt;&lt;a href=&quot;http://www.usenix.org/iptps10/cfpa/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.usenix.org/iptps10/cfpa/&lt;/a&gt;&lt;br&gt;&lt;br&gt;We look forward to receiving your submissions!
&lt;br&gt;&lt;br&gt;Michael J. Freedman, Princeton University
&lt;br&gt;Arvind Krishnamurthy, University of Washington
&lt;br&gt;IPTPS '10 Program Co-Chairs
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26500925&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;iptps10chairs@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;---------------------------------
&lt;br&gt;Call for Papers
&lt;br&gt;9th International Workshop on Peer-to-Peer Systems (IPTPS '10)
&lt;br&gt;April 27, 2010
&lt;br&gt;San Jose, CA
&lt;br&gt;&lt;a href=&quot;http://www.usenix.org/iptps10/cfpa/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.usenix.org/iptps10/cfpa/&lt;/a&gt;&lt;br&gt;Submissions Deadline: December 18, 2009, 11:59 p.m. EST
&lt;br&gt;---------------------------------
&lt;br&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26500925&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-hackers@...&lt;/a&gt; mailing list
&lt;br&gt;&lt;a href=&quot;http://lists.freebsd.org/mailman/listinfo/freebsd-hackers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.freebsd.org/mailman/listinfo/freebsd-hackers&lt;/a&gt;&lt;br&gt;To unsubscribe, send any mail to &amp;quot;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26500925&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-hackers-unsubscribe@...&lt;/a&gt;&amp;quot;
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/IPTPS-%2710-CFP-tp26500925p26500925.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26473835</id>
	<title>RE: Cisco Aironet MPI350 Fix</title>
	<published>2009-11-22T23:45:47Z</published>
	<updated>2009-11-22T23:45:47Z</updated>
	<author>
		<name>Fulano Tal</name>
	</author>
	<content type="html">&lt;br&gt;ignore that, I just discovered watson.org.., sorry.
&lt;br&gt;&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp;computers are not for me, really :/
&lt;br&gt;&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;Felipe.
&lt;br&gt;&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;From: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26473835&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gatinhodosseussonhos@...&lt;/a&gt;
&lt;br&gt;To: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26473835&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;obrien654j@...&lt;/a&gt;; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26473835&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-hackers@...&lt;/a&gt;
&lt;br&gt;Subject: RE: Cisco Aironet MPI350 Fix
&lt;br&gt;Date: Mon, 23 Nov 2009 05:17:30 +0100
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;Mr O'Brien,
&lt;br&gt;&amp;nbsp;
&lt;br&gt;I gave up of 8.0-RC3 a few days ago because I was unable of fix a missing /dev/agp,
&lt;br&gt;but I got better after reading &amp;quot;freeze up a few seconds about once a minute&amp;quot;,
&lt;br&gt;just after restart a frozen pc.
&lt;br&gt;&amp;nbsp;
&lt;br&gt;I start to storm again but the only thing I know is:
&lt;br&gt;a) slackware agp nod makes no sense
&lt;br&gt;b) obscure halts during lilo are happening
&lt;br&gt;c) frost login prompts broke with my freebsd zippy cowsay fortune fun
&lt;br&gt;&amp;nbsp;
&lt;br&gt;I need some clues or better, a breakpoint hint.
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp;
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Date: Sun, 22 Nov 2009 16:48:46 -0500
&lt;br&gt;&amp;gt; From: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26473835&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;obrien654j@...&lt;/a&gt;
&lt;br&gt;&amp;gt; To: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26473835&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-hackers@...&lt;/a&gt;
&lt;br&gt;&amp;gt; Subject: Cisco Aironet MPI350 Fix
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Hello,
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I have a Cisco Aironet MPI350 PCI card in my Thinkpad X31, and on a
&lt;br&gt;&amp;gt; fresh install of FreeBSD 8.0-RC3, the card did not work. Also, it caused
&lt;br&gt;&amp;gt; my system to freeze up for a few seconds about once a minute as the
&lt;br&gt;&amp;gt; driver spit out &amp;quot;an0: device timeout&amp;quot; messages so long as the interface
&lt;br&gt;&amp;gt; was up. I researched the issue, and found the following fix already in
&lt;br&gt;&amp;gt; dragonflybsd's tree:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://gitweb.dragonflybsd.org/dragonfly.git/commit/7a2a04db44efafea257db883ae3eb5e4ebf2ece9&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gitweb.dragonflybsd.org/dragonfly.git/commit/7a2a04db44efafea257db883ae3eb5e4ebf2ece9&lt;/a&gt;&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I modified the patch and applied it to FreeBSD's kernel (trivial), and
&lt;br&gt;&amp;gt; am happy to report that my card is now working flawlessly. Could someone
&lt;br&gt;&amp;gt; possibly review this patch and integrate it into the source tree so that
&lt;br&gt;&amp;gt; others may benefit from it as well?
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; The patch is based off of 8.0-RC3's code, but applies to the latest code
&lt;br&gt;&amp;gt; as well without modification.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Thank you,
&lt;br&gt;&amp;gt; Jeremy O'Brien
&lt;/div&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;A vida na frente do computador ficou mais simples: Chegou Windows 7! Clique e Conheça 
&lt;br&gt;&amp;nbsp;		 	 &amp;nbsp; 		 &amp;nbsp;
&lt;br&gt;_________________________________________________________________
&lt;br&gt;Agora a pressa é amiga da perfeição. Chegou o Windows 7. Conheça!
&lt;br&gt;&lt;a href=&quot;http://www.microsoft.com/brasil/windows7/default.html?WT.mc_id=1539_______________________________________________&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.microsoft.com/brasil/windows7/default.html?WT.mc_id=1539_______________________________________________&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26473835&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-hackers@...&lt;/a&gt; mailing list
&lt;br&gt;&lt;a href=&quot;http://lists.freebsd.org/mailman/listinfo/freebsd-hackers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.freebsd.org/mailman/listinfo/freebsd-hackers&lt;/a&gt;&lt;br&gt;To unsubscribe, send any mail to &amp;quot;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26473835&amp;i=6&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-hackers-unsubscribe@...&lt;/a&gt;&amp;quot;
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Cisco-Aironet-MPI350-Fix-tp26470105p26473835.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26473075</id>
	<title>Re: Wine on amd64 in 32 bit jail</title>
	<published>2009-11-22T21:11:02Z</published>
	<updated>2009-11-22T21:11:02Z</updated>
	<author>
		<name>Dylan Cochran</name>
	</author>
	<content type="html">On Sat, Nov 21, 2009 at 5:52 AM, Peter Jeremy &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26473075&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;peterjeremy@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; I did run into problems initially because my i386 userland wasn't
&lt;br&gt;&amp;gt; aligned with my amd64 kernel but rebuilding both fixed that (I'm
&lt;br&gt;&amp;gt; running 8.0-RC1 and a bit).
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Note that some tools that poke around in kernel innards won't work -
&lt;br&gt;&amp;gt; ps and lsof are the most obvious.  ktrace works but the resultant
&lt;br&gt;&amp;gt; ktrace.out files need to read with an amd64 kdump.
&lt;br&gt;&lt;br&gt;A word of caution: not all the ioctl's and setsockopt's have the
&lt;br&gt;proper glue code under COMBAT_FREEBSD32. For example, running ifconfig
&lt;br&gt;on 7.2 i386-on-amd64 is unable to set an ip address, and syscons
&lt;br&gt;ioctls are completely broken. The program will build properly, but
&lt;br&gt;will be unreliable at runtime (seemingly out of the blue segfaults, a
&lt;br&gt;few cases of sigbus). Especially if they do a blind cast without
&lt;br&gt;sanity checking and confinue forward on error.
&lt;br&gt;&lt;br&gt;While this may not seem that relevant on a build machine, remember
&lt;br&gt;that autoconf generates tiny stub binaries and runs them to determine
&lt;br&gt;'compatibility' for the binary it intends to build. It may feed
&lt;br&gt;information that will lead it to making incorrect guesses about the
&lt;br&gt;target environment. It's not very common, but it has happened, and can
&lt;br&gt;fly under the radar.
&lt;br&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26473075&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-hackers@...&lt;/a&gt; mailing list
&lt;br&gt;&lt;a href=&quot;http://lists.freebsd.org/mailman/listinfo/freebsd-hackers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.freebsd.org/mailman/listinfo/freebsd-hackers&lt;/a&gt;&lt;br&gt;To unsubscribe, send any mail to &amp;quot;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26473075&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-hackers-unsubscribe@...&lt;/a&gt;&amp;quot;
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Wine-on-amd64-in-32-bit-jail-tp26421531p26473075.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26472616</id>
	<title>RE: Cisco Aironet MPI350 Fix</title>
	<published>2009-11-22T20:17:30Z</published>
	<updated>2009-11-22T20:17:30Z</updated>
	<author>
		<name>Fulano Tal</name>
	</author>
	<content type="html">&lt;br&gt;Mr O'Brien,
&lt;br&gt;&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;I gave up of 8.0-RC3 a few days ago because I was unable of fix a missing /dev/agp,
&lt;br&gt;&lt;br&gt;but I got better after reading &amp;quot;freeze up a few seconds about once a minute&amp;quot;,
&lt;br&gt;&lt;br&gt;just after restart a frozen pc.
&lt;br&gt;&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;I start to storm again but the only thing I know is:
&lt;br&gt;&lt;br&gt;a) slackware agp nod makes no sense
&lt;br&gt;&lt;br&gt;b) obscure halts during lilo are happening
&lt;br&gt;&lt;br&gt;c) frost login prompts broke with my freebsd zippy cowsay fortune fun
&lt;br&gt;&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;I need some clues or better, a breakpoint hint.
&lt;br&gt;&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;&amp;nbsp;
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Date: Sun, 22 Nov 2009 16:48:46 -0500
&lt;br&gt;&amp;gt; From: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26472616&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;obrien654j@...&lt;/a&gt;
&lt;br&gt;&amp;gt; To: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26472616&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-hackers@...&lt;/a&gt;
&lt;br&gt;&amp;gt; Subject: Cisco Aironet MPI350 Fix
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Hello,
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I have a Cisco Aironet MPI350 PCI card in my Thinkpad X31, and on a
&lt;br&gt;&amp;gt; fresh install of FreeBSD 8.0-RC3, the card did not work. Also, it caused
&lt;br&gt;&amp;gt; my system to freeze up for a few seconds about once a minute as the
&lt;br&gt;&amp;gt; driver spit out &amp;quot;an0: device timeout&amp;quot; messages so long as the interface
&lt;br&gt;&amp;gt; was up. I researched the issue, and found the following fix already in
&lt;br&gt;&amp;gt; dragonflybsd's tree:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://gitweb.dragonflybsd.org/dragonfly.git/commit/7a2a04db44efafea257db883ae3eb5e4ebf2ece9&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gitweb.dragonflybsd.org/dragonfly.git/commit/7a2a04db44efafea257db883ae3eb5e4ebf2ece9&lt;/a&gt;&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I modified the patch and applied it to FreeBSD's kernel (trivial), and
&lt;br&gt;&amp;gt; am happy to report that my card is now working flawlessly. Could someone
&lt;br&gt;&amp;gt; possibly review this patch and integrate it into the source tree so that
&lt;br&gt;&amp;gt; others may benefit from it as well?
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; The patch is based off of 8.0-RC3's code, but applies to the latest code
&lt;br&gt;&amp;gt; as well without modification.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Thank you,
&lt;br&gt;&amp;gt; Jeremy O'Brien
&lt;/div&gt;&amp;nbsp;		 	 &amp;nbsp; 		 &amp;nbsp;
&lt;br&gt;_________________________________________________________________
&lt;br&gt;Agora a pressa é amiga da perfeição. Chegou o Windows 7. Conheça!
&lt;br&gt;&lt;a href=&quot;http://www.microsoft.com/brasil/windows7/default.html?WT.mc_id=1539_______________________________________________&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.microsoft.com/brasil/windows7/default.html?WT.mc_id=1539_______________________________________________&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26472616&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-hackers@...&lt;/a&gt; mailing list
&lt;br&gt;&lt;a href=&quot;http://lists.freebsd.org/mailman/listinfo/freebsd-hackers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.freebsd.org/mailman/listinfo/freebsd-hackers&lt;/a&gt;&lt;br&gt;To unsubscribe, send any mail to &amp;quot;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26472616&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-hackers-unsubscribe@...&lt;/a&gt;&amp;quot;
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Cisco-Aironet-MPI350-Fix-tp26470105p26472616.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26470105</id>
	<title>Cisco Aironet MPI350 Fix</title>
	<published>2009-11-22T13:48:46Z</published>
	<updated>2009-11-22T13:48:46Z</updated>
	<author>
		<name>piroko</name>
	</author>
	<content type="html">Hello,
&lt;br&gt;&lt;br&gt;I have a Cisco Aironet MPI350 PCI card in my Thinkpad X31, and on a
&lt;br&gt;fresh install of FreeBSD 8.0-RC3, the card did not work. Also, it caused
&lt;br&gt;my system to freeze up for a few seconds about once a minute as the
&lt;br&gt;driver spit out &amp;quot;an0: device timeout&amp;quot; messages so long as the interface
&lt;br&gt;was up. I researched the issue, and found the following fix already in
&lt;br&gt;dragonflybsd's tree:
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://gitweb.dragonflybsd.org/dragonfly.git/commit/7a2a04db44efafea257db883ae3eb5e4ebf2ece9&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gitweb.dragonflybsd.org/dragonfly.git/commit/7a2a04db44efafea257db883ae3eb5e4ebf2ece9&lt;/a&gt;&lt;br&gt;&lt;br&gt;I modified the patch and applied it to FreeBSD's kernel (trivial), and
&lt;br&gt;am happy to report that my card is now working flawlessly. Could someone
&lt;br&gt;possibly review this patch and integrate it into the source tree so that
&lt;br&gt;others may benefit from it as well?
&lt;br&gt;&lt;br&gt;The patch is based off of 8.0-RC3's code, but applies to the latest code
&lt;br&gt;as well without modification.
&lt;br&gt;&lt;br&gt;Thank you,
&lt;br&gt;Jeremy O'Brien
&lt;br&gt;&lt;br /&gt;&lt;hr align=&quot;left&quot; width=&quot;300&quot; /&gt;&lt;tt&gt;diff --git a/sys/dev/an/if_an.c b/sys/dev/an/if_an.c
&lt;br&gt;index 5b4f13b..f08138d 100644
&lt;br&gt;--- a/sys/dev/an/if_an.c
&lt;br&gt;+++ b/sys/dev/an/if_an.c
&lt;br&gt;@@ -2747,7 +2747,7 @@ an_start(struct ifnet *ifp)
&lt;br&gt;&amp;nbsp;	struct mbuf		*m0 = NULL;
&lt;br&gt;&amp;nbsp;	struct an_txframe_802_3	tx_frame_802_3;
&lt;br&gt;&amp;nbsp;	struct ether_header	*eh;
&lt;br&gt;-	int			id, idx, i;
&lt;br&gt;+	int			id, idx, i, ready;
&lt;br&gt;&amp;nbsp;	unsigned char		txcontrol;
&lt;br&gt;&amp;nbsp;	struct an_card_tx_desc an_tx_desc;
&lt;br&gt;&amp;nbsp;	u_int8_t		*buf;
&lt;br&gt;@@ -2774,6 +2774,7 @@ an_start(struct ifnet *ifp)
&lt;br&gt;&amp;nbsp;		return;
&lt;br&gt;&amp;nbsp;	}
&lt;br&gt;&amp;nbsp;
&lt;br&gt;+	ready = 0;
&lt;br&gt;&amp;nbsp;	idx = sc-&amp;gt;an_rdata.an_tx_prod;
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp;	AN_LOCK(sc);
&lt;br&gt;@@ -2781,6 +2782,7 @@ an_start(struct ifnet *ifp)
&lt;br&gt;&amp;nbsp;		bzero((char *)&amp;tx_frame_802_3, sizeof(tx_frame_802_3));
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp;		while (sc-&amp;gt;an_rdata.an_tx_ring[idx] == 0) {
&lt;br&gt;+			ready = 1;
&lt;br&gt;&amp;nbsp;			IFQ_DRV_DEQUEUE(&amp;ifp-&amp;gt;if_snd, m0);
&lt;br&gt;&amp;nbsp;			if (m0 == NULL)
&lt;br&gt;&amp;nbsp;				break;
&lt;br&gt;@@ -2803,7 +2805,7 @@ an_start(struct ifnet *ifp)
&lt;br&gt;&amp;nbsp;				 &amp;nbsp; tx_frame_802_3.an_tx_802_3_payload_len,
&lt;br&gt;&amp;nbsp;				 &amp;nbsp; (caddr_t)&amp;sc-&amp;gt;an_txbuf);
&lt;br&gt;&amp;nbsp;
&lt;br&gt;-			txcontrol = AN_TXCTL_8023;
&lt;br&gt;+			txcontrol = AN_TXCTL_8023 | AN_TXCTL_HW(sc-&amp;gt;mpi350);
&lt;br&gt;&amp;nbsp;			/* write the txcontrol only */
&lt;br&gt;&amp;nbsp;			an_write_data(sc, id, 0x08, (caddr_t)&amp;txcontrol,
&lt;br&gt;&amp;nbsp;				 &amp;nbsp; &amp;nbsp; &amp;nbsp;sizeof(txcontrol));
&lt;br&gt;@@ -2842,6 +2844,7 @@ an_start(struct ifnet *ifp)
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp;		while (sc-&amp;gt;an_rdata.an_tx_empty ||
&lt;br&gt;&amp;nbsp;		 &amp;nbsp; &amp;nbsp;idx != sc-&amp;gt;an_rdata.an_tx_cons) {
&lt;br&gt;+			ready = 1;
&lt;br&gt;&amp;nbsp;			IFQ_DRV_DEQUEUE(&amp;ifp-&amp;gt;if_snd, m0);
&lt;br&gt;&amp;nbsp;			if (m0 == NULL) {
&lt;br&gt;&amp;nbsp;				break;
&lt;br&gt;@@ -2866,7 +2869,7 @@ an_start(struct ifnet *ifp)
&lt;br&gt;&amp;nbsp;				 &amp;nbsp; tx_frame_802_3.an_tx_802_3_payload_len,
&lt;br&gt;&amp;nbsp;				 &amp;nbsp; (caddr_t)&amp;sc-&amp;gt;an_txbuf);
&lt;br&gt;&amp;nbsp;
&lt;br&gt;-			txcontrol = AN_TXCTL_8023;
&lt;br&gt;+			txcontrol = AN_TXCTL_8023 | AN_TXCTL_HW(sc-&amp;gt;mpi350);
&lt;br&gt;&amp;nbsp;			/* write the txcontrol only */
&lt;br&gt;&amp;nbsp;			bcopy((caddr_t)&amp;txcontrol, &amp;buf[0x08],
&lt;br&gt;&amp;nbsp;			 &amp;nbsp; &amp;nbsp; &amp;nbsp;sizeof(txcontrol));
&lt;br&gt;@@ -2888,7 +2891,7 @@ an_start(struct ifnet *ifp)
&lt;br&gt;&amp;nbsp;			 &amp;nbsp; &amp;nbsp;tx_frame_802_3.an_tx_802_3_payload_len;
&lt;br&gt;&amp;nbsp;			an_tx_desc.an_phys
&lt;br&gt;&amp;nbsp;			 &amp;nbsp; &amp;nbsp;= sc-&amp;gt;an_tx_buffer[idx].an_dma_paddr;
&lt;br&gt;-			for (i = 0; i &amp;lt; sizeof(an_tx_desc) / 4 ; i++) {
&lt;br&gt;+			for (i = sizeof(an_tx_desc) / 4 - 1; i &amp;gt;= 0; --i) {
&lt;br&gt;&amp;nbsp;				CSR_MEM_AUX_WRITE_4(sc, AN_TX_DESC_OFFSET
&lt;br&gt;&amp;nbsp;				 &amp;nbsp; &amp;nbsp;/* zero for now */
&lt;br&gt;&amp;nbsp;				 &amp;nbsp; &amp;nbsp;+ (0 * sizeof(an_tx_desc))
&lt;br&gt;@@ -2919,7 +2922,7 @@ an_start(struct ifnet *ifp)
&lt;br&gt;&amp;nbsp;	}
&lt;br&gt;&amp;nbsp;	AN_UNLOCK(sc);
&lt;br&gt;&amp;nbsp;
&lt;br&gt;-	if (m0 != NULL)
&lt;br&gt;+	if (!ready)
&lt;br&gt;&amp;nbsp;		ifp-&amp;gt;if_drv_flags |= IFF_DRV_OACTIVE;
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp;	sc-&amp;gt;an_rdata.an_tx_prod = idx;
&lt;br&gt;diff --git a/sys/dev/an/if_anreg.h b/sys/dev/an/if_anreg.h
&lt;br&gt;index 103572a..8f3d30a 100644
&lt;br&gt;--- a/sys/dev/an/if_anreg.h
&lt;br&gt;+++ b/sys/dev/an/if_anreg.h
&lt;br&gt;@@ -394,13 +394,16 @@ struct an_txframe_802_3 {
&lt;br&gt;&amp;nbsp;#define AN_PAYLOADTYPE_ETHER	0x0000
&lt;br&gt;&amp;nbsp;#define AN_PAYLOADTYPE_LLC	0x0010
&lt;br&gt;&amp;nbsp;
&lt;br&gt;-#define AN_TXCTL_80211	\
&lt;br&gt;-	(AN_TXCTL_TXOK_INTR|AN_TXCTL_TXERR_INTR|AN_HEADERTYPE_80211|	\
&lt;br&gt;-	AN_PAYLOADTYPE_LLC|AN_TXCTL_NORELEASE)
&lt;br&gt;+#define AN_TXCTL_80211		(AN_HEADERTYPE_80211|AN_PAYLOADTYPE_LLC)
&lt;br&gt;&amp;nbsp;
&lt;br&gt;-#define AN_TXCTL_8023	\
&lt;br&gt;-	(AN_TXCTL_TXOK_INTR|AN_TXCTL_TXERR_INTR|AN_HEADERTYPE_8023|	\
&lt;br&gt;-	AN_PAYLOADTYPE_ETHER|AN_TXCTL_NORELEASE)
&lt;br&gt;+#define AN_TXCTL_8023		(AN_HEADERTYPE_8023|AN_PAYLOADTYPE_ETHER)
&lt;br&gt;+
&lt;br&gt;+/* 
&lt;br&gt;+ * Additions to transmit control bits for MPI350
&lt;br&gt;+ */
&lt;br&gt;+
&lt;br&gt;+#define AN_TXCTL_HW(x)		( x ? (AN_TXCTL_NORELEASE) : \
&lt;br&gt;+	(AN_TXCTL_TXOK_INTR|AN_TXCTL_TXERR_INTR|AN_TXCTL_NORELEASE))
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp;#define AN_TXGAP_80211		0
&lt;br&gt;&amp;nbsp;#define AN_TXGAP_8023		0
&lt;br&gt;&lt;/tt&gt;&lt;hr align=&quot;left&quot; width=&quot;300&quot; /&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26470105&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-hackers@...&lt;/a&gt; mailing list
&lt;br&gt;&lt;a href=&quot;http://lists.freebsd.org/mailman/listinfo/freebsd-hackers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.freebsd.org/mailman/listinfo/freebsd-hackers&lt;/a&gt;&lt;br&gt;To unsubscribe, send any mail to &amp;quot;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26470105&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-hackers-unsubscribe@...&lt;/a&gt;&amp;quot;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Cisco-Aironet-MPI350-Fix-tp26470105p26470105.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26461869</id>
	<title>Re: PUFFS SoC project?</title>
	<published>2009-11-21T16:14:22Z</published>
	<updated>2009-11-21T16:14:22Z</updated>
	<author>
		<name>Gleb Kurtsou-3</name>
	</author>
	<content type="html">On (21/11/2009 21:40), Ivan Voras wrote:
&lt;br&gt;&amp;gt; What is the status of this year's SoC projects? Specifically, does
&lt;br&gt;&amp;gt; anyone know what happened to PUFFS?
&lt;br&gt;&amp;gt; (&lt;a href=&quot;http://wiki.freebsd.org/SOC2009TatsianaSeveryna&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://wiki.freebsd.org/SOC2009TatsianaSeveryna&lt;/a&gt;) ?
&lt;br&gt;As far as I know it is in a pretty good shape. Tatsiana is busy with
&lt;br&gt;real job, and has &amp;quot;passed&amp;quot; maintainership to me.
&lt;br&gt;&lt;br&gt;ntfs-3g, puffs-ssh and some other filesystems work, but are largely
&lt;br&gt;untested, some fuse filesystems are broken as their support of inode
&lt;br&gt;numbers is to weak (take a look at fuse-sshfs).
&lt;br&gt;&lt;br&gt;There are some issues regarding cache. Original NetBSD puffs code tends
&lt;br&gt;to mmap data to cache it in vm, puffs port doesn't. Besides mmaped pages
&lt;br&gt;can go out of sync.
&lt;br&gt;&lt;br&gt;If you are interested in working on it, do not hesitate contacting me,
&lt;br&gt;I'm interested in finishing the port.
&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;Gleb.
&lt;br&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26461869&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-hackers@...&lt;/a&gt; mailing list
&lt;br&gt;&lt;a href=&quot;http://lists.freebsd.org/mailman/listinfo/freebsd-hackers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.freebsd.org/mailman/listinfo/freebsd-hackers&lt;/a&gt;&lt;br&gt;To unsubscribe, send any mail to &amp;quot;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26461869&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-hackers-unsubscribe@...&lt;/a&gt;&amp;quot;
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/PUFFS-SoC-project--tp26460298p26461869.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26460298</id>
	<title>PUFFS SoC project?</title>
	<published>2009-11-21T12:40:37Z</published>
	<updated>2009-11-21T12:40:37Z</updated>
	<author>
		<name>Ivan Voras-7</name>
	</author>
	<content type="html">What is the status of this year's SoC projects? Specifically, does
&lt;br&gt;anyone know what happened to PUFFS?
&lt;br&gt;(&lt;a href=&quot;http://wiki.freebsd.org/SOC2009TatsianaSeveryna&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://wiki.freebsd.org/SOC2009TatsianaSeveryna&lt;/a&gt;) ?
&lt;br&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26460298&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-hackers@...&lt;/a&gt; mailing list
&lt;br&gt;&lt;a href=&quot;http://lists.freebsd.org/mailman/listinfo/freebsd-hackers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.freebsd.org/mailman/listinfo/freebsd-hackers&lt;/a&gt;&lt;br&gt;To unsubscribe, send any mail to &amp;quot;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26460298&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-hackers-unsubscribe@...&lt;/a&gt;&amp;quot;
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/PUFFS-SoC-project--tp26460298p26460298.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26459037</id>
	<title>Re: Wine on amd64 in 32 bit jail</title>
	<published>2009-11-21T09:54:32Z</published>
	<updated>2009-11-21T09:54:32Z</updated>
	<author>
		<name>Artem Belevich</name>
	</author>
	<content type="html">&amp;gt; Note that some tools that poke around in kernel innards won't work -
&lt;br&gt;&amp;gt; ps and lsof are the most obvious.  ktrace works but the resultant
&lt;br&gt;&amp;gt; ktrace.out files need to read with an amd64 kdump.
&lt;br&gt;&lt;br&gt;Some of those issues can be solved by using within 32-bit jail
&lt;br&gt;statically linked 64-bit binaries. It does work for ps which is
&lt;br&gt;available in /rescue .
&lt;br&gt;&lt;br&gt;--Artem
&lt;br&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26459037&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-hackers@...&lt;/a&gt; mailing list
&lt;br&gt;&lt;a href=&quot;http://lists.freebsd.org/mailman/listinfo/freebsd-hackers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.freebsd.org/mailman/listinfo/freebsd-hackers&lt;/a&gt;&lt;br&gt;To unsubscribe, send any mail to &amp;quot;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26459037&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-hackers-unsubscribe@...&lt;/a&gt;&amp;quot;
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Wine-on-amd64-in-32-bit-jail-tp26421531p26459037.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26456502</id>
	<title>Re: Wine on amd64 in 32 bit jail</title>
	<published>2009-11-21T02:52:44Z</published>
	<updated>2009-11-21T02:52:44Z</updated>
	<author>
		<name>Peter Jeremy-6</name>
	</author>
	<content type="html">On 2009-Nov-19 17:12:19 -0600, &amp;quot;Sam Fourman Jr.&amp;quot; &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26456502&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sfourman@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;I would like to help get this working.. is there a howto somewhere to
&lt;br&gt;&amp;gt;setup a i386 jail on amd64?
&lt;br&gt;&amp;gt;I used teh instructions on &lt;a href=&quot;http://wiki.freebsd.org/Wine&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://wiki.freebsd.org/Wine&lt;/a&gt;&amp;nbsp;(and pointed
&lt;br&gt;&amp;gt;the jail to /compat/i386)
&lt;br&gt;&lt;br&gt;I haven't tried wine, but I do have an i386 jail on my main amd64
&lt;br&gt;server (primarily to build apps for my netbook) and have managed to
&lt;br&gt;build all the apps I want (including Firefox, OpenOffice.org and
&lt;br&gt;jdk15). &amp;nbsp;I have a full i386 world installed in the jail and have
&lt;br&gt;the following overrides in my environment:
&lt;br&gt;&amp;nbsp;MACHINE=i386
&lt;br&gt;&amp;nbsp;UNAME_p=i386
&lt;br&gt;&amp;nbsp;UNAME_m=i386
&lt;br&gt;&lt;br&gt;I did run into problems initially because my i386 userland wasn't
&lt;br&gt;aligned with my amd64 kernel but rebuilding both fixed that (I'm
&lt;br&gt;running 8.0-RC1 and a bit).
&lt;br&gt;&lt;br&gt;Note that some tools that poke around in kernel innards won't work -
&lt;br&gt;ps and lsof are the most obvious. &amp;nbsp;ktrace works but the resultant
&lt;br&gt;ktrace.out files need to read with an amd64 kdump.
&lt;br&gt;&lt;br&gt;&amp;gt;Inside teh jail uname -a still produces this:
&lt;br&gt;&amp;gt;FreeBSD i386.puffybsd.com 8.0-RC3 FreeBSD 8.0-RC3 #0: Wed Nov 18
&lt;br&gt;&amp;gt;22:22:44 UTC 2009 &amp;nbsp; &amp;nbsp; root@:/usr/obj/usr/src/sys/WORKSTATION &amp;nbsp;amd64
&lt;br&gt;&lt;br&gt;You are missing the UNAME_x environment variables.
&lt;br&gt;&lt;br&gt;&amp;gt;so trying to compile mesa-demos produces this
&lt;br&gt;&lt;br&gt;It will compile and run with the above environment changes.
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Peter Jeremy
&lt;br&gt;&lt;br /&gt; &lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://old.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;attachment0&lt;/strong&gt; (203 bytes) &lt;a href=&quot;http://old.nabble.com/attachment/26456502/0/attachment0&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Wine-on-amd64-in-32-bit-jail-tp26421531p26456502.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26454809</id>
	<title>Re: Wine on amd64 in 32 bit jail</title>
	<published>2009-11-21T01:01:59Z</published>
	<updated>2009-11-21T01:01:59Z</updated>
	<author>
		<name>PerryH-2</name>
	</author>
	<content type="html">KAYVEN RIESE &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26454809&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;skayve@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; Is there any reason to fear Microsoft viruses infecting Wine programs?
&lt;br&gt;&lt;br&gt;In principle, yes, because Wine is supposed to be a complete
&lt;br&gt;reimplementation of the win32 API, thus any program that runs
&lt;br&gt;differently on Wine than on Windows demonstrates a bug in Wine.
&lt;br&gt;(IIRC there are a few Windows viruses that do run on wine.)
&lt;br&gt;&lt;br&gt;In practice, any Wine bug that impairs only viruses will probably
&lt;br&gt;not be a high priority to get fixed :)
&lt;br&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26454809&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-hackers@...&lt;/a&gt; mailing list
&lt;br&gt;&lt;a href=&quot;http://lists.freebsd.org/mailman/listinfo/freebsd-hackers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.freebsd.org/mailman/listinfo/freebsd-hackers&lt;/a&gt;&lt;br&gt;To unsubscribe, send any mail to &amp;quot;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26454809&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-hackers-unsubscribe@...&lt;/a&gt;&amp;quot;
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Wine-on-amd64-in-32-bit-jail-tp26421531p26454809.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26452445</id>
	<title>Re: Wine on amd64 in 32 bit jail</title>
	<published>2009-11-20T16:27:48Z</published>
	<updated>2009-11-20T16:27:48Z</updated>
	<author>
		<name>Julian Elischer</name>
	</author>
	<content type="html">KAYVEN RIESE wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; On Thu, 19 Nov 2009, Julian Elischer wrote:
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26452445&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;xorquewasp@...&lt;/a&gt; wrote:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; On 2009-11-18 23:19:14, Julian Elischer wrote:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Wine is an exceptional bit of software, in many ways.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;nbsp; &lt;a href=&quot;http://wiki.freebsd.org/Wine&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://wiki.freebsd.org/Wine&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;quot;FreeBSD currently lacks support for 32bit ports on a 64bit system.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp;However, with a little bit of effort you can build and use the 32 bit
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp;wine executable on an amd64 system (Diablo 2 works just fine).&amp;quot;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; His instructions show an essentially identical setup to mine (apart
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; from the fact that he's running a chroot and I'm running a jail).
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; jail may not alow you to do the LDT system calls.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; have you tried a chroot?
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Is there any reason to fear Microsoft viruses infecting Wine programs? 
&lt;br&gt;&amp;gt; Is that why he is using a jail? &amp;nbsp;Would there be a greater danger of 
&lt;br&gt;&amp;gt; virus infection with chroot?
&lt;/div&gt;&lt;br&gt;I was thinking just as a test, but others have answered the question I 
&lt;br&gt;believe.
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Even any ideas on how to debug this would help.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; xw
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26452445&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-hackers@...&lt;/a&gt; mailing list
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://lists.freebsd.org/mailman/listinfo/freebsd-hackers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.freebsd.org/mailman/listinfo/freebsd-hackers&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt; To unsubscribe, send any mail to 
&lt;br&gt;&amp;gt;&amp;gt; &amp;quot;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26452445&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-hackers-unsubscribe@...&lt;/a&gt;&amp;quot;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; *----------------------------------------------------------*
&lt;br&gt;&amp;gt; &amp;nbsp; Kayven Riese, BSCS, MS (Physiology and Biophysics)
&lt;br&gt;&amp;gt; &amp;nbsp; (415) 902 5513 cellular
&lt;br&gt;&amp;gt; &amp;nbsp; &lt;a href=&quot;http://kayve.net&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://kayve.net&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;nbsp; Webmaster &lt;a href=&quot;http://ChessYoga.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ChessYoga.org&lt;/a&gt;&lt;br&gt;&amp;gt; *----------------------------------------------------------*
&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26452445&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-hackers@...&lt;/a&gt; mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://lists.freebsd.org/mailman/listinfo/freebsd-hackers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.freebsd.org/mailman/listinfo/freebsd-hackers&lt;/a&gt;&lt;br&gt;&amp;gt; To unsubscribe, send any mail to &amp;quot;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26452445&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-hackers-unsubscribe@...&lt;/a&gt;&amp;quot;
&lt;/div&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26452445&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-hackers@...&lt;/a&gt; mailing list
&lt;br&gt;&lt;a href=&quot;http://lists.freebsd.org/mailman/listinfo/freebsd-hackers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.freebsd.org/mailman/listinfo/freebsd-hackers&lt;/a&gt;&lt;br&gt;To unsubscribe, send any mail to &amp;quot;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26452445&amp;i=6&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-hackers-unsubscribe@...&lt;/a&gt;&amp;quot;
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Wine-on-amd64-in-32-bit-jail-tp26421531p26452445.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26452141</id>
	<title>RE: Wine on amd64 in 32 bit jail - for stupid peaple only</title>
	<published>2009-11-20T15:51:16Z</published>
	<updated>2009-11-20T15:51:16Z</updated>
	<author>
		<name>KAYVEN  RIESE</name>
	</author>
	<content type="html">On Fri, 20 Nov 2009, Fulano Tal wrote:
&lt;br&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; neither I believe I was sober, bleh :P
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Underdog - planning to write a book now
&lt;br&gt;&lt;br&gt;S00per! &amp;nbsp;{:D what's it gonna be called?
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Date: Fri, 20 Nov 2009 10:43:17 -0800
&lt;br&gt;&amp;gt;&amp;gt; From: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26452141&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;julian@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt; To: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26452141&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gatinhodosseussonhos@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt; CC: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26452141&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-hackers@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt; Subject: Re: Wine on amd64 in 32 bit jail - for stupid peaple only
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Fulano Tal wrote:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Use IPMI to read architecture information is easy, but a nice ploy
&lt;br&gt;&amp;gt;&amp;gt; is to sed-out i386 and amd64 related #ifdefs, and have nightmares with
&lt;br&gt;&amp;gt;&amp;gt; chains... sorry, I mean You will have a bi-archtecture system after
&lt;br&gt;&amp;gt;&amp;gt; some work with a cool new personalized tables compatible with 32 and
&lt;br&gt;&amp;gt;&amp;gt; 64 images. You will have the honorable scout's ribbon of scratch a
&lt;br&gt;&amp;gt;&amp;gt; file system in your chest after stark in short, something like an
&lt;br&gt;&amp;gt;&amp;gt; homunculus with AB positive blood type.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; good luck.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; ps.: Do I waste time sending replies that maybe will not help
&lt;br&gt;&amp;gt;&amp;gt; anybody, with idiot thoughs like: &amp;quot;hey guys, what about we taylor an
&lt;br&gt;&amp;gt;&amp;gt; prototype of an a.i. managed not human operating system, that is not
&lt;br&gt;&amp;gt;&amp;gt; so simple to be handled by any simple person except for a few seconds
&lt;br&gt;&amp;gt;&amp;gt; at every century by prodigy minds more exceptional than any existing
&lt;br&gt;&amp;gt;&amp;gt; mythological wisdom, and without any crt and hack objects or strange
&lt;br&gt;&amp;gt;&amp;gt; acpi boring dependencies that nobody want to explain, just to perform
&lt;br&gt;&amp;gt;&amp;gt; the simple task of running other two kernels, like a freebsd code at
&lt;br&gt;&amp;gt;&amp;gt; cpu0 and a slackware code at cpu1, and have triple-eyed super-kernel
&lt;br&gt;&amp;gt;&amp;gt; force balancing shared jobs of an world wide clustered extensible system?&amp;quot;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; nevermind.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Didn't your mother tell you to not eat other people's medications?
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; :-)
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Julian
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26452141&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-hackers@...&lt;/a&gt; mailing list
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://lists.freebsd.org/mailman/listinfo/freebsd-hackers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.freebsd.org/mailman/listinfo/freebsd-hackers&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt; To unsubscribe, send any mail to &amp;quot;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26452141&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-hackers-unsubscribe@...&lt;/a&gt;&amp;quot;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; _________________________________________________________________
&lt;br&gt;&amp;gt; Agora a pressa é amiga da perfeição. Chegou o Windows 7. Conheça!
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.microsoft.com/brasil/windows7/default.html?WT.mc_id=1539_______________________________________________&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.microsoft.com/brasil/windows7/default.html?WT.mc_id=1539_______________________________________________&lt;/a&gt;&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26452141&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-hackers@...&lt;/a&gt; mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://lists.freebsd.org/mailman/listinfo/freebsd-hackers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.freebsd.org/mailman/listinfo/freebsd-hackers&lt;/a&gt;&lt;br&gt;&amp;gt; To unsubscribe, send any mail to &amp;quot;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26452141&amp;i=6&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-hackers-unsubscribe@...&lt;/a&gt;&amp;quot;
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;/div&gt;*----------------------------------------------------------*
&lt;br&gt;&amp;nbsp; &amp;nbsp;Kayven Riese, BSCS, MS (Physiology and Biophysics)
&lt;br&gt;&amp;nbsp; &amp;nbsp;(415) 902 5513 cellular
&lt;br&gt;&amp;nbsp; &amp;nbsp;&lt;a href=&quot;http://kayve.net&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://kayve.net&lt;/a&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;Webmaster &lt;a href=&quot;http://ChessYoga.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ChessYoga.org&lt;/a&gt;&lt;br&gt;*----------------------------------------------------------*&lt;br /&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26452141&amp;i=7&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-hackers@...&lt;/a&gt; mailing list
&lt;br&gt;&lt;a href=&quot;http://lists.freebsd.org/mailman/listinfo/freebsd-hackers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.freebsd.org/mailman/listinfo/freebsd-hackers&lt;/a&gt;&lt;br&gt;To unsubscribe, send any mail to &amp;quot;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26452141&amp;i=8&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-hackers-unsubscribe@...&lt;/a&gt;&amp;quot;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Wine-on-amd64-in-32-bit-jail-tp26421531p26452141.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26451823</id>
	<title>Re: Wine on amd64 in 32 bit jail</title>
	<published>2009-11-20T15:17:47Z</published>
	<updated>2009-11-20T15:17:47Z</updated>
	<author>
		<name>KAYVEN  RIESE</name>
	</author>
	<content type="html">&lt;br&gt;On Thu, 19 Nov 2009, Julian Elischer wrote:
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26451823&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;xorquewasp@...&lt;/a&gt; wrote:
&lt;br&gt;&amp;gt;&amp;gt; On 2009-11-18 23:19:14, Julian Elischer wrote:
&lt;br&gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Wine is an exceptional bit of software, in many ways.
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &lt;a href=&quot;http://wiki.freebsd.org/Wine&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://wiki.freebsd.org/Wine&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;quot;FreeBSD currently lacks support for 32bit ports on a 64bit system.
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp;However, with a little bit of effort you can build and use the 32 bit
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp;wine executable on an amd64 system (Diablo 2 works just fine).&amp;quot;
&lt;br&gt;&amp;gt;&amp;gt; 
&lt;br&gt;&amp;gt;&amp;gt; His instructions show an essentially identical setup to mine (apart
&lt;br&gt;&amp;gt;&amp;gt; from the fact that he's running a chroot and I'm running a jail).
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; jail may not alow you to do the LDT system calls.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; have you tried a chroot?
&lt;/div&gt;&lt;br&gt;Is there any reason to fear Microsoft viruses infecting Wine programs? Is 
&lt;br&gt;that why he is using a jail? &amp;nbsp;Would there be a greater danger of virus 
&lt;br&gt;infection with chroot?
&lt;br&gt;&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; 
&lt;br&gt;&amp;gt;&amp;gt; Even any ideas on how to debug this would help.
&lt;br&gt;&amp;gt;&amp;gt; 
&lt;br&gt;&amp;gt;&amp;gt; xw
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26451823&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-hackers@...&lt;/a&gt; mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://lists.freebsd.org/mailman/listinfo/freebsd-hackers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.freebsd.org/mailman/listinfo/freebsd-hackers&lt;/a&gt;&lt;br&gt;&amp;gt; To unsubscribe, send any mail to &amp;quot;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26451823&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-hackers-unsubscribe@...&lt;/a&gt;&amp;quot;
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;*----------------------------------------------------------*
&lt;br&gt;&amp;nbsp; &amp;nbsp;Kayven Riese, BSCS, MS (Physiology and Biophysics)
&lt;br&gt;&amp;nbsp; &amp;nbsp;(415) 902 5513 cellular
&lt;br&gt;&amp;nbsp; &amp;nbsp;&lt;a href=&quot;http://kayve.net&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://kayve.net&lt;/a&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;Webmaster &lt;a href=&quot;http://ChessYoga.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ChessYoga.org&lt;/a&gt;&lt;br&gt;*----------------------------------------------------------*
&lt;br&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26451823&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-hackers@...&lt;/a&gt; mailing list
&lt;br&gt;&lt;a href=&quot;http://lists.freebsd.org/mailman/listinfo/freebsd-hackers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.freebsd.org/mailman/listinfo/freebsd-hackers&lt;/a&gt;&lt;br&gt;To unsubscribe, send any mail to &amp;quot;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26451823&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-hackers-unsubscribe@...&lt;/a&gt;&amp;quot;
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Wine-on-amd64-in-32-bit-jail-tp26421531p26451823.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26448719</id>
	<title>RE: Wine on amd64 in 32 bit jail - for stupid peaple only</title>
	<published>2009-11-20T11:08:25Z</published>
	<updated>2009-11-20T11:08:25Z</updated>
	<author>
		<name>Fulano Tal</name>
	</author>
	<content type="html">&lt;br&gt;neither I believe I was sober, bleh :P
&lt;br&gt;&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;Underdog - planning to write a book now
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp;
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Date: Fri, 20 Nov 2009 10:43:17 -0800
&lt;br&gt;&amp;gt; From: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26448719&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;julian@...&lt;/a&gt;
&lt;br&gt;&amp;gt; To: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26448719&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gatinhodosseussonhos@...&lt;/a&gt;
&lt;br&gt;&amp;gt; CC: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26448719&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-hackers@...&lt;/a&gt;
&lt;br&gt;&amp;gt; Subject: Re: Wine on amd64 in 32 bit jail - for stupid peaple only
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Fulano Tal wrote:
&lt;br&gt;&amp;gt; &amp;gt; Use IPMI to read architecture information is easy, but a nice ploy
&lt;br&gt;&amp;gt; is to sed-out i386 and amd64 related #ifdefs, and have nightmares with
&lt;br&gt;&amp;gt; chains... sorry, I mean You will have a bi-archtecture system after
&lt;br&gt;&amp;gt; some work with a cool new personalized tables compatible with 32 and
&lt;br&gt;&amp;gt; 64 images. You will have the honorable scout's ribbon of scratch a
&lt;br&gt;&amp;gt; file system in your chest after stark in short, something like an
&lt;br&gt;&amp;gt; homunculus with AB positive blood type.
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; good luck.
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; ps.: Do I waste time sending replies that maybe will not help
&lt;br&gt;&amp;gt; anybody, with idiot thoughs like: &amp;quot;hey guys, what about we taylor an
&lt;br&gt;&amp;gt; prototype of an a.i. managed not human operating system, that is not
&lt;br&gt;&amp;gt; so simple to be handled by any simple person except for a few seconds
&lt;br&gt;&amp;gt; at every century by prodigy minds more exceptional than any existing
&lt;br&gt;&amp;gt; mythological wisdom, and without any crt and hack objects or strange
&lt;br&gt;&amp;gt; acpi boring dependencies that nobody want to explain, just to perform
&lt;br&gt;&amp;gt; the simple task of running other two kernels, like a freebsd code at
&lt;br&gt;&amp;gt; cpu0 and a slackware code at cpu1, and have triple-eyed super-kernel
&lt;br&gt;&amp;gt; force balancing shared jobs of an world wide clustered extensible system?&amp;quot;
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; nevermind.
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Didn't your mother tell you to not eat other people's medications?
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; :-)
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Julian
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26448719&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-hackers@...&lt;/a&gt; mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://lists.freebsd.org/mailman/listinfo/freebsd-hackers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.freebsd.org/mailman/listinfo/freebsd-hackers&lt;/a&gt;&lt;br&gt;&amp;gt; To unsubscribe, send any mail to &amp;quot;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26448719&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-hackers-unsubscribe@...&lt;/a&gt;&amp;quot;
&lt;/div&gt;&amp;nbsp;		 	 &amp;nbsp; 		 &amp;nbsp;
&lt;br&gt;_________________________________________________________________
&lt;br&gt;Agora a pressa é amiga da perfeição. Chegou o Windows 7. Conheça!
&lt;br&gt;&lt;a href=&quot;http://www.microsoft.com/brasil/windows7/default.html?WT.mc_id=1539_______________________________________________&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.microsoft.com/brasil/windows7/default.html?WT.mc_id=1539_______________________________________________&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26448719&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-hackers@...&lt;/a&gt; mailing list
&lt;br&gt;&lt;a href=&quot;http://lists.freebsd.org/mailman/listinfo/freebsd-hackers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.freebsd.org/mailman/listinfo/freebsd-hackers&lt;/a&gt;&lt;br&gt;To unsubscribe, send any mail to &amp;quot;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26448719&amp;i=6&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-hackers-unsubscribe@...&lt;/a&gt;&amp;quot;
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Wine-on-amd64-in-32-bit-jail-tp26421531p26448719.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26448375</id>
	<title>Re: Wine on amd64 in 32 bit jail - for stupid peaple only</title>
	<published>2009-11-20T10:43:17Z</published>
	<updated>2009-11-20T10:43:17Z</updated>
	<author>
		<name>Julian Elischer</name>
	</author>
	<content type="html">Fulano Tal wrote:
&lt;br&gt;&amp;gt; Use IPMI to read architecture information is easy, but a nice ploy
&lt;br&gt;is to sed-out i386 and amd64 related #ifdefs, and have nightmares with
&lt;br&gt;chains... sorry, I mean You will have a bi-archtecture system after
&lt;br&gt;some work with a cool new personalized tables compatible with 32 and
&lt;br&gt;64 images. You will have the honorable scout's ribbon of scratch a
&lt;br&gt;file system in your chest after stark in short, something like an
&lt;br&gt;homunculus with AB positive blood type.
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; good luck.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt; ps.: Do I waste time sending replies that maybe will not help
&lt;/div&gt;anybody, with idiot thoughs like: &amp;quot;hey guys, what about we taylor an
&lt;br&gt;prototype of an a.i. managed not human operating system, that is not
&lt;br&gt;so simple to be handled by any simple person except for a few seconds
&lt;br&gt;at every century by prodigy minds more exceptional than any existing
&lt;br&gt;mythological wisdom, and without any crt and hack objects or strange
&lt;br&gt;acpi boring dependencies that nobody want to explain, just to perform
&lt;br&gt;the simple task of running other two kernels, like a freebsd code at
&lt;br&gt;cpu0 and a slackware code at cpu1, and have triple-eyed super-kernel
&lt;br&gt;force balancing shared jobs of an world wide clustered extensible system?&amp;quot;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; nevermind.
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&lt;br&gt;Didn't your mother tell you to not eat other people's medications?
&lt;br&gt;&lt;br&gt;&lt;br&gt;:-)
&lt;br&gt;&lt;br&gt;Julian
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26448375&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-hackers@...&lt;/a&gt; mailing list
&lt;br&gt;&lt;a href=&quot;http://lists.freebsd.org/mailman/listinfo/freebsd-hackers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.freebsd.org/mailman/listinfo/freebsd-hackers&lt;/a&gt;&lt;br&gt;To unsubscribe, send any mail to &amp;quot;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26448375&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-hackers-unsubscribe@...&lt;/a&gt;&amp;quot;
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Wine-on-amd64-in-32-bit-jail-tp26421531p26448375.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26443436</id>
	<title>RE: Wine on amd64 in 32 bit jail - for stupid peaple only</title>
	<published>2009-11-20T05:31:18Z</published>
	<updated>2009-11-20T05:31:18Z</updated>
	<author>
		<name>Fulano Tal</name>
	</author>
	<content type="html">&lt;br&gt;Use IPMI to read architecture information is easy, but a nice ploy is to sed-out i386 and amd64 related #ifdefs, and have nightmares with chains... sorry, I mean You will have a bi-archtecture system after some work with a cool new personalized tables compatible with 32 and 64 images. You will have the honorable scout's ribbon of scratch a file system in your chest after stark in short, something like an homunculus with AB positive blood type.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;good luck.
&lt;br&gt;&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;&amp;nbsp;
&lt;br&gt;ps.: Do I waste time sending replies that maybe will not help anybody, with idiot thoughs like: &amp;quot;hey guys, what about we taylor an prototype of an a.i. managed not human operating system, that is not so simple to be handled by any simple person except for a few seconds at every century by prodigy minds more exceptional than any existing mythological wisdom, and without any crt and hack objects or strange acpi boring dependencies that nobody want to explain, just to perform the simple task of running other two kernels, like a freebsd code at cpu0 and a slackware code at cpu1, and have triple-eyed super-kernel force balancing shared jobs of an world wide clustered extensible system?&amp;quot;
&lt;br&gt;&lt;br&gt;&lt;br&gt;nevermind.
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp;
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Date: Fri, 20 Nov 2009 03:29:56 +0000
&lt;br&gt;&amp;gt; From: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26443436&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;xorquewasp@...&lt;/a&gt;
&lt;br&gt;&amp;gt; To: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26443436&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sfourman@...&lt;/a&gt;
&lt;br&gt;&amp;gt; CC: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26443436&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-hackers@...&lt;/a&gt;
&lt;br&gt;&amp;gt; Subject: Re: Wine on amd64 in 32 bit jail
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; On 2009-11-19 17:12:19, Sam Fourman Jr. wrote:
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; I would like to help get this working.. is there a howto somewhere to
&lt;br&gt;&amp;gt; &amp;gt; setup a i386 jail on amd64?
&lt;br&gt;&amp;gt; &amp;gt; I used teh instructions on &lt;a href=&quot;http://wiki.freebsd.org/Wine&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://wiki.freebsd.org/Wine&lt;/a&gt;&amp;nbsp;(and pointed
&lt;br&gt;&amp;gt; &amp;gt; the jail to /compat/i386)
&lt;br&gt;&amp;gt; &amp;gt; Inside teh jail uname -a still produces this:
&lt;br&gt;&amp;gt; &amp;gt; FreeBSD i386.puffybsd.com 8.0-RC3 FreeBSD 8.0-RC3 #0: Wed Nov 18
&lt;br&gt;&amp;gt; &amp;gt; 22:22:44 UTC 2009 root@:/usr/obj/usr/src/sys/WORKSTATION amd64
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Hello.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Not sure about the mesa problem at the moment, but I made uname identify
&lt;br&gt;&amp;gt; itself as i386 by just setting UNAME_m=i386 in the environment.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; You could put this in the shell environment of the user you run as inside
&lt;br&gt;&amp;gt; the jail.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; xw
&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26443436&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-hackers@...&lt;/a&gt; mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://lists.freebsd.org/mailman/listinfo/freebsd-hackers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.freebsd.org/mailman/listinfo/freebsd-hackers&lt;/a&gt;&lt;br&gt;&amp;gt; To unsubscribe, send any mail to &amp;quot;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26443436&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-hackers-unsubscribe@...&lt;/a&gt;&amp;quot;
&lt;/div&gt;&lt;br&gt;&amp;nbsp;		 	 &amp;nbsp; 		 &amp;nbsp;
&lt;br&gt;_________________________________________________________________
&lt;br&gt;Novo windowslive.com.br. Descubra como juntar a galera com os produtos Windows Live.
&lt;br&gt;&lt;a href=&quot;http://www.windowslive.com.br/?ocid=WindowsLive09_MSN_Hotmail_Tagline_out09_______________________________________________&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.windowslive.com.br/?ocid=WindowsLive09_MSN_Hotmail_Tagline_out09_______________________________________________&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26443436&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-hackers@...&lt;/a&gt; mailing list
&lt;br&gt;&lt;a href=&quot;http://lists.freebsd.org/mailman/listinfo/freebsd-hackers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.freebsd.org/mailman/listinfo/freebsd-hackers&lt;/a&gt;&lt;br&gt;To unsubscribe, send any mail to &amp;quot;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26443436&amp;i=6&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-hackers-unsubscribe@...&lt;/a&gt;&amp;quot;
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Wine-on-amd64-in-32-bit-jail-tp26421531p26443436.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26437897</id>
	<title>Re: Wine on amd64 in 32 bit jail</title>
	<published>2009-11-19T19:29:56Z</published>
	<updated>2009-11-19T19:29:56Z</updated>
	<author>
		<name>xorquewasp</name>
	</author>
	<content type="html">On 2009-11-19 17:12:19, Sam Fourman Jr. wrote:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I would like to help get this working.. is there a howto somewhere to
&lt;br&gt;&amp;gt; setup a i386 jail on amd64?
&lt;br&gt;&amp;gt; I used teh instructions on &lt;a href=&quot;http://wiki.freebsd.org/Wine&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://wiki.freebsd.org/Wine&lt;/a&gt;&amp;nbsp;(and pointed
&lt;br&gt;&amp;gt; the jail to /compat/i386)
&lt;br&gt;&amp;gt; Inside teh jail uname -a still produces this:
&lt;br&gt;&amp;gt; FreeBSD i386.puffybsd.com 8.0-RC3 FreeBSD 8.0-RC3 #0: Wed Nov 18
&lt;br&gt;&amp;gt; 22:22:44 UTC 2009 &amp;nbsp; &amp;nbsp; root@:/usr/obj/usr/src/sys/WORKSTATION &amp;nbsp;amd64
&lt;br&gt;&lt;br&gt;Hello.
&lt;br&gt;&lt;br&gt;Not sure about the mesa problem at the moment, but I made uname identify
&lt;br&gt;itself as i386 by just setting UNAME_m=i386 in the environment.
&lt;br&gt;&lt;br&gt;You could put this in the shell environment of the user you run as inside
&lt;br&gt;the jail.
&lt;br&gt;&lt;br&gt;xw
&lt;br&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26437897&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-hackers@...&lt;/a&gt; mailing list
&lt;br&gt;&lt;a href=&quot;http://lists.freebsd.org/mailman/listinfo/freebsd-hackers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.freebsd.org/mailman/listinfo/freebsd-hackers&lt;/a&gt;&lt;br&gt;To unsubscribe, send any mail to &amp;quot;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26437897&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-hackers-unsubscribe@...&lt;/a&gt;&amp;quot;
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Wine-on-amd64-in-32-bit-jail-tp26421531p26437897.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26435866</id>
	<title>Re: Wine on amd64 in 32 bit jail</title>
	<published>2009-11-19T15:12:19Z</published>
	<updated>2009-11-19T15:12:19Z</updated>
	<author>
		<name>PuffyBSD</name>
	</author>
	<content type="html">On Thu, Nov 19, 2009 at 12:57 AM, &amp;nbsp;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26435866&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;xorquewasp@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hello.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I've done a lot of reading on this problem and don't understand why what I have
&lt;br&gt;&amp;gt; doesn't work.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;  &lt;a href=&quot;http://wiki.freebsd.org/Wine&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://wiki.freebsd.org/Wine&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I have an entirely 32 bit jail, created by cross-compiling the world with
&lt;br&gt;&amp;gt; TARGET=i386 and creating a jail from DESTDIR.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; The jail appears to be fully functional - all programs appear to work and
&lt;br&gt;&amp;gt; the compiler produces i386 binaries.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 'uname' has been configured to identify itself as 'i386', so even compiling
&lt;br&gt;&amp;gt; programs from source works (autoconf correctly recognises the jail system
&lt;br&gt;&amp;gt; as i386, etc).
&lt;/div&gt;&lt;br&gt;I would like to help get this working.. is there a howto somewhere to
&lt;br&gt;setup a i386 jail on amd64?
&lt;br&gt;I used teh instructions on &lt;a href=&quot;http://wiki.freebsd.org/Wine&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://wiki.freebsd.org/Wine&lt;/a&gt;&amp;nbsp;(and pointed
&lt;br&gt;the jail to /compat/i386)
&lt;br&gt;Inside teh jail uname -a still produces this:
&lt;br&gt;FreeBSD i386.puffybsd.com 8.0-RC3 FreeBSD 8.0-RC3 #0: Wed Nov 18
&lt;br&gt;22:22:44 UTC 2009 &amp;nbsp; &amp;nbsp; root@:/usr/obj/usr/src/sys/WORKSTATION &amp;nbsp;amd64
&lt;br&gt;&lt;br&gt;so trying to compile mesa-demos produces this
&lt;br&gt;&lt;br&gt;/../../src/mesa/x86-64/glapi_x86-64.S:29003: Error: suffix or operands
&lt;br&gt;invalid for `pop'
&lt;br&gt;../../../src/mesa/x86-64/glapi_x86-64.S:29004: Error: suffix or
&lt;br&gt;operands invalid for `pop'
&lt;br&gt;../../../src/mesa/x86-64/glapi_x86-64.S:29005: Error: `6128(%rax)' is
&lt;br&gt;not a valid 32 bit base/index expression
&lt;br&gt;../../../src/mesa/x86-64/glapi_x86-64.S:29006: Error: bad register name `%r11'
&lt;br&gt;../../../src/mesa/x86-64/glapi_x86-64.S:29040: Error: suffix or
&lt;br&gt;operands invalid for `push'
&lt;br&gt;../../../src/mesa/x86-64/glapi_x86-64.S:29041: Error: suffix or
&lt;br&gt;operands invalid for `push'
&lt;br&gt;../../../src/mesa/x86-64/glapi_x86-64.S:29042: Error: suffix or
&lt;br&gt;operands invalid for `push'
&lt;br&gt;../../../src/mesa/x86-64/glapi_x86-64.S:29043: Error: suffix or
&lt;br&gt;operands invalid for `push'
&lt;br&gt;../../../src/mesa/x86-64/glapi_x86-64.S:29044: Error: suffix or
&lt;br&gt;operands invalid for `push'
&lt;br&gt;../../../src/mesa/x86-64/glapi_x86-64.S:29046: Error: suffix or
&lt;br&gt;operands invalid for `pop'
&lt;br&gt;../../../src/mesa/x86-64/glapi_x86-64.S:29047: Error: suffix or
&lt;br&gt;operands invalid for `pop'
&lt;br&gt;../../../src/mesa/x86-64/glapi_x86-64.S:29048: Error: suffix or
&lt;br&gt;operands invalid for `pop'
&lt;br&gt;../../../src/mesa/x86-64/glapi_x86-64.S:29049: Error: suffix or
&lt;br&gt;operands invalid for `pop'
&lt;br&gt;../../../src/mesa/x86-64/glapi_x86-64.S:29050: Error: suffix or
&lt;br&gt;operands invalid for `pop'
&lt;br&gt;../../../src/mesa/x86-64/glapi_x86-64.S:29051: Error: `6136(%rax)' is
&lt;br&gt;not a valid 32 bit base/index expression
&lt;br&gt;../../../src/mesa/x86-64/glapi_x86-64.S:29052: Error: bad register name `%r11'
&lt;br&gt;../../../src/mesa/x86-64/glapi_x86-64.S:29086: Error: suffix or
&lt;br&gt;operands invalid for `push'
&lt;br&gt;../../../src/mesa/x86-64/glapi_x86-64.S:29087: Error: suffix or
&lt;br&gt;operands invalid for `push'
&lt;br&gt;../../../src/mesa/x86-64/glapi_x86-64.S:29088: Error: suffix or
&lt;br&gt;operands invalid for `push'
&lt;br&gt;../../../src/mesa/x86-64/glapi_x86-64.S:29090: Error: suffix or
&lt;br&gt;operands invalid for `pop'
&lt;br&gt;../../../src/mesa/x86-64/glapi_x86-64.S:29091: Error: suffix or
&lt;br&gt;operands invalid for `pop'
&lt;br&gt;../../../src/mesa/x86-64/glapi_x86-64.S:29092: Error: suffix or
&lt;br&gt;operands invalid for `pop'
&lt;br&gt;../../../src/mesa/x86-64/glapi_x86-64.S:29093: Error: `6144(%rax)' is
&lt;br&gt;not a valid 32 bit base/index expression
&lt;br&gt;../../../src/mesa/x86-64/glapi_x86-64.S:29094: Error: bad register name `%r11'
&lt;br&gt;../../../src/mesa/x86-64/glapi_x86-64.S:29124: Error: suffix or
&lt;br&gt;operands invalid for `push'
&lt;br&gt;../../../src/mesa/x86-64/glapi_x86-64.S:29125: Error: suffix or
&lt;br&gt;operands invalid for `push'
&lt;br&gt;../../../src/mesa/x86-64/glapi_x86-64.S:29126: Error: suffix or
&lt;br&gt;operands invalid for `push'
&lt;br&gt;../../../src/mesa/x86-64/glapi_x86-64.S:29128: Error: suffix or
&lt;br&gt;operands invalid for `pop'
&lt;br&gt;../../../src/mesa/x86-64/glapi_x86-64.S:29129: Error: suffix or
&lt;br&gt;operands invalid for `pop'
&lt;br&gt;../../../src/mesa/x86-64/glapi_x86-64.S:29130: Error: suffix or
&lt;br&gt;operands invalid for `pop'
&lt;br&gt;../../../src/mesa/x86-64/glapi_x86-64.S:29131: Error: `6152(%rax)' is
&lt;br&gt;not a valid 32 bit base/index expression
&lt;br&gt;../../../src/mesa/x86-64/glapi_x86-64.S:29132: Error: bad register name `%r11'
&lt;br&gt;gmake[2]: *** [../../../src/mesa/x86-64/glapi_x86-64.o] Error 1
&lt;br&gt;gmake[2]: Leaving directory
&lt;br&gt;`/usr/ports/graphics/mesa-demos/work/Mesa-7.4.4/src/glx/x11'
&lt;br&gt;gmake[1]: *** [subdirs] Error 1
&lt;br&gt;gmake[1]: Leaving directory `/usr/ports/graphics/mesa-demos/work/Mesa-7.4.4/src'
&lt;br&gt;gmake: *** [default] Error 1
&lt;br&gt;*** Error code 1
&lt;br&gt;&lt;br&gt;&lt;br&gt;Sam Fourman Jr.
&lt;br&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26435866&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-hackers@...&lt;/a&gt; mailing list
&lt;br&gt;&lt;a href=&quot;http://lists.freebsd.org/mailman/listinfo/freebsd-hackers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.freebsd.org/mailman/listinfo/freebsd-hackers&lt;/a&gt;&lt;br&gt;To unsubscribe, send any mail to &amp;quot;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26435866&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-hackers-unsubscribe@...&lt;/a&gt;&amp;quot;
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Wine-on-amd64-in-32-bit-jail-tp26421531p26435866.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26433333</id>
	<title>Re: Getting running time of child</title>
	<published>2009-11-19T12:15:35Z</published>
	<updated>2009-11-19T12:15:35Z</updated>
	<author>
		<name>Koffie Yahoo</name>
	</author>
	<content type="html">That's it! Thanks! Problem solved :-)
&lt;br&gt;&lt;br&gt;Jay
&lt;br&gt;&lt;br&gt;On Thu, Nov 19, 2009 at 5:34 PM, Dan Nelson &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26433333&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dnelson@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; In the last episode (Nov 19), Koffie Yahoo said:
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; It's not as portable as getrusage(2), but you could probably get the
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; information you want using libkvm's kvm_getprocs(3) function. The
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; information available is defined in the kinfo_proc structure in
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; /usr/include/sys/user.h.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Unfortunately, as far as I can see the kinfo_proc structure only contains
&lt;br&gt;&amp;gt;&amp;gt; the sum of user time and system time and not the two values separately,
&lt;br&gt;&amp;gt;&amp;gt; or have I missed something?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Take a look at the the ki_rusage struct inside kinfo_proc.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt;        Dan Nelson
&lt;br&gt;&amp;gt;        &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26433333&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dnelson@...&lt;/a&gt;
&lt;br&gt;&amp;gt;
&lt;/div&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26433333&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-hackers@...&lt;/a&gt; mailing list
&lt;br&gt;&lt;a href=&quot;http://lists.freebsd.org/mailman/listinfo/freebsd-hackers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.freebsd.org/mailman/listinfo/freebsd-hackers&lt;/a&gt;&lt;br&gt;To unsubscribe, send any mail to &amp;quot;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26433333&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-hackers-unsubscribe@...&lt;/a&gt;&amp;quot;
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Getting-running-time-of-child-tp26424149p26433333.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26429879</id>
	<title>Re: Getting running time of child</title>
	<published>2009-11-19T08:34:40Z</published>
	<updated>2009-11-19T08:34:40Z</updated>
	<author>
		<name>Dan Nelson</name>
	</author>
	<content type="html">In the last episode (Nov 19), Koffie Yahoo said:
&lt;br&gt;&amp;gt; &amp;gt; It's not as portable as getrusage(2), but you could probably get the
&lt;br&gt;&amp;gt; &amp;gt; information you want using libkvm's kvm_getprocs(3) function. The
&lt;br&gt;&amp;gt; &amp;gt; information available is defined in the kinfo_proc structure in
&lt;br&gt;&amp;gt; &amp;gt; /usr/include/sys/user.h.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Unfortunately, as far as I can see the kinfo_proc structure only contains
&lt;br&gt;&amp;gt; the sum of user time and system time and not the two values separately,
&lt;br&gt;&amp;gt; or have I missed something?
&lt;br&gt;&lt;br&gt;Take a look at the the ki_rusage struct inside kinfo_proc.
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Dan Nelson
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26429879&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dnelson@...&lt;/a&gt;
&lt;br&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26429879&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-hackers@...&lt;/a&gt; mailing list
&lt;br&gt;&lt;a href=&quot;http://lists.freebsd.org/mailman/listinfo/freebsd-hackers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.freebsd.org/mailman/listinfo/freebsd-hackers&lt;/a&gt;&lt;br&gt;To unsubscribe, send any mail to &amp;quot;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26429879&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-hackers-unsubscribe@...&lt;/a&gt;&amp;quot;
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Getting-running-time-of-child-tp26424149p26429879.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26428110</id>
	<title>Re: Getting running time of child</title>
	<published>2009-11-19T07:20:14Z</published>
	<updated>2009-11-19T07:20:14Z</updated>
	<author>
		<name>Dag-Erling Smørgrav</name>
	</author>
	<content type="html">Boris Kochergin &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26428110&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;spawk@...&lt;/a&gt;&amp;gt; writes:
&lt;br&gt;&amp;gt; It's not as portable as getrusage(2), but you could probably get the
&lt;br&gt;&amp;gt; information you want using libkvm's kvm_getprocs(3) function. The
&lt;br&gt;&amp;gt; information available is defined in the kinfo_proc structure in
&lt;br&gt;&amp;gt; /usr/include/sys/user.h.
&lt;br&gt;&lt;br&gt;Read the original post.
&lt;br&gt;&lt;br&gt;DES
&lt;br&gt;-- 
&lt;br&gt;Dag-Erling Smørgrav - &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26428110&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;des@...&lt;/a&gt;
&lt;br&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26428110&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-hackers@...&lt;/a&gt; mailing list
&lt;br&gt;&lt;a href=&quot;http://lists.freebsd.org/mailman/listinfo/freebsd-hackers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.freebsd.org/mailman/listinfo/freebsd-hackers&lt;/a&gt;&lt;br&gt;To unsubscribe, send any mail to &amp;quot;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26428110&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-hackers-unsubscribe@...&lt;/a&gt;&amp;quot;
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Getting-running-time-of-child-tp26424149p26428110.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26428145</id>
	<title>Re: Getting running time of child</title>
	<published>2009-11-19T07:15:54Z</published>
	<updated>2009-11-19T07:15:54Z</updated>
	<author>
		<name>Koffie Yahoo</name>
	</author>
	<content type="html">&amp;gt; It's not as portable as getrusage(2), but you could probably get the
&lt;br&gt;&amp;gt; information you want using libkvm's kvm_getprocs(3) function. The
&lt;br&gt;&amp;gt; information available is defined in the kinfo_proc structure in
&lt;br&gt;&amp;gt; /usr/include/sys/user.h.
&lt;br&gt;&lt;br&gt;Unfortunately, as far as I can see the kinfo_proc structure only contains
&lt;br&gt;the sum of user time and system time and not the two values separately,
&lt;br&gt;or have I missed something?
&lt;br&gt;&lt;br&gt;Jay
&lt;br&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26428145&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-hackers@...&lt;/a&gt; mailing list
&lt;br&gt;&lt;a href=&quot;http://lists.freebsd.org/mailman/listinfo/freebsd-hackers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.freebsd.org/mailman/listinfo/freebsd-hackers&lt;/a&gt;&lt;br&gt;To unsubscribe, send any mail to &amp;quot;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26428145&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-hackers-unsubscribe@...&lt;/a&gt;&amp;quot;
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Getting-running-time-of-child-tp26424149p26428145.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26427980</id>
	<title>Re: Getting running time of child</title>
	<published>2009-11-19T07:11:53Z</published>
	<updated>2009-11-19T07:11:53Z</updated>
	<author>
		<name>Boris Kochergin</name>
	</author>
	<content type="html">Koffie Yahoo wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; I've looked but not found (and I hope I'm in the right group here): Is
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; there a way to get the user time and system time of a /running/ child
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; from its parent (without having to mount procfs)?
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;gt;&amp;gt; If you have only one child, there's getrusage(2).
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Unfortunately, that only works for children that have terminated, not
&lt;br&gt;&amp;gt; for active children. I'm interested in active children.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Jay
&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26427980&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-hackers@...&lt;/a&gt; mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://lists.freebsd.org/mailman/listinfo/freebsd-hackers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.freebsd.org/mailman/listinfo/freebsd-hackers&lt;/a&gt;&lt;br&gt;&amp;gt; To unsubscribe, send any mail to &amp;quot;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26427980&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-hackers-unsubscribe@...&lt;/a&gt;&amp;quot;
&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;/div&gt;It's not as portable as getrusage(2), but you could probably get the 
&lt;br&gt;information you want using libkvm's kvm_getprocs(3) function. The 
&lt;br&gt;information available is defined in the kinfo_proc structure in 
&lt;br&gt;/usr/include/sys/user.h.
&lt;br&gt;&lt;br&gt;-Boris
&lt;br&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26427980&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-hackers@...&lt;/a&gt; mailing list
&lt;br&gt;&lt;a href=&quot;http://lists.freebsd.org/mailman/listinfo/freebsd-hackers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.freebsd.org/mailman/listinfo/freebsd-hackers&lt;/a&gt;&lt;br&gt;To unsubscribe, send any mail to &amp;quot;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26427980&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-hackers-unsubscribe@...&lt;/a&gt;&amp;quot;
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Getting-running-time-of-child-tp26424149p26427980.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26427918</id>
	<title>Re: Getting running time of child</title>
	<published>2009-11-19T07:07:50Z</published>
	<updated>2009-11-19T07:07:50Z</updated>
	<author>
		<name>Dag-Erling Smørgrav</name>
	</author>
	<content type="html">Koffie Yahoo &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26427918&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;koffieyahoo@...&lt;/a&gt;&amp;gt; writes:
&lt;br&gt;&amp;gt; Unfortunately, that only works for children that have terminated, not
&lt;br&gt;&amp;gt; for active children. I'm interested in active children.
&lt;br&gt;&lt;br&gt;Hmm, we could probably add a ptrace(2) operation, but ptrace(2) is
&lt;br&gt;inherently evil.
&lt;br&gt;&lt;br&gt;DES
&lt;br&gt;-- 
&lt;br&gt;Dag-Erling Smørgrav - &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26427918&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;des@...&lt;/a&gt;
&lt;br&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26427918&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-hackers@...&lt;/a&gt; mailing list
&lt;br&gt;&lt;a href=&quot;http://lists.freebsd.org/mailman/listinfo/freebsd-hackers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.freebsd.org/mailman/listinfo/freebsd-hackers&lt;/a&gt;&lt;br&gt;To unsubscribe, send any mail to &amp;quot;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26427918&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-hackers-unsubscribe@...&lt;/a&gt;&amp;quot;
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Getting-running-time-of-child-tp26424149p26427918.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26427640</id>
	<title>Re: Getting running time of child</title>
	<published>2009-11-19T06:52:27Z</published>
	<updated>2009-11-19T06:52:27Z</updated>
	<author>
		<name>Koffie Yahoo</name>
	</author>
	<content type="html">&amp;gt;&amp;gt; I've looked but not found (and I hope I'm in the right group here): Is
&lt;br&gt;&amp;gt;&amp;gt; there a way to get the user time and system time of a /running/ child
&lt;br&gt;&amp;gt;&amp;gt; from its parent (without having to mount procfs)?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; If you have only one child, there's getrusage(2).
&lt;br&gt;&lt;br&gt;Unfortunately, that only works for children that have terminated, not
&lt;br&gt;for active children. I'm interested in active children.
&lt;br&gt;&lt;br&gt;Jay
&lt;br&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26427640&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-hackers@...&lt;/a&gt; mailing list
&lt;br&gt;&lt;a href=&quot;http://lists.freebsd.org/mailman/listinfo/freebsd-hackers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.freebsd.org/mailman/listinfo/freebsd-hackers&lt;/a&gt;&lt;br&gt;To unsubscribe, send any mail to &amp;quot;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26427640&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-hackers-unsubscribe@...&lt;/a&gt;&amp;quot;
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Getting-running-time-of-child-tp26424149p26427640.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26428980</id>
	<title>Self-encrypting hard drives</title>
	<published>2009-11-19T06:48:41Z</published>
	<updated>2009-11-19T06:48:41Z</updated>
	<author>
		<name>Guy Helmer-2</name>
	</author>
	<content type="html">I'm looking into using self-encrypting hard drives (TCG Opal standard) with
&lt;br&gt;FreeBSD. &amp;nbsp;In particular I want to use the auto-lock mode. &amp;nbsp;I can't seem to
&lt;br&gt;find the details regarding how the authentication key is provided to the
&lt;br&gt;drive, and where there is any support in FreeBSD to enable unlocking the
&lt;br&gt;drive for use. &amp;nbsp;Any pointers would be appreciated.
&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;Guy
&lt;br&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26428980&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-hackers@...&lt;/a&gt; mailing list
&lt;br&gt;&lt;a href=&quot;http://lists.freebsd.org/mailman/listinfo/freebsd-hackers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.freebsd.org/mailman/listinfo/freebsd-hackers&lt;/a&gt;&lt;br&gt;To unsubscribe, send any mail to &amp;quot;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26428980&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-hackers-unsubscribe@...&lt;/a&gt;&amp;quot;
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Self-encrypting-hard-drives-tp26428980p26428980.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26427327</id>
	<title>Re: Wine on amd64 in 32 bit jail</title>
	<published>2009-11-19T06:32:59Z</published>
	<updated>2009-11-19T06:32:59Z</updated>
	<author>
		<name>Kostik Belousov</name>
	</author>
	<content type="html">On Thu, Nov 19, 2009 at 06:27:18AM -0800, Julian Elischer wrote:
&lt;div class='shrinkable-quote'&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26427327&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;xorquewasp@...&lt;/a&gt; wrote:
&lt;br&gt;&amp;gt; &amp;gt;On 2009-11-18 23:19:14, Julian Elischer wrote:
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;Wine is an exceptional bit of software, in many ways.
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;One way it is exceptional is that it uses the system in a number of
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;ways that nothing else does. For example it sets various special 
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;segment register settings and defines several different
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;segments on the LDT. &amp;nbsp;This is something that is different to some 
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;extent between i386 and amd64 and it is possible that
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;the code for 386 LDT syscalls under amd64 may not work correctly.
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;nothing else would test this.
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;I agree and would also have likely not even tried if it wasn't for
&lt;br&gt;&amp;gt; &amp;gt;reading on FreeBSD's own wiki (amonst other places) that it should
&lt;br&gt;&amp;gt; &amp;gt;actually work fine. I've tried various versions and always get the
&lt;br&gt;&amp;gt; &amp;gt;same result:
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp;&lt;a href=&quot;http://wiki.freebsd.org/Wine&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://wiki.freebsd.org/Wine&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp;&amp;quot;FreeBSD currently lacks support for 32bit ports on a 64bit system.
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp; However, with a little bit of effort you can build and use the 32 bit
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp; wine executable on an amd64 system (Diablo 2 works just fine).&amp;quot;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;His instructions show an essentially identical setup to mine (apart
&lt;br&gt;&amp;gt; &amp;gt;from the fact that he's running a chroot and I'm running a jail).
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; jail may not alow you to do the LDT system calls.
&lt;/div&gt;There are no restrictions for the sysarch(I386_GET/SET_LDT), neither
&lt;/div&gt;for root-only, nor for inside the jail.
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; have you tried a chroot?
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;Even any ideas on how to debug this would help.
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;xw
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26427327&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-hackers@...&lt;/a&gt; mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://lists.freebsd.org/mailman/listinfo/freebsd-hackers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.freebsd.org/mailman/listinfo/freebsd-hackers&lt;/a&gt;&lt;br&gt;&amp;gt; To unsubscribe, send any mail to &amp;quot;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26427327&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-hackers-unsubscribe@...&lt;/a&gt;&amp;quot;
&lt;/div&gt;&lt;/div&gt;&lt;br /&gt; &lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://old.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;attachment0&lt;/strong&gt; (203 bytes) &lt;a href=&quot;http://old.nabble.com/attachment/26427327/0/attachment0&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Wine-on-amd64-in-32-bit-jail-tp26421531p26427327.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26427306</id>
	<title>Re: mprotect(2) clears the flag for whole page which causes program crash.</title>
	<published>2009-11-19T06:32:26Z</published>
	<updated>2009-11-19T06:32:26Z</updated>
	<author>
		<name>Julian Elischer</name>
	</author>
	<content type="html">Sharad Chandra wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; &amp;nbsp;,---- [Jung-uk Kim wrote:]
&lt;br&gt;&amp;gt; | On Wednesday 18 November 2009 01:52 pm, Robert Watson wrote:
&lt;br&gt;&amp;gt; | &amp;gt; On Tue, 17 Nov 2009, Sharad Chandra wrote:
&lt;br&gt;&amp;gt; | &amp;gt; &amp;gt; Is it known bug or is there any workaround? How will a userland
&lt;br&gt;&amp;gt; | &amp;gt; &amp;gt; process make sure that process will not crash as malloc(3) can
&lt;br&gt;&amp;gt; | &amp;gt; &amp;gt; allocate where ever it get the memory free to use.
&lt;br&gt;&amp;gt; | &amp;gt;
&lt;br&gt;&amp;gt; | &amp;gt; mprotect(2) operates on pages, so you'll want to use mmap(2) and
&lt;br&gt;&amp;gt; | &amp;gt; munmap(2) to allocate and free pages directly rather than
&lt;br&gt;&amp;gt; | &amp;gt; mallac(3), which manages byte ranges from pages managed using those
&lt;br&gt;&amp;gt; | &amp;gt; same interfaces.
&lt;br&gt;&amp;gt; |
&lt;br&gt;&amp;gt; | For example:
&lt;br&gt;&amp;gt; |
&lt;br&gt;&amp;gt; | &lt;a href=&quot;http://docs.freebsd.org/cgi/mid.cgi?200911181926.nAIJQHOR081471&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://docs.freebsd.org/cgi/mid.cgi?200911181926.nAIJQHOR081471&lt;/a&gt;&lt;br&gt;&amp;gt; |
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Thanks everyone. mmap(2) worked and program did not crash. Only problem with 
&lt;br&gt;&amp;gt; it I use only fraction of allocated memory (each request alocate minimum of 
&lt;br&gt;&amp;gt; one page and my request is in hundreds), rest is waste of it so no one else 
&lt;br&gt;&amp;gt; will get this memory to use. And if a process runs as daemon and makes many 
&lt;br&gt;&amp;gt; request, It can hold a lot of it. Just a question floated in mind.
&lt;/div&gt;&lt;br&gt;write your own allocator that efficiently divides up the mmapped pages 
&lt;br&gt;among several requests?
&lt;br&gt;&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Many thanks,
&lt;br&gt;&amp;gt; Sharad Chandra
&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26427306&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-hackers@...&lt;/a&gt; mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://lists.freebsd.org/mailman/listinfo/freebsd-hackers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.freebsd.org/mailman/listinfo/freebsd-hackers&lt;/a&gt;&lt;br&gt;&amp;gt; To unsubscribe, send any mail to &amp;quot;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26427306&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-hackers-unsubscribe@...&lt;/a&gt;&amp;quot;
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26427306&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-hackers@...&lt;/a&gt; mailing list
&lt;br&gt;&lt;a href=&quot;http://lists.freebsd.org/mailman/listinfo/freebsd-hackers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.freebsd.org/mailman/listinfo/freebsd-hackers&lt;/a&gt;&lt;br&gt;To unsubscribe, send any mail to &amp;quot;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26427306&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-hackers-unsubscribe@...&lt;/a&gt;&amp;quot;
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/mprotect%282%29-clears-the-flag-for-whole-page-which-causes-program-crash.-tp26387423p26427306.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26427242</id>
	<title>Re: Wine on amd64 in 32 bit jail</title>
	<published>2009-11-19T06:27:18Z</published>
	<updated>2009-11-19T06:27:18Z</updated>
	<author>
		<name>Julian Elischer</name>
	</author>
	<content type="html">&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26427242&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;xorquewasp@...&lt;/a&gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; On 2009-11-18 23:19:14, Julian Elischer wrote:
&lt;br&gt;&amp;gt;&amp;gt; Wine is an exceptional bit of software, in many ways.
&lt;br&gt;&amp;gt;&amp;gt; One way it is exceptional is that it uses the system in a number of
&lt;br&gt;&amp;gt;&amp;gt; ways that nothing else does. For example it sets various special 
&lt;br&gt;&amp;gt;&amp;gt; segment register settings and defines several different
&lt;br&gt;&amp;gt;&amp;gt; segments on the LDT. &amp;nbsp;This is something that is different to some 
&lt;br&gt;&amp;gt;&amp;gt; extent between i386 and amd64 and it is possible that
&lt;br&gt;&amp;gt;&amp;gt; the code for 386 LDT syscalls under amd64 may not work correctly.
&lt;br&gt;&amp;gt;&amp;gt; nothing else would test this.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I agree and would also have likely not even tried if it wasn't for
&lt;br&gt;&amp;gt; reading on FreeBSD's own wiki (amonst other places) that it should
&lt;br&gt;&amp;gt; actually work fine. I've tried various versions and always get the
&lt;br&gt;&amp;gt; same result:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp; &lt;a href=&quot;http://wiki.freebsd.org/Wine&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://wiki.freebsd.org/Wine&lt;/a&gt;&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;quot;FreeBSD currently lacks support for 32bit ports on a 64bit system.
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;However, with a little bit of effort you can build and use the 32 bit
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;wine executable on an amd64 system (Diablo 2 works just fine).&amp;quot;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; His instructions show an essentially identical setup to mine (apart
&lt;br&gt;&amp;gt; from the fact that he's running a chroot and I'm running a jail).
&lt;/div&gt;&lt;br&gt;jail may not alow you to do the LDT system calls.
&lt;br&gt;&lt;br&gt;have you tried a chroot?
&lt;br&gt;&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Even any ideas on how to debug this would help.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; xw
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26427242&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-hackers@...&lt;/a&gt; mailing list
&lt;br&gt;&lt;a href=&quot;http://lists.freebsd.org/mailman/listinfo/freebsd-hackers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.freebsd.org/mailman/listinfo/freebsd-hackers&lt;/a&gt;&lt;br&gt;To unsubscribe, send any mail to &amp;quot;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26427242&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-hackers-unsubscribe@...&lt;/a&gt;&amp;quot;
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Wine-on-amd64-in-32-bit-jail-tp26421531p26427242.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26426212</id>
	<title>Re: Getting running time of child</title>
	<published>2009-11-19T05:27:11Z</published>
	<updated>2009-11-19T05:27:11Z</updated>
	<author>
		<name>Dag-Erling Smørgrav</name>
	</author>
	<content type="html">Koffie Yahoo &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26426212&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;koffieyahoo@...&lt;/a&gt;&amp;gt; writes:
&lt;br&gt;&amp;gt; I've looked but not found (and I hope I'm in the right group here): Is
&lt;br&gt;&amp;gt; there a way to get the user time and system time of a /running/ child
&lt;br&gt;&amp;gt; from its parent (without having to mount procfs)?
&lt;br&gt;&lt;br&gt;If you have only one child, there's getrusage(2).
&lt;br&gt;&lt;br&gt;DES
&lt;br&gt;-- 
&lt;br&gt;Dag-Erling Smørgrav - &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26426212&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;des@...&lt;/a&gt;
&lt;br&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26426212&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-hackers@...&lt;/a&gt; mailing list
&lt;br&gt;&lt;a href=&quot;http://lists.freebsd.org/mailman/listinfo/freebsd-hackers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.freebsd.org/mailman/listinfo/freebsd-hackers&lt;/a&gt;&lt;br&gt;To unsubscribe, send any mail to &amp;quot;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26426212&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-hackers-unsubscribe@...&lt;/a&gt;&amp;quot;
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Getting-running-time-of-child-tp26424149p26426212.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26426184</id>
	<title>Re: header file bug sys/types.h sys/file.h vs. _XOPEN_SOURCE standard</title>
	<published>2009-11-19T05:25:10Z</published>
	<updated>2009-11-19T05:25:10Z</updated>
	<author>
		<name>Dag-Erling Smørgrav</name>
	</author>
	<content type="html">&amp;quot;Matthias Andree&amp;quot; &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26426184&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;matthias.andree@...&lt;/a&gt;&amp;gt; writes:
&lt;br&gt;&amp;gt; I've talked to Theodore Y. Ts'o, who is the sysutils/e2fsprogs
&lt;br&gt;&amp;gt; upstream maintainer and proposed to remove the _XOPEN_SOURCE
&lt;br&gt;&amp;gt; definition (my idea &amp;nbsp;was that the code shouldn't be claiming standards
&lt;br&gt;&amp;gt; compliance while it uses &amp;nbsp;non-standard headers), but he refused that
&lt;br&gt;&amp;gt; (since it would break the &amp;nbsp;e2fsprogs build on Solaris).
&lt;br&gt;&lt;br&gt;He's right. &amp;nbsp;You misunderstand _XOPEN_SOURCE; it does not mean &amp;quot;my
&lt;br&gt;program complies with X/Open blah&amp;quot;, it means &amp;quot;my program requires the
&lt;br&gt;facilities provided by X/Open blah&amp;quot;. &amp;nbsp;The problem lies in FreeBSD's
&lt;br&gt;headers, which don't implement namespace separation correctly.
&lt;br&gt;&lt;br&gt;DES
&lt;br&gt;-- 
&lt;br&gt;Dag-Erling Smørgrav - &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26426184&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;des@...&lt;/a&gt;
&lt;br&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26426184&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-hackers@...&lt;/a&gt; mailing list
&lt;br&gt;&lt;a href=&quot;http://lists.freebsd.org/mailman/listinfo/freebsd-hackers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.freebsd.org/mailman/listinfo/freebsd-hackers&lt;/a&gt;&lt;br&gt;To unsubscribe, send any mail to &amp;quot;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26426184&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-hackers-unsubscribe@...&lt;/a&gt;&amp;quot;
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/header-file-bug-sys-types.h-sys-file.h-vs.-_XOPEN_SOURCE-standard-tp26423521p26426184.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26424796</id>
	<title>Re: mprotect(2) clears the flag for whole page which causes program crash.</title>
	<published>2009-11-19T03:42:32Z</published>
	<updated>2009-11-19T03:42:32Z</updated>
	<author>
		<name>Robert Watson</name>
	</author>
	<content type="html">&lt;br&gt;On 19 Nov 2009, at 10:57, Sharad Chandra wrote:
&lt;br&gt;&lt;br&gt;&amp;gt; Thanks everyone. mmap(2) worked and program did not crash. Only problem with 
&lt;br&gt;&amp;gt; it I use only fraction of allocated memory (each request alocate minimum of 
&lt;br&gt;&amp;gt; one page and my request is in hundreds), rest is waste of it so no one else 
&lt;br&gt;&amp;gt; will get this memory to use. And if a process runs as daemon and makes many 
&lt;br&gt;&amp;gt; request, It can hold a lot of it. Just a question floated in mind.
&lt;br&gt;&lt;br&gt;&lt;br&gt;One of the defining properties of pages is that they are the granularity at which access protections are controlled in hardware, so your choices are a minimum of one page per object, or having multiple objects that share the same protection properties. However, it could be that you could accomplish whatever your goals may be using techniques other than paging; for example, using ptrace(2) to instrument individual accesses, binary rewriting, a virtual machine, source code instrumentation, or other methods along those lines that have been used for debugging and security over the years.
&lt;br&gt;&lt;br&gt;Robert_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26424796&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-hackers@...&lt;/a&gt; mailing list
&lt;br&gt;&lt;a href=&quot;http://lists.freebsd.org/mailman/listinfo/freebsd-hackers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.freebsd.org/mailman/listinfo/freebsd-hackers&lt;/a&gt;&lt;br&gt;To unsubscribe, send any mail to &amp;quot;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26424796&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-hackers-unsubscribe@...&lt;/a&gt;&amp;quot;
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/mprotect%282%29-clears-the-flag-for-whole-page-which-causes-program-crash.-tp26387423p26424796.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26424358</id>
	<title>Re: mprotect(2) clears the flag for whole page which causes program crash.</title>
	<published>2009-11-19T02:57:33Z</published>
	<updated>2009-11-19T02:57:33Z</updated>
	<author>
		<name>Sharad Chandra-3</name>
	</author>
	<content type="html">&amp;nbsp;,---- [Jung-uk Kim wrote:]
&lt;br&gt;| On Wednesday 18 November 2009 01:52 pm, Robert Watson wrote:
&lt;br&gt;| &amp;gt; On Tue, 17 Nov 2009, Sharad Chandra wrote:
&lt;br&gt;| &amp;gt; &amp;gt; Is it known bug or is there any workaround? How will a userland
&lt;br&gt;| &amp;gt; &amp;gt; process make sure that process will not crash as malloc(3) can
&lt;br&gt;| &amp;gt; &amp;gt; allocate where ever it get the memory free to use.
&lt;br&gt;| &amp;gt;
&lt;br&gt;| &amp;gt; mprotect(2) operates on pages, so you'll want to use mmap(2) and
&lt;br&gt;| &amp;gt; munmap(2) to allocate and free pages directly rather than
&lt;br&gt;| &amp;gt; mallac(3), which manages byte ranges from pages managed using those
&lt;br&gt;| &amp;gt; same interfaces.
&lt;br&gt;|
&lt;br&gt;| For example:
&lt;br&gt;|
&lt;br&gt;| &lt;a href=&quot;http://docs.freebsd.org/cgi/mid.cgi?200911181926.nAIJQHOR081471&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://docs.freebsd.org/cgi/mid.cgi?200911181926.nAIJQHOR081471&lt;/a&gt;&lt;br&gt;|
&lt;br&gt;&lt;br&gt;Thanks everyone. mmap(2) worked and program did not crash. Only problem with 
&lt;br&gt;it I use only fraction of allocated memory (each request alocate minimum of 
&lt;br&gt;one page and my request is in hundreds), rest is waste of it so no one else 
&lt;br&gt;will get this memory to use. And if a process runs as daemon and makes many 
&lt;br&gt;request, It can hold a lot of it. Just a question floated in mind.
&lt;br&gt;&lt;br&gt;Many thanks,
&lt;br&gt;Sharad Chandra
&lt;br&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26424358&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-hackers@...&lt;/a&gt; mailing list
&lt;br&gt;&lt;a href=&quot;http://lists.freebsd.org/mailman/listinfo/freebsd-hackers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.freebsd.org/mailman/listinfo/freebsd-hackers&lt;/a&gt;&lt;br&gt;To unsubscribe, send any mail to &amp;quot;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26424358&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-hackers-unsubscribe@...&lt;/a&gt;&amp;quot;
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/mprotect%282%29-clears-the-flag-for-whole-page-which-causes-program-crash.-tp26387423p26424358.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26423860</id>
	<title>Re: Wine on amd64 in 32 bit jail</title>
	<published>2009-11-19T02:23:09Z</published>
	<updated>2009-11-19T02:23:09Z</updated>
	<author>
		<name>xorquewasp</name>
	</author>
	<content type="html">On 2009-11-19 12:15:18, Kostik Belousov wrote:
&lt;br&gt;&amp;gt; On Thu, Nov 19, 2009 at 09:36:54AM +0000, &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26423860&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;xorquewasp@...&lt;/a&gt; wrote:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; It is in 8.0.
&lt;br&gt;&lt;br&gt;Excellent, thanks.
&lt;br&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26423860&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-hackers@...&lt;/a&gt; mailing list
&lt;br&gt;&lt;a href=&quot;http://lists.freebsd.org/mailman/listinfo/freebsd-hackers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.freebsd.org/mailman/listinfo/freebsd-hackers&lt;/a&gt;&lt;br&gt;To unsubscribe, send any mail to &amp;quot;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26423860&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-hackers-unsubscribe@...&lt;/a&gt;&amp;quot;
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Wine-on-amd64-in-32-bit-jail-tp26421531p26423860.html" />
</entry>

</feed>
