From owner-freebsd-emulation@FreeBSD.ORG Sun Jun 23 09:48:38 2013 Return-Path: Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id A73917E4 for ; Sun, 23 Jun 2013 09:48:38 +0000 (UTC) (envelope-from decke@bluelife.at) Received: from mail-ob0-x232.google.com (mail-ob0-x232.google.com [IPv6:2607:f8b0:4003:c01::232]) by mx1.freebsd.org (Postfix) with ESMTP id 6D99816E6 for ; Sun, 23 Jun 2013 09:48:38 +0000 (UTC) Received: by mail-ob0-f178.google.com with SMTP id fb19so9876026obc.37 for ; Sun, 23 Jun 2013 02:48:38 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=bluelife.at; s=google; h=mime-version:sender:x-originating-ip:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=U9kbz2cgoZTJfKPz8nE6wU+AzU+ITr0Q0ZaZcKp6Xls=; b=QeFSuPYUTUi6Ff9+HHiPauKk9/S8JfVGJDNYmwaqNHEthsCnjLtAtWb3w4XjOkeAnu G9EQ091FpQZbI9p87j0hXSXpSBdNU7trXeGkTdyHnL5Iv/mFAGAaqhUp37dy809kMtF/ ZVdWRAH1jBksg2mcljT6fQCYv0IUOy1wID6Co= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=mime-version:sender:x-originating-ip:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type :content-transfer-encoding:x-gm-message-state; bh=U9kbz2cgoZTJfKPz8nE6wU+AzU+ITr0Q0ZaZcKp6Xls=; b=QqAnSNmcN7cycPGeiTni5o4z3s6710O3f/N2TgGiqRjidpEEOcRmBc2tMKPEG0EqS3 xB2H60nmTXLKu5NfD7yQAi37Z2EEh2xzETtUVQkEx6YJxFfRfmejIRPjMQj2fBDAiFGo EONTuJJJ374T6EEhOBwc+vYH5Sn8Z5uuRXKeW7c2cCIJB2l4f4qfgPrzszBkzoPPhKnc pfRoq/bW354RgLxWyRwsX+5EDXFevNYcB+TVvyhxKeLlQUxYvjQAR9OAwE6eR8N9eTCq LAC3/Tt3EXiteHOK6QX2lZvP58lJTh/DQYNQw529yMq9GSXYzjqsW+Ns+zNP/7K+H2aG rbwQ== MIME-Version: 1.0 X-Received: by 10.182.129.129 with SMTP id nw1mr6487169obb.100.1371980917940; Sun, 23 Jun 2013 02:48:37 -0700 (PDT) Sender: decke@bluelife.at Received: by 10.76.95.168 with HTTP; Sun, 23 Jun 2013 02:48:37 -0700 (PDT) X-Originating-IP: [46.207.29.194] In-Reply-To: <2E7892C4-F9BD-41A3-9269-D9A24D0DB695@plausible.coop> References: <6BCC0BDE-C9FD-47F0-96AE-88F797EFB074@plausible.coop> <2E7892C4-F9BD-41A3-9269-D9A24D0DB695@plausible.coop> Date: Sun, 23 Jun 2013 11:48:37 +0200 X-Google-Sender-Auth: bCIS_RvCAa1GxywbWmAW9TIb0lg Message-ID: Subject: Re: [PATCH] VLAN trunking support in VirtualBox vboxnetflt From: =?ISO-8859-1?Q?Bernhard_Fr=F6hlich?= To: Landon Fuller Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Gm-Message-State: ALoCoQm2OD5ib+OyZGh8Nhsk4t9aF6md/mYOP5jN/sPT4PQOvx3pfy1egfBdEpP5PgL+u8IlqURV Cc: "freebsd-emulation@freebsd.org" X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Jun 2013 09:48:38 -0000 Thanks a lot for the fix! I've added it to the kmod port in our testing repository and it will be included in the next update for vbox 4.1.14. https://redports.org/changeset/13816 On Sun, May 26, 2013 at 6:17 PM, Landon Fuller wro= te: > Hello, > > This patch has been in the vbox kmod port for some time now, and I've bee= n running it without incident; however, I recently ran into a configuration= that the patch does not correctly handle: > - A single host interface (eg, em0) bridged to a VM > - VLANs also configured on the host interface (em0.vlan0, em0.vla= n1) > > The packet flow in this situation should be: > - The ng filter is handed a packet from em0 > - The filter re-adds the VLAN header to the top of the packet and= strips the M_VLANTAG flag > - After passing to the virtual switch, the packet is re-injected = into the host via ether_demux(). > - ether_demux() extracts the embedded VLAN tag and hands the pack= et off to vlan_input_p(). > > As it turns out, ether_demux() does not handle frames with embedded VLAN = tags, and at this point, the packet is dropped, rather than being routed to= the host's VLAN handling: > http://lists.freebsd.org/pipermail/freebsd-net/2011-October/03020= 1.html > > The result is as follows: > - Packets received via the host interface are handled correctly. > - Packets (including VLAN tagged packets) are passed to sub-VMs c= orrectly. > - Packets that *should* be handled by vlan* sub-interfaces on the= host are never received by those interfaces as they're dropped in ether_de= mux(). > > This worked in my existing configuration because the host and the VMs act= ually use two different VLAN trunks (em0 and em1), and so em0 packets being= dropped after injection into the virtual switch does not affect the host's= handling of packets on em1. > > I've attached an updated patch that should resolve this issue; I'm curren= tly testing it locally on my home deployment and so far it is working fine.= The patch simply restores the VLAN flags and stripped ethernet header afte= r injecting the packet into the virtual ethernet switch. With this change i= n place, ether_demux() correctly hands the packet off to vlan_input_p(). > > Cheers, > Landon > > > > > On Apr 13, 2012, at 2:51 PM, Landon J Fuller wro= te: > >> Howdy, >> >> I was looking into trunking VLANs into a virtual machine via bridging, a= nd noted that transmit of 802.1q tagged packets worked from the guest VM, b= ut upon reception, the VLAN tag seemed to be stripped before the packets hi= t the guest's interface. >> >> Taking a look at the netgraph-based bridging implementation, it looks li= ke the VLAN tag is not being re-inserted at the head of the ethernet frame = prior to handing off the to VirtualBox, and VBox doesn't seem to have an eq= uivalent 'ether_vtag' field in its INTNETSG struct to handle this. >> >> Thus, to preserve the VLAN tag, I modified vboxNetFltFreeBSDMBufToSG() t= o ether_vlanencap() to insert the VLAN tag before handing off to VBox. With= this in place, I was able to successfully trunk VLANs to a virtual machine= . >> >> Some caveats: >> - If using virtio-kmod's if_vtnet, you must set vlanhwfilter (or p= romisc) flags on the guest interface before virtualbox will pass the VLAN t= agged packets through. Otherwise, the VBox virtio-net device implementation= will filter out the incoming packets before handing them to the VM hardwar= e. >> - VBox's em(4) host implementation does not appear to support 'har= dware' VLAN tagging, but it does declare it. If using a em(4) virtualized N= IC, you must set -vlanhwtag on the guest interface. >> >> I welcome someone(s) with more experience than I eyeballing the (tiny) a= ttached patch. I'm also especially concerned as to whether this should be c= onsidered supported functionality in VBox, or I'm just getting lucky with t= he virtio-net code path. >> >> Thanks, >> Landon >> >> ____= ___________________________________________ >> freebsd-emulation@freebsd.org mailing list >> http://lists.freebsd.org/mailman/listinfo/freebsd-emulation >> To unsubscribe, send any mail to "freebsd-emulation-unsubscribe@freebsd.= org" > > > _______________________________________________ > freebsd-emulation@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-emulation > To unsubscribe, send any mail to "freebsd-emulation-unsubscribe@freebsd.o= rg" --=20 Bernhard Froehlich http://www.bluelife.at/ From owner-freebsd-emulation@FreeBSD.ORG Sun Jun 23 11:54:26 2013 Return-Path: Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id E5F6DE41 for ; Sun, 23 Jun 2013 11:54:26 +0000 (UTC) (envelope-from guru@unixarea.de) Received: from ms16-1.1blu.de (ms16-1.1blu.de [89.202.0.34]) by mx1.freebsd.org (Postfix) with ESMTP id 833AF19C3 for ; Sun, 23 Jun 2013 11:54:26 +0000 (UTC) Received: from [188.174.45.181] (helo=localhost.my.domain) by ms16-1.1blu.de with esmtpsa (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.69) (envelope-from ) id 1Uqis6-00085p-Ab for freebsd-emulation@freebsd.org; Sun, 23 Jun 2013 13:54:18 +0200 Received: from localhost.my.domain (localhost [127.0.0.1]) by localhost.my.domain (8.14.7/8.14.3) with ESMTP id r5NBsFpo035904 for ; Sun, 23 Jun 2013 13:54:16 +0200 (CEST) (envelope-from guru@unixarea.de) Received: (from guru@localhost) by localhost.my.domain (8.14.7/8.14.3/Submit) id r5NBsEcN035903 for freebsd-emulation@freebsd.org; Sun, 23 Jun 2013 13:54:15 +0200 (CEST) (envelope-from guru@unixarea.de) X-Authentication-Warning: localhost.my.domain: guru set sender to guru@unixarea.de using -f Date: Sun, 23 Jun 2013 13:54:14 +0200 From: Matthias Apitz To: freebsd-emulation@freebsd.org Subject: Re: Linux Skype 4.0.0.8 on FreeBSD is works! Message-ID: <20130623115414.GA35607@La-Habana> References: <5601141.3vH9Oc8Bjl@notebook.alkar.net> <20130622101005.GA3109@La-Habana> <20130622120121.GA65509@triton8.kn-bremen.de> <20130622123925.GA33983@La-Habana> <20130622134532.GA71376@triton8.kn-bremen.de> <20130622135419.GA1641@La-Habana> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20130622135419.GA1641@La-Habana> X-Operating-System: FreeBSD 9.0-CURRENT r214444 (i386) User-Agent: Mutt/1.5.21 (2010-09-15) X-Con-Id: 51246 X-Con-U: 0-guru X-Originating-IP: 188.174.45.181 X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Matthias Apitz List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Jun 2013 11:54:27 -0000 El da Saturday, June 22, 2013 a las 03:54:20PM +0200, Matthias Apitz escribi: > El da Saturday, June 22, 2013 a las 03:45:32PM +0200, Juergen Lock escribi: > > > > I don't understand this, I'm on SVN head with my kernel, exactly on > > > r250588 (as of May 13, I think): > > > > > Those are just the revisions where the Linux pipe2 syscall was added, > > if you have a later checkout you should be fine. > > Meanwhile the kernel compiled and booted fine; and the cam is now > working in /compat/linux/skype_staticQT-4.0.0.8/skype The cam is working, but audio calls (also to the Skype's echo service) are failing after the first or second test call; during the call to echo only incoming UDP is to be seen with TCPDUMP, no outbound UDP. There mus be something wrong with the emulation of the audio ioctl's, it seems. In messages are line like this: Jun 23 10:20:21 La-Habana kernel: linux: pid 1587 (LVAP0 thread): syscall inotify_init not implemented Jun 23 10:20:25 La-Habana kernel: linux: pid 1579 (Backbone): ioctl fd=39, cmd=0x8b01 ('<8b>',1) is not implemented Jun 23 10:28:09 La-Habana kernel: linux: pid 3153 (LVAP0 thread): syscall inotify_init not implemented Jun 23 10:28:12 La-Habana kernel: linux: pid 3145 (Backbone): ioctl fd=39, cmd=0x8b01 ('<8b>',1) is not implemented Jun 23 10:31:39 La-Habana kernel: linux: pid 3257 (LVAP0 thread): syscall inotify_init not implemented Jun 23 10:31:40 La-Habana kernel: linux: pid 3249 (Backbone): ioctl fd=24, cmd=0x8b01 ('<8b>',1) is not implemented Jun 23 10:31:40 La-Habana kernel: linux: pid 3249 (Backbone): ioctl fd=23, cmd=0x8b01 ('<8b>',1) is not implemented matthias -- Matthias Apitz | /"\ ASCII Ribbon Campaign: www.asciiribbon.org E-mail: guru@unixarea.de | \ / - No HTML/RTF in E-mail WWW: http://www.unixarea.de/ | X - No proprietary attachments phone: +49-170-4527211 | / \ - Respect for open standards From owner-freebsd-emulation@FreeBSD.ORG Sun Jun 23 19:56:51 2013 Return-Path: Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id C207EED9 for ; Sun, 23 Jun 2013 19:56:51 +0000 (UTC) (envelope-from artyom.mirgorodsky@gmail.com) Received: from mail-ee0-x22e.google.com (mail-ee0-x22e.google.com [IPv6:2a00:1450:4013:c00::22e]) by mx1.freebsd.org (Postfix) with ESMTP id 586421AF2 for ; Sun, 23 Jun 2013 19:56:51 +0000 (UTC) Received: by mail-ee0-f46.google.com with SMTP id d41so5465484eek.19 for ; Sun, 23 Jun 2013 12:56:50 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:subject:date:message-id:user-agent:in-reply-to:references :mime-version:content-transfer-encoding:content-type; bh=VHPEMFT2OCwv+syJO/ywUvbNdTEIKpFWcYBtgcty5SY=; b=v5iNCHdoNQtrxLz+li+CaPwCMHHrN2kqrK9E7NpRYjeqWH3+aQBvIrt5Nkky7iFY2y Ozs5NWpqcs/cm+UpcG5sMkM/4GQuvw6LE4A4M52CUDaaYIPnrjuDf5fKDKHSUL5RnMqT HeOsTjbkw0zZzbROXk/hDjWSRv4UXjuS54X11JNblGqUN1YMal38oV98qEOKilOK453o mdKIiWCwOuKrYM/WpDeG6yD1nT6OI458ZRYPQ+uZu8hNPIwyReDldPjPZKxbDzZKPbn9 ILR0u31V9oAEDFlTywFH0PE3Scx6edB0NqFjHqYybHLfhRv2K1fbZDdqPoIYuGnckDKV 1lmg== X-Received: by 10.15.21.78 with SMTP id c54mr21448533eeu.14.1372017410429; Sun, 23 Jun 2013 12:56:50 -0700 (PDT) Received: from notebook.alkar.net ([91.243.193.58]) by mx.google.com with ESMTPSA id n5sm23316809eed.9.2013.06.23.12.56.49 for (version=TLSv1.2 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Sun, 23 Jun 2013 12:56:49 -0700 (PDT) From: Artyom Mirgorodskiy To: freebsd-emulation@freebsd.org, Matthias Apitz Subject: Re: Linux Skype 4.0.0.8 on FreeBSD is works! Date: Sun, 23 Jun 2013 22:57:36 +0300 Message-ID: <3679625.US8yqklSyA@notebook.alkar.net> User-Agent: KMail/4.10.3 (FreeBSD/10.0-CURRENT; KDE/4.10.3; amd64; ; ) In-Reply-To: <20130623115414.GA35607@La-Habana> References: <5601141.3vH9Oc8Bjl@notebook.alkar.net> <20130622135419.GA1641@La-Habana> <20130623115414.GA35607@La-Habana> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="iso-8859-1" X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Jun 2013 19:56:51 -0000 The same problem sometime happen with previous version of Skype On Sunday 23 June 2013 13:54:14 Matthias Apitz wrote: > El d=EDa Saturday, June 22, 2013 a las 03:54:20PM +0200, Matthias Api= tz escribi=F3: >=20 > > El d=EDa Saturday, June 22, 2013 a las 03:45:32PM +0200, Juergen Lo= ck escribi=F3: > >=20 > > > > I don't understand this, I'm on SVN head with my kernel, exactl= y on > > > > r250588 (as of May 13, I think): > > > >=20 > > > Those are just the revisions where the Linux pipe2 syscall was ad= ded, > > > if you have a later checkout you should be fine. > >=20 > > Meanwhile the kernel compiled and booted fine; and the cam is now > > working in /compat/linux/skype_staticQT-4.0.0.8/skype >=20 > The cam is working, but audio calls (also to the Skype's echo service= ) > are failing after the first or second test call; during the call to e= cho > only incoming UDP is to be seen with TCPDUMP, no outbound UDP. There = mus > be something wrong with the emulation of the audio ioctl's, it seems.= >=20 > In messages are line like this: >=20 >=20 > Jun 23 10:20:21 La-Habana kernel: linux: pid 1587 (LVAP0 thread): sys= call inotify_init not implemented > Jun 23 10:20:25 La-Habana kernel: linux: pid 1579 (Backbone): ioctl > fd=3D39, cmd=3D0x8b01 ('<8b>',1) is not implemented > Jun 23 10:28:09 La-Habana kernel: linux: pid 3153 (LVAP0 thread): sys= call inotify_init not implemented > Jun 23 10:28:12 La-Habana kernel: linux: pid 3145 (Backbone): ioctl > fd=3D39, cmd=3D0x8b01 ('<8b>',1) is not implemented > Jun 23 10:31:39 La-Habana kernel: linux: pid 3257 (LVAP0 thread): sys= call inotify_init not implemented > Jun 23 10:31:40 La-Habana kernel: linux: pid 3249 (Backbone): ioctl > fd=3D24, cmd=3D0x8b01 ('<8b>',1) is not implemented > Jun 23 10:31:40 La-Habana kernel: linux: pid 3249 (Backbone): ioctl > fd=3D23, cmd=3D0x8b01 ('<8b>',1) is not implemented >=20 > =09matthias >=20 --=20 Artyom Mirgorodskiy From owner-freebsd-emulation@FreeBSD.ORG Sun Jun 23 20:15:02 2013 Return-Path: Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 3444C592 for ; Sun, 23 Jun 2013 20:15:02 +0000 (UTC) (envelope-from guru@unixarea.de) Received: from ms16-1.1blu.de (ms16-1.1blu.de [89.202.0.34]) by mx1.freebsd.org (Postfix) with ESMTP id EDCC21BAA for ; Sun, 23 Jun 2013 20:15:01 +0000 (UTC) Received: from [89.204.138.23] (helo=tiny.Sisis.de) by ms16-1.1blu.de with esmtpsa (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.69) (envelope-from ) id 1Uqqge-0006x5-0S for freebsd-emulation@freebsd.org; Sun, 23 Jun 2013 22:15:00 +0200 Received: from tiny.Sisis.de (localhost [127.0.0.1]) by tiny.Sisis.de (8.14.5/8.14.3) with ESMTP id r5NKEvTo001362 for ; Sun, 23 Jun 2013 22:14:57 +0200 (CEST) (envelope-from guru@unixarea.de) Received: (from guru@localhost) by tiny.Sisis.de (8.14.5/8.14.3/Submit) id r5NKEuoq001361 for freebsd-emulation@freebsd.org; Sun, 23 Jun 2013 22:14:56 +0200 (CEST) (envelope-from guru@unixarea.de) X-Authentication-Warning: tiny.Sisis.de: guru set sender to guru@unixarea.de using -f Date: Sun, 23 Jun 2013 22:14:56 +0200 From: Matthias Apitz To: freebsd-emulation@freebsd.org Subject: Re: Linux Skype 4.0.0.8 on FreeBSD is works! Message-ID: <20130623201454.GA1340@tiny.Sisis.de> References: <5601141.3vH9Oc8Bjl@notebook.alkar.net> <20130622135419.GA1641@La-Habana> <20130623115414.GA35607@La-Habana> <3679625.US8yqklSyA@notebook.alkar.net> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <3679625.US8yqklSyA@notebook.alkar.net> X-Operating-System: FreeBSD 10.0-CURRENT r235646 (i386) User-Agent: Mutt/1.5.21 (2010-09-15) X-Con-Id: 51246 X-Con-U: 0-guru X-Originating-IP: 89.204.138.23 X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Matthias Apitz List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Jun 2013 20:15:02 -0000 El da Sunday, June 23, 2013 a las 10:57:36PM +0300, Artyom Mirgorodskiy escribi: > The same problem sometime happen with previous version of Skype For me, audio failing in a call nearly never hapened with skype-2, while it now fails nearly always with sk-4, it is just unuseable that way (which ofc is not your fault) matthias -- Sent from my FreeBSD netbook Matthias Apitz, , http://www.unixarea.de/ f: +49-170-4527211 UNIX since V7 on PDP-11, UNIX on mainframe since ESER 1055 (IBM /370) UNIX on x86 since SVR4.2 UnixWare 2.1.2, FreeBSD since 2.2.5 From owner-freebsd-emulation@FreeBSD.ORG Sun Jun 23 20:21:06 2013 Return-Path: Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 0F58EFF7 for ; Sun, 23 Jun 2013 20:21:06 +0000 (UTC) (envelope-from artyom.mirgorodsky@gmail.com) Received: from mail-ee0-x232.google.com (mail-ee0-x232.google.com [IPv6:2a00:1450:4013:c00::232]) by mx1.freebsd.org (Postfix) with ESMTP id 9BA6C1C01 for ; Sun, 23 Jun 2013 20:21:05 +0000 (UTC) Received: by mail-ee0-f50.google.com with SMTP id d49so5662870eek.9 for ; Sun, 23 Jun 2013 13:21:04 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:subject:date:message-id:user-agent:in-reply-to:references :mime-version:content-transfer-encoding:content-type; bh=QwQ/PUPqesPfKxjAfoAb/1t7xecth2xHuYE5btfSzKQ=; b=O4kMfcXCyonNhF1Kz7XOwxPiM88ZIKeEDP9ZM7qlFoMv0Xj0tzIzea7AoUqFqCfHNK JwzC3FckbgXcH8XkpoDhqD/pEG6aT1cnQDiGP8mNdcEmbXHZP3SUNpgAC8N5A9Khz+08 cgNjWIVvB8kXQ6TjX3F/vIsVobFoc9dFI5c3Rl7SZBhDX2ScxXbtj2cuJBexj8WHa6l8 oN7MClhG9fc2cDWuBJQPzXG2LP9ezchczTsFCHYQfQ8iMysG2H1rKD0enCStfPmw8nyd 7tlje4xVHP/yIlmIx8cXKFmArTGmA5meH6jtoEWg+n7ZNx43fVXOF3TuJ9eh6ribVOI3 nyZg== X-Received: by 10.15.108.8 with SMTP id cc8mr21521365eeb.65.1372018864694; Sun, 23 Jun 2013 13:21:04 -0700 (PDT) Received: from notebook.alkar.net ([91.243.193.58]) by mx.google.com with ESMTPSA id e44sm23430332eeh.11.2013.06.23.13.21.03 for (version=TLSv1.2 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Sun, 23 Jun 2013 13:21:04 -0700 (PDT) From: Artyom Mirgorodskiy To: freebsd-emulation@freebsd.org, Matthias Apitz Subject: Re: Linux Skype 4.0.0.8 on FreeBSD is works! Date: Sun, 23 Jun 2013 23:21:50 +0300 Message-ID: <62365790.0fEE1gJACP@notebook.alkar.net> User-Agent: KMail/4.10.3 (FreeBSD/10.0-CURRENT; KDE/4.10.3; amd64; ; ) In-Reply-To: <20130623201454.GA1340@tiny.Sisis.de> References: <5601141.3vH9Oc8Bjl@notebook.alkar.net> <3679625.US8yqklSyA@notebook.alkar.net> <20130623201454.GA1340@tiny.Sisis.de> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Jun 2013 20:21:06 -0000 When I call to windows users often did not hear me after minute two last 2 month. Actually this is what prompted me to get to work Skype 4 on FreeBSD. Unfortunately this did not solve the problem with audio, but helped with the video after recent changes. On Sunday 23 June 2013 22:14:56 Matthias Apitz wrote: > For me, audio failing in a call nearly never hapened with skype-2, while > it now fails nearly always with sk-4, it is just unuseable that way > (which ofc is not your fault) > > matthias -- Artyom Mirgorodskiy From owner-freebsd-emulation@FreeBSD.ORG Mon Jun 24 11:06:44 2013 Return-Path: Delivered-To: freebsd-emulation@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 2AFD6FC for ; Mon, 24 Jun 2013 11:06:44 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 0E3841DBC for ; Mon, 24 Jun 2013 11:06:44 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id r5OB6hqs000943 for ; Mon, 24 Jun 2013 11:06:43 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r5OB6hCM000941 for freebsd-emulation@FreeBSD.org; Mon, 24 Jun 2013 11:06:43 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 24 Jun 2013 11:06:43 GMT Message-Id: <201306241106.r5OB6hCM000941@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: gnats set sender to owner-bugmaster@FreeBSD.org using -f From: FreeBSD bugmaster To: freebsd-emulation@FreeBSD.org Subject: Current problem reports assigned to freebsd-emulation@FreeBSD.org X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Jun 2013 11:06:44 -0000 Note: to view an individual PR, use: http://www.freebsd.org/cgi/query-pr.cgi?pr=(number). The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/177743 emulation [kvm] [panic] kernel panic during `portsnap update` on o ports/177722 emulation Change request: Add terminfo database to linux_base-* o kern/174933 emulation [linux] if_nameindex fail in linuxulator enviroment o kern/174908 emulation [vmware] "unsupportable block size 0" after upgrading o kern/174238 emulation [qemu] FreeBSD 9.0 doesn't boot under QEMU due to ACPI o ports/169896 emulation [patch] audio/linux-f10-alsa-lib: use OSS plugin by de o kern/169814 emulation [linux] ptrace is broken in Linux emulation o kern/169805 emulation [linux] utime() syscall does not work in linuxulator o kern/159646 emulation [linux] [patch] bump Linux version in linuxulator f kern/156691 emulation [vmware] [panic] panic when using hard disks as RAW de o kern/156353 emulation [ibcs2] ibcs2 binaries that execute on 4.x not working o kern/155577 emulation [boot] BTX halted after install. Reboot during install o kern/155040 emulation [linux] [patch] Linux recvfrom doesn't handle proto fa o kern/153990 emulation [hyper-v]: Will not install into Hyper-V on Server 200 o kern/153887 emulation [linux] Linux emulator not understand STB_GNU_UNIQUE b o kern/153243 emulation [ibcs2] Seg fault whne running COFF binary using iBCS2 o kern/151714 emulation [linux] print/acroread9 not usable due to lack of supp a bin/150262 emulation [patch] truss(1) -f doesn't follow descendants of the a kern/150186 emulation [parallels] [panic] Parallels Desktop: CDROM disconnec o ports/148097 emulation [patch] suggested addition to linux_base-* packages to o ports/148096 emulation emulators/linux_base-* can not be built from ports on o kern/147793 emulation [vmware] [panic] cdrom handling, panic, possible race o kern/146237 emulation [linux] Linux binaries not reading directories mounted p kern/144584 emulation [linprocfs][patch] bogus values in linprocfs o ports/142837 emulation [patch] emulators/linux_base-* packages fails to insta o kern/140156 emulation [linux] cdparanoia fails to read drive data f kern/138944 emulation [parallels] [regression] Parallels no longer works in o kern/138880 emulation [linux] munmap segfaults after linux_mmap2 stresstest o ports/135337 emulation [PATCH] emulators/linux_base-f10: incorrect bash usage s kern/133144 emulation [linux] linuxulator 2.6 crashes with nvidias libGL.so. o kern/126232 emulation [linux] Linux ioctl TCGETS (0x5401) always fails o kern/86619 emulation [linux] linux emulator interacts oddly with cp a kern/72920 emulation [linux] path "prefixing" is not done on unix domain so o kern/41543 emulation [patch] [request] easier wine/w23 support o kern/39201 emulation [linux] [patch] ptrace(2) and rfork(RFLINUXTHPN) confu o kern/36952 emulation [patch] [linux] ldd(1) command of linux does not work o kern/11165 emulation [ibcs2] IBCS2 doesn't work correctly with PID_MAX 9999 37 problems total. From owner-freebsd-emulation@FreeBSD.ORG Mon Jun 24 17:36:30 2013 Return-Path: Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 170EACDF for ; Mon, 24 Jun 2013 17:36:30 +0000 (UTC) (envelope-from kaltheat@zoho.com) Received: from sender1.zohomail.com (sender1.zohomail.com [72.5.230.95]) by mx1.freebsd.org (Postfix) with ESMTP id 05A5D13BD for ; Mon, 24 Jun 2013 17:36:29 +0000 (UTC) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=zapps768; d=zoho.com; h=date:from:to:subject:message-id:mime-version:content-type:user-agent:sender; b=lXqXKWppuFLEy2lTswQEOJfpcpkP6PsO1nvwq3ptOmLqCHNYoTR+cjwLrFZFDFU7SKL0fDnHChCJ uzgjIivGFhbTaBX9apD8cflNvAUubAKfv13JdXO7VIOqVwVN+gAs Received: from sol (131-144-103-86.dynamic.dsl.tng.de [86.103.144.131]) by mx.zohomail.com with SMTPS id 1372095382711968.8136016278224; Mon, 24 Jun 2013 10:36:22 -0700 (PDT) Date: Mon, 24 Jun 2013 19:36:16 +0200 From: kaltheat@googlemail.com To: freebsd-emulation@freebsd.org Subject: virtualbox-ose: problem after update to 4.2.14 Message-ID: <20130624173604.GA1341@sol> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.21 (2010-09-15) Sender: kaltheat@zoho.com X-ZohoMailClient: External X-Zoho-Virus-Status: 2 X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Jun 2013 17:36:30 -0000 Hi, After update of emulators/virtualbox-ose to latest version (4.2.14) virtualbox GUI is not able to set memory correctly. In GUI the maximum of choosable memory is 0MB. I tried it without the old settings and machine dirs ~/.VirtualBox, ~/VirtalBox VMs and got the same result. I'm using FreeBSD 9.1 amd64 Release. With VBoxManage however everything works fine: $ VBoxManage createvm --name test --register Virtual machine 'test' is created and registered. UUID: 48382805-96e5-4954-899f-c05836a5ec6e Settings file: '~/VirtualBox VMs/test/test.vbox' $ VBoxManage modifyvm test --memory 1024 $ Nonetheless old vms seem to work - some linux machines (with updated guest additions) seem to have more apic-timer and kernel panic problems than before, but this occurs occassionally ... (haven't digged into it further) Is anybody having similar problems? Regards, kaltheat From owner-freebsd-emulation@FreeBSD.ORG Mon Jun 24 17:41:06 2013 Return-Path: Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 22E7EDBE; Mon, 24 Jun 2013 17:41:06 +0000 (UTC) (envelope-from feld@feld.me) Received: from out1-smtp.messagingengine.com (out1-smtp.messagingengine.com [66.111.4.25]) by mx1.freebsd.org (Postfix) with ESMTP id EC652147B; Mon, 24 Jun 2013 17:41:05 +0000 (UTC) Received: from compute2.internal (compute2.nyi.mail.srv.osa [10.202.2.42]) by gateway2.nyi.mail.srv.osa (Postfix) with ESMTP id F336D20AC3; Mon, 24 Jun 2013 13:40:58 -0400 (EDT) Received: from web3.nyi.mail.srv.osa ([10.202.2.213]) by compute2.internal (MEProxy); Mon, 24 Jun 2013 13:40:58 -0400 DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=feld.me; h= message-id:from:to:mime-version:content-transfer-encoding :content-type:in-reply-to:references:subject:date; s=mesmtp; bh= naYGQC5SiRdrBop52ZetvzNU1zQ=; b=oS3FjJBR+g27YRqe481IWXQqdlGqNGBK w08KXqk6BadUucwxwF9iOBchkBS1H5nDXnbV+ItX5ST0zBbspC8n1V2fzlANiBDB FRbo20Bc7x2ORE2yA80Z8EI6XJdQje8iuOeHnw2456us8bzONTjGwqKPS5WpGyNG LKsLFsNTqP0= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d= messagingengine.com; h=message-id:from:to:mime-version :content-transfer-encoding:content-type:in-reply-to:references :subject:date; s=smtpout; bh=naYGQC5SiRdrBop52ZetvzNU1zQ=; b=HyS vlLxnnahL41G5L2HpUcqINP6svYlP7EFdyZXlGDWsKGxC6Lpx4jczGygQ036jAen A72WrqlPtlQiGUdgrB5xoN8NqWO45RTlLqfUNtu0AXreR2j0fWgFsNERoqlDRi62 Blmehs6DDk42tAx1I+XbueqMXhBbTAbFp0mM4uQ8= Received: by web3.nyi.mail.srv.osa (Postfix, from userid 99) id CEB48B00003; Mon, 24 Jun 2013 13:40:58 -0400 (EDT) Message-Id: <1372095658.9513.140661247902582.5EC050A6@webmail.messagingengine.com> X-Sasl-Enc: Aw3ohVCUIsmKSFI+aPDFYoS5B2HJ0JX+FbeiTgHOMnKY 1372095658 From: Mark Felder To: freebsd-emulation@freebsd.org, vbox@FreeBSD.org MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain X-Mailer: MessagingEngine.com Webmail Interface - ajax-5ae8e04c In-Reply-To: <20130624173604.GA1341@sol> References: <20130624173604.GA1341@sol> Subject: Re: virtualbox-ose: problem after update to 4.2.14 Date: Mon, 24 Jun 2013 12:40:58 -0500 X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Jun 2013 17:41:06 -0000 On Mon, Jun 24, 2013, at 12:36, kaltheat@googlemail.com wrote: > > Is anybody having similar problems? > Yes, just tried to reproduce this and it certainly is a problem. You can't drag the bar to change memory nor can you type in the text box. This is a rather large regression. CC'd vbox@ From owner-freebsd-emulation@FreeBSD.ORG Mon Jun 24 18:06:53 2013 Return-Path: Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 4C8423F5 for ; Mon, 24 Jun 2013 18:06:53 +0000 (UTC) (envelope-from decke@bluelife.at) Received: from mail-ob0-x22b.google.com (mail-ob0-x22b.google.com [IPv6:2607:f8b0:4003:c01::22b]) by mx1.freebsd.org (Postfix) with ESMTP id A643D16D8 for ; Mon, 24 Jun 2013 18:06:52 +0000 (UTC) Received: by mail-ob0-f171.google.com with SMTP id dn14so11138756obc.16 for ; Mon, 24 Jun 2013 11:06:52 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=bluelife.at; s=google; h=mime-version:x-originating-ip:in-reply-to:references:date :message-id:subject:from:to:cc:content-type; bh=QJcEbHQVFILanfeeliiYV61U8ZGvNSxh0AIKyQbyfbE=; b=ZKCzlGYBZWe86V45GfCjgE4iRkrQyFO0NlQTrgkl7/VsKhEjV0b1VkqRlobJ+iL3td A6HaxXvC66GVNU5DjoSig4sI7R2nO/07KmUumiiqCelSQ/xbqvIcYBlQsgmLt8cT5Luv 7JaTmJ6C58ZlovdBfs7g+lW2lNSLkI3L3y7Cg= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=mime-version:x-originating-ip:in-reply-to:references:date :message-id:subject:from:to:cc:content-type:x-gm-message-state; bh=QJcEbHQVFILanfeeliiYV61U8ZGvNSxh0AIKyQbyfbE=; b=Ac06Zmds0QeTSVCtDpu+ziA7OsV+uXv1PQHXg0sCv4yJ8nnaIgroRLpMPuI/DDvSXo IdtyeqFypFRS/jOT3DPZ5ZMz6xLCYsjt5MU25343Za4xlU871/Clp02x2wW8PytfytId jQeKlHGv7+qlVSi7F0o9L9CY0aA0s02KSb4BJSKY0kj6Mgk2pq9rIH7RdLeYCfPPDvSS tbP7yRRovQ+G6bM62h36BIHIZUn9tigTjIaveCki8hCox56WrJ4vNcT1P6IcMlaeXN/q Jgu6vueP1kn9J1RhXTYulQXQ5Xo+50ea4QEs/8J1QhddhbeqRLG6tV1mJcZAPn3JC5Wm iJBQ== MIME-Version: 1.0 X-Received: by 10.60.118.105 with SMTP id kl9mr11690486oeb.94.1372097212174; Mon, 24 Jun 2013 11:06:52 -0700 (PDT) Received: by 10.76.95.168 with HTTP; Mon, 24 Jun 2013 11:06:52 -0700 (PDT) X-Originating-IP: [89.144.192.193] Received: by 10.76.95.168 with HTTP; Mon, 24 Jun 2013 11:06:52 -0700 (PDT) In-Reply-To: <1372095658.9513.140661247902582.5EC050A6@webmail.messagingengine.com> References: <20130624173604.GA1341@sol> <1372095658.9513.140661247902582.5EC050A6@webmail.messagingengine.com> Date: Mon, 24 Jun 2013 20:06:52 +0200 Message-ID: Subject: Re: virtualbox-ose: problem after update to 4.2.14 From: =?ISO-8859-1?Q?Bernhard_Fr=F6hlich?= To: Mark Felder X-Gm-Message-State: ALoCoQmSkGiVNW21YkHkg8vF4SDgDcgJO4BylTlnhU6UEprmeagvcpoh/PIxwidNqQJF+pKAbsbU Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.14 Cc: freebsd-emulation@freebsd.org, vbox@freebsd.org X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Jun 2013 18:06:53 -0000 Am 24.06.2013 19:41 schrieb "Mark Felder" : > > > > On Mon, Jun 24, 2013, at 12:36, kaltheat@googlemail.com wrote: > > > > Is anybody having similar problems? > > > > Yes, just tried to reproduce this and it certainly is a problem. You > can't drag the bar to change memory nor can you type in the text box. > This is a rather large regression. > > CC'd vbox@ Thanks, I will talk to upstream and see if we need to add a fix for the port or reroll the release. From owner-freebsd-emulation@FreeBSD.ORG Tue Jun 25 09:40:27 2013 Return-Path: Delivered-To: emulation@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 8068AE0E for ; Tue, 25 Jun 2013 09:40:27 +0000 (UTC) (envelope-from r.c.ladan@gmail.com) Received: from mail-lb0-x22d.google.com (mail-lb0-x22d.google.com [IPv6:2a00:1450:4010:c04::22d]) by mx1.freebsd.org (Postfix) with ESMTP id 08F831E78 for ; Tue, 25 Jun 2013 09:40:26 +0000 (UTC) Received: by mail-lb0-f173.google.com with SMTP id v1so833616lbd.18 for ; Tue, 25 Jun 2013 02:40:25 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:message-id:date:from:user-agent:mime-version:to:cc:subject :references:in-reply-to:x-enigmail-version:content-type :content-transfer-encoding; bh=rY6D9wTRKcnS1FpTJFWpNL9PO1XbtVixr8aTZZZ44Cc=; b=KEknHX51Csu+bKvqrUYjxPqKRKmiZQNXSAw2r2D3V2cUKVd9ch7MOe0p0SW+U/M1W4 g70Cf0dVJigdiomZjBABpt8+s7kqZnUOkgg+OKy3Vy3ao9qcVRCOqofsBREKeUWYzcuI C9xkApg3PSYShIpdxAQOdV1xJMRcVnaeU2mVuaHSP1sPeJkICyWPP+lOuW8IpV+l0uu9 sOW0bt4ABxpPARkUVluWMRRrQG1x9dtKOEXwqW1ZAHMcyzhHeK2Z3sQFPF+BLGaFl2vO TH1yRGpbjC/j5ee5pKrFhlpQnNtiFmymHAKb1A8pPwUE4oV7lxnLvcRVPBJFF8HOAZaJ 505A== X-Received: by 10.112.167.228 with SMTP id zr4mr14664188lbb.96.1372153225361; Tue, 25 Jun 2013 02:40:25 -0700 (PDT) Received: from ?IPv6:2001:980:d7ed:1:cc65:7e25:e949:bd69? ([2001:980:d7ed:1:cc65:7e25:e949:bd69]) by mx.google.com with ESMTPSA id et10sm8342115lbc.6.2013.06.25.02.40.23 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Tue, 25 Jun 2013 02:40:24 -0700 (PDT) Sender: =?UTF-8?Q?Ren=C3=A9_Ladan?= Message-ID: <51C96586.50601@freebsd.org> Date: Tue, 25 Jun 2013 11:40:22 +0200 From: =?UTF-8?B?UmVuw6kgTGFkYW4=?= User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:17.0) Gecko/20130615 Thunderbird/17.0.6 MIME-Version: 1.0 To: Alexander Leidinger Subject: Re: patch to clean up Linux DRI ports References: <51C1937B.1080802@freebsd.org> <51C1F8C1.6040407@passap.ru> <20130621230243.00006c37@unknown> In-Reply-To: <20130621230243.00006c37@unknown> X-Enigmail-Version: 1.5.1 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: emulation@freebsd.org X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Jun 2013 09:40:27 -0000 On 21-06-2013 23:02, Alexander Leidinger wrote: > On Wed, 19 Jun 2013 20:46:51 +0200 > Eitan Adler wrote: > >> On Wed, Jun 19, 2013 at 8:30 PM, Boris Samorodov >> wrote: >>> 19.06.2013 15:18, René Ladan пишет: >>> >>>> right now we have three Linux DRI ports around: >>>> - graphics/linux-dri74 (Ubuntu 9.09) >>>> - graphics/linux_dri (unknown, PORTVERSION 7.0) >>>> - graphics/linux-f10-dri >>>> >>>> Currently graphics/linux-dri74 is the default. I plan to modify >>>> bsd.linux-apps.mk and bsd.port.mk to change this to linux-f10-dri, >>>> after which the other two ports can be removed. >>>> >>>> See the attached patch (INDEX build is fine, no runtime testing >>>> done yet). >>> No objection from me. >>> Thanks! >> LGTM > Do we have a way to use a ${LINUX_DIST_SUFFIX} in the bsd.port.mk part? > I expect the answer is no, but I would love that someone prove me wrong > here for the sake of not hardcoding a specific version here. If nobody > has an idea how to have this working in this way, I would like to see a > comment in bsd.linux-apps.mk which points the the _GL_linux_RUN_DEPENDS > variable in b.p.m which specially mentions to update the b.l-a.m part > (and the other way too). The _GL_linux_RUN_DEPENDS variable is there to be able to write "USE_GL=linux" in a port but find /usr/ports/ -mindepth 2 -maxdepth 3 -name Makefile\* | xargs grep USE_GL | grep linux returns nothing so we might as well drop it? (svn revision 321727) Rene From owner-freebsd-emulation@FreeBSD.ORG Tue Jun 25 10:59:30 2013 Return-Path: Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 1E4C16E7 for ; Tue, 25 Jun 2013 10:59:30 +0000 (UTC) (envelope-from decke@bluelife.at) Received: from mail-oa0-x235.google.com (mail-oa0-x235.google.com [IPv6:2607:f8b0:4003:c02::235]) by mx1.freebsd.org (Postfix) with ESMTP id DCA0911FA for ; Tue, 25 Jun 2013 10:59:29 +0000 (UTC) Received: by mail-oa0-f53.google.com with SMTP id k14so13124714oag.26 for ; Tue, 25 Jun 2013 03:59:29 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=bluelife.at; s=google; h=mime-version:x-originating-ip:in-reply-to:references:date :message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=P+4WPsP6rhnvPH2bcUjXXtRVBpy/TCX3gX/skLwvde4=; b=Pv02PPKxilLutLwduePZL8E6DEQXYLTmkcUZVvF33BfqK9Q7iiqSLMNyES4Fp64p7R j+isZmCHFja+u9lPJNj6aEKnhL1MF+4Ou2qLAVTRkM6IpOGebS+AKka1oebm04Hvbq9B 9w4yDOgx/54e/EypZRzJtW1TuvMp6G3rGcOAQ= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=mime-version:x-originating-ip:in-reply-to:references:date :message-id:subject:from:to:cc:content-type :content-transfer-encoding:x-gm-message-state; bh=P+4WPsP6rhnvPH2bcUjXXtRVBpy/TCX3gX/skLwvde4=; b=PekBDRHOLhKOObtoZNwf1xQKrKDA0IVCOKePLkuC7CRJeDPk9jkTsDmFPMFWQHTIp7 svy1UBMaDQd6tgqxlJgFZG0t9E6p/8JRaWy3q7S2j4H47njfdtTnPjLdc4bsgcP9MAdy nUmwiKsEXJQnu5SAAOOFFS6hvoqyg5slI03NLisifaG6mQJcss66N5BlpBvkcrYVZG8S +xGcDNgVlxGdjNarRJIupOJykqmhbEWHZA9XRSXUtx0wUB6i1ZnxPFoR0D7SSqrsvMUE o+XH7nB6eHcyp1H4ZvR7iwEe7GHie/q6uowSXYoCln/iYizRgdXBn9dzku+kiU5c4CSU j/JA== MIME-Version: 1.0 X-Received: by 10.182.242.45 with SMTP id wn13mr9704209obc.30.1372157969405; Tue, 25 Jun 2013 03:59:29 -0700 (PDT) Received: by 10.76.95.168 with HTTP; Tue, 25 Jun 2013 03:59:29 -0700 (PDT) X-Originating-IP: [80.123.233.199] In-Reply-To: <1372095658.9513.140661247902582.5EC050A6@webmail.messagingengine.com> References: <20130624173604.GA1341@sol> <1372095658.9513.140661247902582.5EC050A6@webmail.messagingengine.com> Date: Tue, 25 Jun 2013 12:59:29 +0200 Message-ID: Subject: Re: virtualbox-ose: problem after update to 4.2.14 From: =?ISO-8859-1?Q?Bernhard_Fr=F6hlich?= To: Mark Felder Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Gm-Message-State: ALoCoQkx3glPVnScB7CqeacTAOAeMmdj0lWOC3l/QmCOaRSkB04BkoBlhAUQL301MYOub64rIIsI Cc: "freebsd-emulation@freebsd.org" , vbox@freebsd.org X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Jun 2013 10:59:30 -0000 On Mon, Jun 24, 2013 at 7:40 PM, Mark Felder wrote: > > > On Mon, Jun 24, 2013, at 12:36, kaltheat@googlemail.com wrote: >> >> Is anybody having similar problems? >> > > Yes, just tried to reproduce this and it certainly is a problem. You > can't drag the bar to change memory nor can you type in the text box. > This is a rather large regression. > > CC'd vbox@ First reaction from upstream is that this might be a Qt bug since they did not change code in the GUI area. So we will need to debug that on our own to see what is causing that. -- Bernhard Fr=F6hlich http://www.bluelife.at/ From owner-freebsd-emulation@FreeBSD.ORG Wed Jun 26 11:53:50 2013 Return-Path: Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 620D4D43 for ; Wed, 26 Jun 2013 11:53:50 +0000 (UTC) (envelope-from user@atena.prefo.pl) Received: from atena.prefo.pl (atena.prefo.pl [188.165.80.169]) by mx1.freebsd.org (Postfix) with ESMTP id 33CF8106A for ; Wed, 26 Jun 2013 11:53:50 +0000 (UTC) Received: by atena.prefo.pl (Postfix, from userid 10025) id BAA691C223A7; Wed, 26 Jun 2013 13:44:28 +0200 (CEST) To: freebsd-emulation@freebsd.org Subject: =?utf-8?B?Xw==?= X-PHP-Originating-Script: 10025:actives.php From: =?utf-8?B?0JDQu9C10LrRgdCw0L3QtNGA?= Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Date: Wed, 26 Jun 2013 13:44:28 +0200 (CEST) X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Jun 2013 11:53:50 -0000 Добрый день Меня зовут Александр. Я занимаюсь профессионально массовыми рассылками. Предлагаю прорекламировать Ваше коммерческое предложение по любой нужной базе. Если Вам интересно - я соберу базу данных нужных предприятий. Если это возможно - сообщите пожалуйста Ваш контакт, я объясню о данном виде рекламы детальнее. Заранее благодарен за ответ, Александр.