* [PATCH V3] Add flow control to the portmapper
@ 2016-07-28 20:02 Shiraz Saleem
[not found] ` <1469736146-17640-1-git-send-email-shiraz.saleem-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
0 siblings, 1 reply; 3+ messages in thread
From: Shiraz Saleem @ 2016-07-28 20:02 UTC (permalink / raw)
To: dledford-H+wXaHxf7aLQT0dZR+AlfA
Cc: linux-rdma-u79uwXL29TY76Z2rM5mHXA,
swise-7bPotxP6k4+P2YhJcF5u+vpXobYPEAuW,
e1000-rdma-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f, Mustafa Ismail,
Shiraz Saleem
From: Mustafa Ismail <mustafa.ismail-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
During connection establishment with a large number of
connections, it is possible that the connection requests
might fail. Adding flow control prevents this failure.
Change ibnl_unicast to use blocking to enable flow control.
Signed-off-by: Mustafa Ismail <mustafa.ismail-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
Signed-off-by: Faisal Latif <faisal.latif-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
Signed-off-by: Shiraz Saleem <shiraz.saleem-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
---
V3: update to use blocking ver. of netlink_unicast() in
ibnl_unicast(), instead of creating new function in
netlink header for this purpose; as was done in V1.
V2: update commit message with justification for flow control.
CC'ing linux-netdev mailing list.
drivers/infiniband/core/netlink.c | 9 ++++++++-
1 file changed, 8 insertions(+), 1 deletion(-)
diff --git a/drivers/infiniband/core/netlink.c b/drivers/infiniband/core/netlink.c
index 9b8c20c..a6b3acb 100644
--- a/drivers/infiniband/core/netlink.c
+++ b/drivers/infiniband/core/netlink.c
@@ -229,7 +229,13 @@ static void ibnl_rcv(struct sk_buff *skb)
int ibnl_unicast(struct sk_buff *skb, struct nlmsghdr *nlh,
__u32 pid)
{
- return nlmsg_unicast(nls, skb, pid);
+ int err;
+
+ err = netlink_unicast(nls, skb, pid, 0);
+ if (err > 0)
+ err = 0;
+
+ return err;
}
EXPORT_SYMBOL(ibnl_unicast);
@@ -252,6 +258,7 @@ int __init ibnl_init(void)
return -ENOMEM;
}
+ nls->sk_sndtimeo = 10 * HZ;
return 0;
}
--
2.8.0
--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply related [flat|nested] 3+ messages in thread[parent not found: <1469736146-17640-1-git-send-email-shiraz.saleem-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>]
* Re: [PATCH V3] Add flow control to the portmapper [not found] ` <1469736146-17640-1-git-send-email-shiraz.saleem-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org> @ 2016-07-29 4:47 ` Leon Romanovsky [not found] ` <20160729044746.GT4628-2ukJVAZIZ/Y@public.gmane.org> 0 siblings, 1 reply; 3+ messages in thread From: Leon Romanovsky @ 2016-07-29 4:47 UTC (permalink / raw) To: Shiraz Saleem Cc: dledford-H+wXaHxf7aLQT0dZR+AlfA, linux-rdma-u79uwXL29TY76Z2rM5mHXA, swise-7bPotxP6k4+P2YhJcF5u+vpXobYPEAuW, e1000-rdma-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f, Mustafa Ismail [-- Attachment #1: Type: text/plain, Size: 1717 bytes --] On Thu, Jul 28, 2016 at 03:02:26PM -0500, Shiraz Saleem wrote: > From: Mustafa Ismail <mustafa.ismail-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org> > > During connection establishment with a large number of > connections, it is possible that the connection requests > might fail. Adding flow control prevents this failure. > Change ibnl_unicast to use blocking to enable flow control. > > Signed-off-by: Mustafa Ismail <mustafa.ismail-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org> > Signed-off-by: Faisal Latif <faisal.latif-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org> > Signed-off-by: Shiraz Saleem <shiraz.saleem-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org> > --- > > V3: update to use blocking ver. of netlink_unicast() in > ibnl_unicast(), instead of creating new function in > netlink header for this purpose; as was done in V1. > > V2: update commit message with justification for flow control. > CC'ing linux-netdev mailing list. > > drivers/infiniband/core/netlink.c | 9 ++++++++- > 1 file changed, 8 insertions(+), 1 deletion(-) > > diff --git a/drivers/infiniband/core/netlink.c b/drivers/infiniband/core/netlink.c > index 9b8c20c..a6b3acb 100644 > --- a/drivers/infiniband/core/netlink.c > +++ b/drivers/infiniband/core/netlink.c > @@ -229,7 +229,13 @@ static void ibnl_rcv(struct sk_buff *skb) > int ibnl_unicast(struct sk_buff *skb, struct nlmsghdr *nlh, > __u32 pid) > { > - return nlmsg_unicast(nls, skb, pid); > + int err; > + > + err = netlink_unicast(nls, skb, pid, 0); > + if (err > 0) > + err = 0; > + > + return err; It can be simplified a little bit to remove number of lines. 4 last lines can be replaced to be one in ANSI C. return (err < 0)?:0; [-- Attachment #2: Digital signature --] [-- Type: application/pgp-signature, Size: 819 bytes --] ^ permalink raw reply [flat|nested] 3+ messages in thread
[parent not found: <20160729044746.GT4628-2ukJVAZIZ/Y@public.gmane.org>]
* Re: [PATCH V3] Add flow control to the portmapper [not found] ` <20160729044746.GT4628-2ukJVAZIZ/Y@public.gmane.org> @ 2016-08-02 17:16 ` Doug Ledford 0 siblings, 0 replies; 3+ messages in thread From: Doug Ledford @ 2016-08-02 17:16 UTC (permalink / raw) To: Leon Romanovsky, Shiraz Saleem Cc: linux-rdma-u79uwXL29TY76Z2rM5mHXA, swise-7bPotxP6k4+P2YhJcF5u+vpXobYPEAuW, e1000-rdma-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f, Mustafa Ismail [-- Attachment #1: Type: text/plain, Size: 2104 bytes --] On Fri, 2016-07-29 at 07:47 +0300, Leon Romanovsky wrote: > On Thu, Jul 28, 2016 at 03:02:26PM -0500, Shiraz Saleem wrote: > > > > From: Mustafa Ismail <mustafa.ismail-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org> > > > > During connection establishment with a large number of > > connections, it is possible that the connection requests > > might fail. Adding flow control prevents this failure. > > Change ibnl_unicast to use blocking to enable flow control. > > > > Signed-off-by: Mustafa Ismail <mustafa.ismail-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org> > > Signed-off-by: Faisal Latif <faisal.latif-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org> > > Signed-off-by: Shiraz Saleem <shiraz.saleem-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org> > > --- > > > > V3: update to use blocking ver. of netlink_unicast() in > > ibnl_unicast(), instead of creating new function in > > netlink header for this purpose; as was done in V1. > > > > V2: update commit message with justification for flow control. > > CC'ing linux-netdev mailing list. > > > > drivers/infiniband/core/netlink.c | 9 ++++++++- > > 1 file changed, 8 insertions(+), 1 deletion(-) > > > > diff --git a/drivers/infiniband/core/netlink.c > > b/drivers/infiniband/core/netlink.c > > index 9b8c20c..a6b3acb 100644 > > --- a/drivers/infiniband/core/netlink.c > > +++ b/drivers/infiniband/core/netlink.c > > @@ -229,7 +229,13 @@ static void ibnl_rcv(struct sk_buff *skb) > > int ibnl_unicast(struct sk_buff *skb, struct nlmsghdr *nlh, > > __u32 pid) > > { > > - return nlmsg_unicast(nls, skb, pid); > > + int err; > > + > > + err = netlink_unicast(nls, skb, pid, 0); > > + if (err > 0) > > + err = 0; > > + > > + return err; > > It can be simplified a little bit to remove number of lines. > 4 last lines can be replaced to be one in ANSI C. > > return (err < 0)?:0; return (err < 0) ? err : 0; is more readable to me. With fixup and minor change to commit subject, applied. -- Doug Ledford <dledford-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org> GPG KeyID: 0E572FDD [-- Attachment #2: This is a digitally signed message part --] [-- Type: application/pgp-signature, Size: 819 bytes --] ^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2016-08-02 17:16 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-07-28 20:02 [PATCH V3] Add flow control to the portmapper Shiraz Saleem
[not found] ` <1469736146-17640-1-git-send-email-shiraz.saleem-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2016-07-29 4:47 ` Leon Romanovsky
[not found] ` <20160729044746.GT4628-2ukJVAZIZ/Y@public.gmane.org>
2016-08-02 17:16 ` Doug Ledford
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).