From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Michael S. Tsirkin" Subject: Re: [PATCH net-next v10 2/4] net: Introduce generic failover module Date: Fri, 11 May 2018 21:09:33 +0300 Message-ID: <20180511210815-mutt-send-email-mst@kernel.org> References: <1525731046-10989-1-git-send-email-sridhar.samudrala@intel.com> <1525731046-10989-3-git-send-email-sridhar.samudrala@intel.com> <460f3d8f-b2ec-2118-e296-03f4f9655c5a@infradead.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: Sridhar Samudrala , stephen@networkplumber.org, davem@davemloft.net, netdev@vger.kernel.org, virtualization@lists.linux-foundation.org, virtio-dev@lists.oasis-open.org, jesse.brandeburg@intel.com, alexander.h.duyck@intel.com, kubakici@wp.pl, jasowang@redhat.com, loseweigh@gmail.com, jiri@resnulli.us, aaron.f.brown@intel.com To: Randy Dunlap Return-path: Received: from mx3-rdu2.redhat.com ([66.187.233.73]:39606 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1750746AbeEKSJe (ORCPT ); Fri, 11 May 2018 14:09:34 -0400 Content-Disposition: inline In-Reply-To: <460f3d8f-b2ec-2118-e296-03f4f9655c5a@infradead.org> Sender: netdev-owner@vger.kernel.org List-ID: On Mon, May 07, 2018 at 03:39:19PM -0700, Randy Dunlap wrote: > Hi, > > On 05/07/2018 03:10 PM, Sridhar Samudrala wrote: > > > > Signed-off-by: Sridhar Samudrala > > --- > > MAINTAINERS | 7 + > > include/linux/netdevice.h | 16 + > > include/net/net_failover.h | 52 +++ > > net/Kconfig | 10 + > > net/core/Makefile | 1 + > > net/core/net_failover.c | 1044 ++++++++++++++++++++++++++++++++++++++++++++ > > 6 files changed, 1130 insertions(+) > > create mode 100644 include/net/net_failover.h > > create mode 100644 net/core/net_failover.c > > > > diff --git a/net/Kconfig b/net/Kconfig > > index b62089fb1332..0540856676de 100644 > > --- a/net/Kconfig > > +++ b/net/Kconfig > > @@ -429,6 +429,16 @@ config MAY_USE_DEVLINK > > config PAGE_POOL > > bool > > > > +config NET_FAILOVER > > + tristate "Failover interface" > > + default m > > Need some justification for default m (as opposed to n). Or one can just leave the default line out.