From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:35691) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QJhjI-0000bw-SA for qemu-devel@nongnu.org; Tue, 10 May 2011 03:51:41 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QJhjH-0004fb-Rz for qemu-devel@nongnu.org; Tue, 10 May 2011 03:51:40 -0400 Received: from mail-gx0-f173.google.com ([209.85.161.173]:40205) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QJhjH-0004fT-Hx for qemu-devel@nongnu.org; Tue, 10 May 2011 03:51:39 -0400 Received: by gxk26 with SMTP id 26so2460587gxk.4 for ; Tue, 10 May 2011 00:51:38 -0700 (PDT) Message-ID: <4DC8EE85.4010109@landley.net> Date: Tue, 10 May 2011 02:51:33 -0500 From: Rob Landley MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Subject: [Qemu-devel] -net PCI bus order reversed since 1.14.0 List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Until recently, -net options used to add interfaces to linux in the same order they went on the command line, so the first one you listed on the qemu command line would become eth0, the second -net became eth1, and so on. Now they're added in _reverse_ order, so the _last_ one on the command line is eth0. I bisected the behavior change to commit 60c07d933c66c4b30a83b7ccbc8a0cb3df1b2d0e but don't understand why it changes this behavior. (Probably making udev do something stupid, but it happens consistently both before and after...) Rob