* fcoe: correct checking for bonding @ 2011-03-02 6:05 Jiri Pirko 2011-03-02 9:55 ` Jiri Pirko 0 siblings, 1 reply; 10+ messages in thread From: Jiri Pirko @ 2011-03-02 6:05 UTC (permalink / raw) To: linux-scsi; +Cc: devel, robert.w.love, netdev, fubar, joe.eykholt Check for bonding master and refuse to use that. Signed-off-by: Jiri Pirko <jpirko@redhat.com> --- drivers/scsi/fcoe/fcoe.c | 4 +--- 1 files changed, 1 insertions(+), 3 deletions(-) diff --git a/drivers/scsi/fcoe/fcoe.c b/drivers/scsi/fcoe/fcoe.c index 9f9600b..3becc6a 100644 --- a/drivers/scsi/fcoe/fcoe.c +++ b/drivers/scsi/fcoe/fcoe.c @@ -285,9 +285,7 @@ static int fcoe_interface_setup(struct fcoe_interface *fcoe, } /* Do not support for bonding device */ - if ((netdev->priv_flags & IFF_MASTER_ALB) || - (netdev->priv_flags & IFF_SLAVE_INACTIVE) || - (netdev->priv_flags & IFF_MASTER_8023AD)) { + if (netdev->priv_flags & IFF_BONDING && netdev->flags & IFF_MASTER) { FCOE_NETDEV_DBG(netdev, "Bonded interfaces not supported\n"); return -EOPNOTSUPP; } -- 1.7.3.4 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: fcoe: correct checking for bonding 2011-03-02 6:05 fcoe: correct checking for bonding Jiri Pirko @ 2011-03-02 9:55 ` Jiri Pirko 2011-03-03 1:09 ` Robert Love 0 siblings, 1 reply; 10+ messages in thread From: Jiri Pirko @ 2011-03-02 9:55 UTC (permalink / raw) To: linux-scsi, davem; +Cc: devel, robert.w.love, netdev, fubar, joe.eykholt Or perhaps this should be applied to net-next? Wed, Mar 02, 2011 at 07:05:35AM CET, jpirko@redhat.com wrote: >Check for bonding master and refuse to use that. > >Signed-off-by: Jiri Pirko <jpirko@redhat.com> >--- > drivers/scsi/fcoe/fcoe.c | 4 +--- > 1 files changed, 1 insertions(+), 3 deletions(-) > >diff --git a/drivers/scsi/fcoe/fcoe.c b/drivers/scsi/fcoe/fcoe.c >index 9f9600b..3becc6a 100644 >--- a/drivers/scsi/fcoe/fcoe.c >+++ b/drivers/scsi/fcoe/fcoe.c >@@ -285,9 +285,7 @@ static int fcoe_interface_setup(struct fcoe_interface *fcoe, > } > > /* Do not support for bonding device */ >- if ((netdev->priv_flags & IFF_MASTER_ALB) || >- (netdev->priv_flags & IFF_SLAVE_INACTIVE) || >- (netdev->priv_flags & IFF_MASTER_8023AD)) { >+ if (netdev->priv_flags & IFF_BONDING && netdev->flags & IFF_MASTER) { > FCOE_NETDEV_DBG(netdev, "Bonded interfaces not supported\n"); > return -EOPNOTSUPP; > } >-- >1.7.3.4 > ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: fcoe: correct checking for bonding 2011-03-02 9:55 ` Jiri Pirko @ 2011-03-03 1:09 ` Robert Love 2011-03-12 12:01 ` Jiri Pirko 0 siblings, 1 reply; 10+ messages in thread From: Robert Love @ 2011-03-03 1:09 UTC (permalink / raw) To: James.Bottomley, Jiri Pirko Cc: linux-scsi@vger.kernel.org, davem@davemloft.net, devel@open-fcoe.org, netdev@vger.kernel.org, fubar@us.ibm.com, joe.eykholt@gmail.com On Wed, 2011-03-02 at 01:55 -0800, Jiri Pirko wrote: > Or perhaps this should be applied to net-next? > I think this should go through scsi-misc as all the other libfc/libfcoe/fcoe patches do. > Wed, Mar 02, 2011 at 07:05:35AM CET, jpirko@redhat.com wrote: > >Check for bonding master and refuse to use that. > > > >Signed-off-by: Jiri Pirko <jpirko@redhat.com> > >--- > > drivers/scsi/fcoe/fcoe.c | 4 +--- > > 1 files changed, 1 insertions(+), 3 deletions(-) > > > >diff --git a/drivers/scsi/fcoe/fcoe.c b/drivers/scsi/fcoe/fcoe.c > >index 9f9600b..3becc6a 100644 > >--- a/drivers/scsi/fcoe/fcoe.c > >+++ b/drivers/scsi/fcoe/fcoe.c > >@@ -285,9 +285,7 @@ static int fcoe_interface_setup(struct fcoe_interface *fcoe, > > } > > > > /* Do not support for bonding device */ > >- if ((netdev->priv_flags & IFF_MASTER_ALB) || > >- (netdev->priv_flags & IFF_SLAVE_INACTIVE) || > >- (netdev->priv_flags & IFF_MASTER_8023AD)) { > >+ if (netdev->priv_flags & IFF_BONDING && netdev->flags & IFF_MASTER) { > > FCOE_NETDEV_DBG(netdev, "Bonded interfaces not supported\n"); > > return -EOPNOTSUPP; > > } > >-- > >1.7.3.4 > > James, feel free to pick up this patch. I don't have anything in my fcoe tree right now that it would conflict with. I'll also put it in my tree and resend if you don't put it into scsi-misc directly. Acked-by: Robert Love <robert.w.love@intel.com> ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: fcoe: correct checking for bonding 2011-03-03 1:09 ` Robert Love @ 2011-03-12 12:01 ` Jiri Pirko 2011-03-12 18:59 ` David Miller 0 siblings, 1 reply; 10+ messages in thread From: Jiri Pirko @ 2011-03-12 12:01 UTC (permalink / raw) To: Robert Love Cc: James.Bottomley, linux-scsi@vger.kernel.org, davem@davemloft.net, devel@open-fcoe.org, netdev@vger.kernel.org, fubar@us.ibm.com, joe.eykholt@gmail.com Thu, Mar 03, 2011 at 02:09:18AM CET, robert.w.love@intel.com wrote: >On Wed, 2011-03-02 at 01:55 -0800, Jiri Pirko wrote: >> Or perhaps this should be applied to net-next? >> >I think this should go through scsi-misc as all the other >libfc/libfcoe/fcoe patches do. > >> Wed, Mar 02, 2011 at 07:05:35AM CET, jpirko@redhat.com wrote: >> >Check for bonding master and refuse to use that. >> > >> >Signed-off-by: Jiri Pirko <jpirko@redhat.com> >> >--- >> > drivers/scsi/fcoe/fcoe.c | 4 +--- >> > 1 files changed, 1 insertions(+), 3 deletions(-) >> > >> >diff --git a/drivers/scsi/fcoe/fcoe.c b/drivers/scsi/fcoe/fcoe.c >> >index 9f9600b..3becc6a 100644 >> >--- a/drivers/scsi/fcoe/fcoe.c >> >+++ b/drivers/scsi/fcoe/fcoe.c >> >@@ -285,9 +285,7 @@ static int fcoe_interface_setup(struct fcoe_interface *fcoe, >> > } >> > >> > /* Do not support for bonding device */ >> >- if ((netdev->priv_flags & IFF_MASTER_ALB) || >> >- (netdev->priv_flags & IFF_SLAVE_INACTIVE) || >> >- (netdev->priv_flags & IFF_MASTER_8023AD)) { >> >+ if (netdev->priv_flags & IFF_BONDING && netdev->flags & IFF_MASTER) { >> > FCOE_NETDEV_DBG(netdev, "Bonded interfaces not supported\n"); >> > return -EOPNOTSUPP; >> > } >> >-- >> >1.7.3.4 >> > > >James, feel free to pick up this patch. I don't have anything in my fcoe >tree right now that it would conflict with. I'll also put it in my tree >and resend if you don't put it into scsi-misc directly. What's the status of this? Maybe this should rather go thru net-next Davem? Thanks Jirka > >Acked-by: Robert Love <robert.w.love@intel.com> > ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: fcoe: correct checking for bonding 2011-03-12 12:01 ` Jiri Pirko @ 2011-03-12 18:59 ` David Miller 2011-03-14 19:04 ` Robert Love 0 siblings, 1 reply; 10+ messages in thread From: David Miller @ 2011-03-12 18:59 UTC (permalink / raw) To: jpirko Cc: robert.w.love, James.Bottomley, linux-scsi, devel, netdev, fubar, joe.eykholt From: Jiri Pirko <jpirko@redhat.com> Date: Sat, 12 Mar 2011 13:01:10 +0100 > Thu, Mar 03, 2011 at 02:09:18AM CET, robert.w.love@intel.com wrote: >>On Wed, 2011-03-02 at 01:55 -0800, Jiri Pirko wrote: >>> Or perhaps this should be applied to net-next? >>> >>I think this should go through scsi-misc as all the other >>libfc/libfcoe/fcoe patches do. >> >>> Wed, Mar 02, 2011 at 07:05:35AM CET, jpirko@redhat.com wrote: >>> >Check for bonding master and refuse to use that. >>> > >>> >Signed-off-by: Jiri Pirko <jpirko@redhat.com> >>> >--- >>> > drivers/scsi/fcoe/fcoe.c | 4 +--- >>> > 1 files changed, 1 insertions(+), 3 deletions(-) >>> > >>> >diff --git a/drivers/scsi/fcoe/fcoe.c b/drivers/scsi/fcoe/fcoe.c >>> >index 9f9600b..3becc6a 100644 >>> >--- a/drivers/scsi/fcoe/fcoe.c >>> >+++ b/drivers/scsi/fcoe/fcoe.c >>> >@@ -285,9 +285,7 @@ static int fcoe_interface_setup(struct fcoe_interface *fcoe, >>> > } >>> > >>> > /* Do not support for bonding device */ >>> >- if ((netdev->priv_flags & IFF_MASTER_ALB) || >>> >- (netdev->priv_flags & IFF_SLAVE_INACTIVE) || >>> >- (netdev->priv_flags & IFF_MASTER_8023AD)) { >>> >+ if (netdev->priv_flags & IFF_BONDING && netdev->flags & IFF_MASTER) { >>> > FCOE_NETDEV_DBG(netdev, "Bonded interfaces not supported\n"); >>> > return -EOPNOTSUPP; >>> > } >>> >-- >>> >1.7.3.4 >>> > >> >>James, feel free to pick up this patch. I don't have anything in my fcoe >>tree right now that it would conflict with. I'll also put it in my tree >>and resend if you don't put it into scsi-misc directly. > > What's the status of this? Maybe this should rather go thru net-next Sure, I can take this. I'll look at it later. ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: fcoe: correct checking for bonding 2011-03-12 18:59 ` David Miller @ 2011-03-14 19:04 ` Robert Love 2011-03-14 19:22 ` Jiri Pirko 0 siblings, 1 reply; 10+ messages in thread From: Robert Love @ 2011-03-14 19:04 UTC (permalink / raw) To: David Miller Cc: jpirko@redhat.com, James.Bottomley@suse.de, linux-scsi@vger.kernel.org, devel@open-fcoe.org, netdev@vger.kernel.org, fubar@us.ibm.com, joe.eykholt@gmail.com On Sat, 2011-03-12 at 10:59 -0800, David Miller wrote: > From: Jiri Pirko <jpirko@redhat.com> > Date: Sat, 12 Mar 2011 13:01:10 +0100 > > > Thu, Mar 03, 2011 at 02:09:18AM CET, robert.w.love@intel.com wrote: > >>On Wed, 2011-03-02 at 01:55 -0800, Jiri Pirko wrote: > >>> Or perhaps this should be applied to net-next? > >>> > >>I think this should go through scsi-misc as all the other > >>libfc/libfcoe/fcoe patches do. > >> > >>> Wed, Mar 02, 2011 at 07:05:35AM CET, jpirko@redhat.com wrote: > >>> >Check for bonding master and refuse to use that. > >>> > > >>> >Signed-off-by: Jiri Pirko <jpirko@redhat.com> > >>> >--- > >>> > drivers/scsi/fcoe/fcoe.c | 4 +--- > >>> > 1 files changed, 1 insertions(+), 3 deletions(-) > >>> > > >>> >diff --git a/drivers/scsi/fcoe/fcoe.c b/drivers/scsi/fcoe/fcoe.c > >>> >index 9f9600b..3becc6a 100644 > >>> >--- a/drivers/scsi/fcoe/fcoe.c > >>> >+++ b/drivers/scsi/fcoe/fcoe.c > >>> >@@ -285,9 +285,7 @@ static int fcoe_interface_setup(struct fcoe_interface *fcoe, > >>> > } > >>> > > >>> > /* Do not support for bonding device */ > >>> >- if ((netdev->priv_flags & IFF_MASTER_ALB) || > >>> >- (netdev->priv_flags & IFF_SLAVE_INACTIVE) || > >>> >- (netdev->priv_flags & IFF_MASTER_8023AD)) { > >>> >+ if (netdev->priv_flags & IFF_BONDING && netdev->flags & IFF_MASTER) { > >>> > FCOE_NETDEV_DBG(netdev, "Bonded interfaces not supported\n"); > >>> > return -EOPNOTSUPP; > >>> > } > >>> >-- > >>> >1.7.3.4 > >>> > > >> > >>James, feel free to pick up this patch. I don't have anything in my fcoe > >>tree right now that it would conflict with. I'll also put it in my tree > >>and resend if you don't put it into scsi-misc directly. > > > > What's the status of this? Maybe this should rather go thru net-next > > Sure, I can take this. I'll look at it later. Hi Dave, I'd rather have this patch go through scsi-misc. Most, if not all, libfc, libfcoe and fcoe patches have taken this path. The way it has been working is that I have been collecting fcoe patches and re-posting them to scsi-misc after I have reviewed them and done some basic testing. Taking a patch like this through net{-next} could cause a merge problem at Linus' level if a later patch makes it though the normal process and conflicts. This is what I want to avoid. This patch, although appreciated, isn't critical. I have collected it into my tree and will re-post it to scsi-misc. I see no reason to treat this patch differently from other patches. Ultimately I just want things to go smoothly, so I'll leave it up to James and you to figure out what to do. Thanks, //Rob ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: fcoe: correct checking for bonding 2011-03-14 19:04 ` Robert Love @ 2011-03-14 19:22 ` Jiri Pirko 2011-03-14 20:20 ` David Miller 0 siblings, 1 reply; 10+ messages in thread From: Jiri Pirko @ 2011-03-14 19:22 UTC (permalink / raw) To: Robert Love Cc: David Miller, James.Bottomley@suse.de, linux-scsi@vger.kernel.org, devel@open-fcoe.org, netdev@vger.kernel.org, fubar@us.ibm.com, joe.eykholt@gmail.com Mon, Mar 14, 2011 at 08:04:07PM CET, robert.w.love@intel.com wrote: >On Sat, 2011-03-12 at 10:59 -0800, David Miller wrote: >> From: Jiri Pirko <jpirko@redhat.com> >> Date: Sat, 12 Mar 2011 13:01:10 +0100 >> >> > Thu, Mar 03, 2011 at 02:09:18AM CET, robert.w.love@intel.com wrote: >> >>On Wed, 2011-03-02 at 01:55 -0800, Jiri Pirko wrote: >> >>> Or perhaps this should be applied to net-next? >> >>> >> >>I think this should go through scsi-misc as all the other >> >>libfc/libfcoe/fcoe patches do. >> >> >> >>> Wed, Mar 02, 2011 at 07:05:35AM CET, jpirko@redhat.com wrote: >> >>> >Check for bonding master and refuse to use that. >> >>> > >> >>> >Signed-off-by: Jiri Pirko <jpirko@redhat.com> >> >>> >--- >> >>> > drivers/scsi/fcoe/fcoe.c | 4 +--- >> >>> > 1 files changed, 1 insertions(+), 3 deletions(-) >> >>> > >> >>> >diff --git a/drivers/scsi/fcoe/fcoe.c b/drivers/scsi/fcoe/fcoe.c >> >>> >index 9f9600b..3becc6a 100644 >> >>> >--- a/drivers/scsi/fcoe/fcoe.c >> >>> >+++ b/drivers/scsi/fcoe/fcoe.c >> >>> >@@ -285,9 +285,7 @@ static int fcoe_interface_setup(struct fcoe_interface *fcoe, >> >>> > } >> >>> > >> >>> > /* Do not support for bonding device */ >> >>> >- if ((netdev->priv_flags & IFF_MASTER_ALB) || >> >>> >- (netdev->priv_flags & IFF_SLAVE_INACTIVE) || >> >>> >- (netdev->priv_flags & IFF_MASTER_8023AD)) { >> >>> >+ if (netdev->priv_flags & IFF_BONDING && netdev->flags & IFF_MASTER) { >> >>> > FCOE_NETDEV_DBG(netdev, "Bonded interfaces not supported\n"); >> >>> > return -EOPNOTSUPP; >> >>> > } >> >>> >-- >> >>> >1.7.3.4 >> >>> > >> >> >> >>James, feel free to pick up this patch. I don't have anything in my fcoe >> >>tree right now that it would conflict with. I'll also put it in my tree >> >>and resend if you don't put it into scsi-misc directly. >> > >> > What's the status of this? Maybe this should rather go thru net-next >> >> Sure, I can take this. I'll look at it later. > >Hi Dave, > > I'd rather have this patch go through scsi-misc. Most, if not all, >libfc, libfcoe and fcoe patches have taken this path. The way it has >been working is that I have been collecting fcoe patches and re-posting >them to scsi-misc after I have reviewed them and done some basic >testing. > > Taking a patch like this through net{-next} could cause a merge >problem at Linus' level if a later patch makes it though the normal >process and conflicts. This is what I want to avoid. > > This patch, although appreciated, isn't critical. I have collected it >into my tree and will re-post it to scsi-misc. I see no reason to treat >this patch differently from other patches. Well I have another set of patches dependent on this one :( > > Ultimately I just want things to go smoothly, so I'll leave it up to >James and you to figure out what to do. > >Thanks, //Rob > ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: fcoe: correct checking for bonding 2011-03-14 19:22 ` Jiri Pirko @ 2011-03-14 20:20 ` David Miller 2011-03-14 20:53 ` James Bottomley 0 siblings, 1 reply; 10+ messages in thread From: David Miller @ 2011-03-14 20:20 UTC (permalink / raw) To: jpirko Cc: robert.w.love, James.Bottomley, linux-scsi, devel, netdev, fubar, joe.eykholt From: Jiri Pirko <jpirko@redhat.com> Date: Mon, 14 Mar 2011 20:22:02 +0100 > Mon, Mar 14, 2011 at 08:04:07PM CET, robert.w.love@intel.com wrote: >>On Sat, 2011-03-12 at 10:59 -0800, David Miller wrote: >>> From: Jiri Pirko <jpirko@redhat.com> >>> Date: Sat, 12 Mar 2011 13:01:10 +0100 >>> >>> > Thu, Mar 03, 2011 at 02:09:18AM CET, robert.w.love@intel.com wrote: >>> >>On Wed, 2011-03-02 at 01:55 -0800, Jiri Pirko wrote: >>> >>> Or perhaps this should be applied to net-next? >>> >>> >>> >>I think this should go through scsi-misc as all the other >>> >>libfc/libfcoe/fcoe patches do. >>> >> >>> >>> Wed, Mar 02, 2011 at 07:05:35AM CET, jpirko@redhat.com wrote: >>> >>> >Check for bonding master and refuse to use that. >>> >>> > >>> >>> >Signed-off-by: Jiri Pirko <jpirko@redhat.com> >>> >>> >--- >>> >>> > drivers/scsi/fcoe/fcoe.c | 4 +--- >>> >>> > 1 files changed, 1 insertions(+), 3 deletions(-) >>> >>> > >>> >>> >diff --git a/drivers/scsi/fcoe/fcoe.c b/drivers/scsi/fcoe/fcoe.c >>> >>> >index 9f9600b..3becc6a 100644 >>> >>> >--- a/drivers/scsi/fcoe/fcoe.c >>> >>> >+++ b/drivers/scsi/fcoe/fcoe.c >>> >>> >@@ -285,9 +285,7 @@ static int fcoe_interface_setup(struct fcoe_interface *fcoe, >>> >>> > } >>> >>> > >>> >>> > /* Do not support for bonding device */ >>> >>> >- if ((netdev->priv_flags & IFF_MASTER_ALB) || >>> >>> >- (netdev->priv_flags & IFF_SLAVE_INACTIVE) || >>> >>> >- (netdev->priv_flags & IFF_MASTER_8023AD)) { >>> >>> >+ if (netdev->priv_flags & IFF_BONDING && netdev->flags & IFF_MASTER) { >>> >>> > FCOE_NETDEV_DBG(netdev, "Bonded interfaces not supported\n"); >>> >>> > return -EOPNOTSUPP; >>> >>> > } >>> >>> >-- >>> >>> >1.7.3.4 >>> >>> > >>> >> >>> >>James, feel free to pick up this patch. I don't have anything in my fcoe >>> >>tree right now that it would conflict with. I'll also put it in my tree >>> >>and resend if you don't put it into scsi-misc directly. >>> > >>> > What's the status of this? Maybe this should rather go thru net-next >>> >>> Sure, I can take this. I'll look at it later. >> >>Hi Dave, >> >> I'd rather have this patch go through scsi-misc. Most, if not all, >>libfc, libfcoe and fcoe patches have taken this path. The way it has >>been working is that I have been collecting fcoe patches and re-posting >>them to scsi-misc after I have reviewed them and done some basic >>testing. >> >> Taking a patch like this through net{-next} could cause a merge >>problem at Linus' level if a later patch makes it though the normal >>process and conflicts. This is what I want to avoid. >> >> This patch, although appreciated, isn't critical. I have collected it >>into my tree and will re-post it to scsi-misc. I see no reason to treat >>this patch differently from other patches. > > Well I have another set of patches dependent on this one :( True, also I think Rob is overreacting. Any merge problems created will be handled properly by Linus. I recently changed the interface to ipv4 and ipv6 route lookups, and this required all kinds of changes to stuff under Infiniband and elsewhere. It's the only sane way to handle this kind of thing. ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: fcoe: correct checking for bonding 2011-03-14 20:20 ` David Miller @ 2011-03-14 20:53 ` James Bottomley 2011-03-14 21:04 ` David Miller 0 siblings, 1 reply; 10+ messages in thread From: James Bottomley @ 2011-03-14 20:53 UTC (permalink / raw) To: David Miller Cc: jpirko, robert.w.love, linux-scsi, devel, netdev, fubar, joe.eykholt On Mon, 2011-03-14 at 13:20 -0700, David Miller wrote: > From: Jiri Pirko <jpirko@redhat.com> > Date: Mon, 14 Mar 2011 20:22:02 +0100 > > Mon, Mar 14, 2011 at 08:04:07PM CET, robert.w.love@intel.com wrote: > >> Taking a patch like this through net{-next} could cause a merge > >>problem at Linus' level if a later patch makes it though the normal > >>process and conflicts. This is what I want to avoid. > >> > >> This patch, although appreciated, isn't critical. I have collected it > >>into my tree and will re-post it to scsi-misc. I see no reason to treat > >>this patch differently from other patches. > > > > Well I have another set of patches dependent on this one :( > > True, also I think Rob is overreacting. > > Any merge problems created will be handled properly by Linus. > > I recently changed the interface to ipv4 and ipv6 route lookups, and > this required all kinds of changes to stuff under Infiniband and elsewhere. > It's the only sane way to handle this kind of thing. What Rob means is that fcoe has been in pretty heavy flux and so parallel patches can often cause non trivial merge nasties because of code motion. That said, I think we're pretty close to the end of the patch series for the merge window and it's a simple patch, so as long as it applies to net-next, I think we have an pretty low probability for non trivial merges. You can do it with my and Rob's acked-by. James ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: fcoe: correct checking for bonding 2011-03-14 20:53 ` James Bottomley @ 2011-03-14 21:04 ` David Miller 0 siblings, 0 replies; 10+ messages in thread From: David Miller @ 2011-03-14 21:04 UTC (permalink / raw) To: James.Bottomley Cc: jpirko, robert.w.love, linux-scsi, devel, netdev, fubar, joe.eykholt From: James Bottomley <James.Bottomley@suse.de> Date: Mon, 14 Mar 2011 15:53:35 -0500 > That said, I think we're pretty close to the end of the patch series > for the merge window and it's a simple patch, so as long as it > applies to net-next, I think we have an pretty low probability for > non trivial merges. You can do it with my and Rob's acked-by. Ok, thanks. ^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2011-03-14 21:04 UTC | newest] Thread overview: 10+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2011-03-02 6:05 fcoe: correct checking for bonding Jiri Pirko 2011-03-02 9:55 ` Jiri Pirko 2011-03-03 1:09 ` Robert Love 2011-03-12 12:01 ` Jiri Pirko 2011-03-12 18:59 ` David Miller 2011-03-14 19:04 ` Robert Love 2011-03-14 19:22 ` Jiri Pirko 2011-03-14 20:20 ` David Miller 2011-03-14 20:53 ` James Bottomley 2011-03-14 21:04 ` David Miller
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).