From owner-svn-src-head@FreeBSD.ORG Tue Jun 25 18:33:32 2013 Return-Path: Delivered-To: svn-src-head@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 9F3613EA; Tue, 25 Jun 2013 18:33:32 +0000 (UTC) (envelope-from adrian.chadd@gmail.com) Received: from mail-qc0-x233.google.com (mail-qc0-x233.google.com [IPv6:2607:f8b0:400d:c01::233]) by mx1.freebsd.org (Postfix) with ESMTP id 3245E1CA0; Tue, 25 Jun 2013 18:33:32 +0000 (UTC) Received: by mail-qc0-f179.google.com with SMTP id e11so7616624qcx.10 for ; Tue, 25 Jun 2013 11:33:31 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type; bh=bECNjHL+iv0APOjRDTJB1r5nGToc5Th0Wryf9h6H4fo=; b=jkmUYLhTgQQ7MbzjFRnjFYxeq1I8CGD3kuqM1N+Vqj8x/QWiR7hh9TgKQbnUx7V/k8 huGvU67HZev3HnqbBP/NN0GYFs+zBh4WJeJNavIqOZvCgCbUtSO4o/03MQ7NN3UoNVk1 4X9TLVDM9MnvKIbG3CVm4SxZE/R5+mJC6tUpi8f6pA8GLevNoztDlVWJgoMagjBtA2yf /XUd1bTBHCjC8P+VbjLpuisKjljJFgh60FtJjNLbVzuZMX9Kua9ISxlg8j3aZAJKEE3y a4qrynFRAfQPV/NPKXylOwJ1AUq6avE/IDI7TfCHRjF1WRXHTUWq9ZoebS6zhx4/4Q8Q /X3Q== MIME-Version: 1.0 X-Received: by 10.229.163.4 with SMTP id y4mr113691qcx.4.1372185211303; Tue, 25 Jun 2013 11:33:31 -0700 (PDT) Sender: adrian.chadd@gmail.com Received: by 10.224.5.65 with HTTP; Tue, 25 Jun 2013 11:33:31 -0700 (PDT) In-Reply-To: <20130625134858.GA61858@zxy.spb.ru> References: <201306250010.r5P0Aosi087956@svn.freebsd.org> <20130625134858.GA61858@zxy.spb.ru> Date: Tue, 25 Jun 2013 11:33:31 -0700 X-Google-Sender-Auth: GB6nUW7urYLAE8mDFoObOVGN5iw Message-ID: Subject: Re: svn commit: r252184 - head/sys/net From: Adrian Chadd To: Slawa Olhovchenkov Content-Type: text/plain; charset=ISO-8859-1 Cc: svn-src-head@freebsd.org, Qing Li , svn-src-all@freebsd.org, src-committers@freebsd.org X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Jun 2013 18:33:32 -0000 Is this worth a freebsd version bump? In case some ports rely on the new-but-now-broken behaviour? Adrian On 25 June 2013 06:48, Slawa Olhovchenkov wrote: > On Tue, Jun 25, 2013 at 12:10:50AM +0000, Qing Li wrote: > >> Author: qingli >> Date: Tue Jun 25 00:10:49 2013 >> New Revision: 252184 >> URL: http://svnweb.freebsd.org/changeset/base/252184 >> >> Log: >> Due to the routing related networking kernel redesign work >> in FBSD 8.0, interface routes have been returened to the >> applications without the RTF_GATEWAY bit. This incompatibility >> has caused some issues with Zebra, Qugga and the like. >> This patch provides the RTF_GATEWAY flag bit in returned interface >> routes so to behave similarly to pre 8.0 systems. >> >> Reviewed by: hrs >> Verified by: mackn at opendns dot com >> >> Modified: >> head/sys/net/route.h >> head/sys/net/rtsock.c > > MFC planed?