All of lore.kernel.org
 help / color / mirror / Atom feed
* [lustre-devel] [PATCH - OpenSFS lustre bug] LNET: socklnd: fix infinite loop in ksocknal_push()
@ 2019-03-21  1:49 NeilBrown
  2019-03-21  8:25 ` Degremont, Aurelien
  0 siblings, 1 reply; 2+ messages in thread
From: NeilBrown @ 2019-03-21  1:49 UTC (permalink / raw)
  To: lustre-devel


If the list_for_each_entry() loop in ksocknal_push()
ever finds a match, then it will increment 'i', and the outer
loop will continue.  Presumably it will find the same match again
and increment i and continue again.

Once peer_off becomes larger than the number of matches
in a given chain, 'peer_ni' will be an invalid pointer, and
ksocknal_push_peer() will probably crash when called on it.

To abort the outer loop properly, we need to test if
"i <= peer_off", which indicates that all matching peers
have been found.

Signed-off-by: NeilBrown <neilb@suse.com>
---

This patch is against OpenSFS lustre, not my drivers/staging tree that
most of my patches are against.

This really looks like untested code, but it is not entirely possible
that I've missed something.

If you would like me to submit this through more "normal" channels, I'm
happy to learn what they are, and then do that.
I assume this would mean getting access to the lustre Gerrit instance.
I tried the "register" link, but that takes me to

https://review.whamcloud.com/login/%23%2Fc%2F33883

which isn't very helpful.

NeilBrown


 lnet/klnds/socklnd/socklnd.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lnet/klnds/socklnd/socklnd.c b/lnet/klnds/socklnd/socklnd.c
index 7bd3b5288373..041380cbfb6a 100644
--- a/lnet/klnds/socklnd/socklnd.c
+++ b/lnet/klnds/socklnd/socklnd.c
@@ -1939,7 +1939,7 @@ ksocknal_push(struct lnet_ni *ni, struct lnet_process_id id)
 			}
 			read_unlock(&ksocknal_data.ksnd_global_lock);
 
-			if (i == 0) /* no match */
+			if (i <= peer_off) /* no match */
 				break;
 
 			rc = 0;
-- 
2.14.0.rc0.dirty

-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 832 bytes
Desc: not available
URL: <http://lists.lustre.org/pipermail/lustre-devel-lustre.org/attachments/20190321/3d34778c/attachment.sig>

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* [lustre-devel] [PATCH - OpenSFS lustre bug] LNET: socklnd: fix infinite loop in ksocknal_push()
  2019-03-21  1:49 [lustre-devel] [PATCH - OpenSFS lustre bug] LNET: socklnd: fix infinite loop in ksocknal_push() NeilBrown
@ 2019-03-21  8:25 ` Degremont, Aurelien
  0 siblings, 0 replies; 2+ messages in thread
From: Degremont, Aurelien @ 2019-03-21  8:25 UTC (permalink / raw)
  To: lustre-devel

Hi
? 
    If you would like me to submit this through more "normal" channels, I'm
    happy to learn what they are, and then do that.

I think that would be beneficial

    I assume this would mean getting access to the lustre Gerrit instance.
    I tried the "register" link, but that takes me to
    
    https://review.whamcloud.com/login/%23%2Fc%2F33883
    
    which isn't very helpful.
    
Gerrit does not handle account management itself. review.whamcloud.com relies on an external OpenID provider.
You can use any OpenID provider if you already have one. If you don't, I personally use Launchpad. You can create an account there and use it to register/login on Gerrit.  (Select 'Sign in with a Launchpad ID')

https://wiki.whamcloud.com/display/PUB/Using+Gerrit

I think that after creating your account, you must send an email request for push permission to info at whamcloud.com

Aur?lien

 

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2019-03-21  8:25 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-03-21  1:49 [lustre-devel] [PATCH - OpenSFS lustre bug] LNET: socklnd: fix infinite loop in ksocknal_push() NeilBrown
2019-03-21  8:25 ` Degremont, Aurelien

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.