[Cluster-devel] [DLM PATCH] DLM: Replace nodeid_to_addr with kernel_getpeername

Bob Peterson rpeterso at redhat.com
Mon Jan 18 21:20:21 UTC 2016


----- Original Message -----
> ----- Original Message -----
> > Hi,
> > 
> > This patch replaces the call to nodeid_to_addr with a call to
> > kernel_getpeername. This avoids taking a spinlock because it may
> > potentially be called from a softirq context.
> > 
> > Regards,
> > 
> > Bob Peterson
> > Red Hat File Systems
> > 
> > Signed-off-by: Bob Peterson <rpeterso at redhat.com>
> > ---
> > diff --git a/fs/dlm/lowcomms.c b/fs/dlm/lowcomms.c
> > index 3a37bd3..a1a50f3 100644
> > --- a/fs/dlm/lowcomms.c
> > +++ b/fs/dlm/lowcomms.c
> > @@ -469,8 +469,9 @@ static void lowcomms_error_report(struct sock *sk)
> >  {
> >  	struct connection *con = sock2con(sk);
> >  	struct sockaddr_storage saddr;
> > +	int buflen;
> >  
> > -	if (nodeid_to_addr(con->nodeid, &saddr, NULL, false)) {
> > +	if (kernel_getpeername(con->sock, (struct sockaddr *)&saddr, &buflen)) {
> >  		printk_ratelimited(KERN_ERR "dlm: node %d: socket error "
> >  				   "sending to node %d, port %d, "
> >  				   "sk_err=%d/%d\n", dlm_our_nodeid(),
> > 
> > 
> Hi,
> 
> Self-NACK. A problem was found during testing. I'll post a replacement
> shortly.
> 
> Regards,
> 
> Bob Peterson
> Red Hat File Systems

Hi,

Here is the replacement patch I promised.

Regards,

Bob Peterson
Red Hat File Systems
---
DLM: Replace nodeid_to_addr with kernel_getpeername

This patch replaces the call to nodeid_to_addr with a call to
kernel_getpeername. This avoids taking a spinlock because it may
potentially be called from a softirq context.

Signed-off-by: Bob Peterson <rpeterso at redhat.com>

diff --git a/fs/dlm/lowcomms.c b/fs/dlm/lowcomms.c
index 3a37bd3..dc9ae6d 100644
--- a/fs/dlm/lowcomms.c
+++ b/fs/dlm/lowcomms.c
@@ -469,8 +469,10 @@ static void lowcomms_error_report(struct sock *sk)
 {
 	struct connection *con = sock2con(sk);
 	struct sockaddr_storage saddr;
+	int buflen;
 
-	if (nodeid_to_addr(con->nodeid, &saddr, NULL, false)) {
+	if (con->sock == NULL ||
+	    kernel_getpeername(con->sock, (struct sockaddr *)&saddr, &buflen)) {
 		printk_ratelimited(KERN_ERR "dlm: node %d: socket error "
 				   "sending to node %d, port %d, "
 				   "sk_err=%d/%d\n", dlm_our_nodeid(),




More information about the Cluster-devel mailing list