Linux NFS development
 help / color / mirror / Atom feed
* [PATCH] gssd: Make TCP the default protocol for GSSD connections.
@ 2015-10-28 20:07 Chuck Lever
  2015-11-04 21:52 ` Steve Dickson
  0 siblings, 1 reply; 2+ messages in thread
From: Chuck Lever @ 2015-10-28 20:07 UTC (permalink / raw)
  To: linux-nfs

No failure case if gssd doesn't recognize the kernel's requested
protocol. Caught with "protocol=rdma" upcall.

Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
---
Just spit-balling.

 utils/gssd/gssd_proc.c |   11 ++---------
 1 file changed, 2 insertions(+), 9 deletions(-)

diff --git a/utils/gssd/gssd_proc.c b/utils/gssd/gssd_proc.c
index 1d8e6a7..7569295 100644
--- a/utils/gssd/gssd_proc.c
+++ b/utils/gssd/gssd_proc.c
@@ -890,16 +890,9 @@ create_auth_rpc_client(struct clnt_info *clp,
 	printerr(2, "creating %s client for server %s\n", clp->protocol,
 			clp->servername);
 
-	if ((strcmp(clp->protocol, "tcp")) == 0) {
-		protocol = IPPROTO_TCP;
-	} else if ((strcmp(clp->protocol, "udp")) == 0) {
+	protocol = IPPROTO_TCP;
+	if ((strcmp(clp->protocol, "udp")) == 0)
 		protocol = IPPROTO_UDP;
-	} else {
-		printerr(0, "WARNING: unrecognized protocol, '%s', requested "
-			 "for connection to server %s for user with uid %d\n",
-			 clp->protocol, clp->servername, uid);
-		goto out_fail;
-	}
 
 	switch (addr->sa_family) {
 	case AF_INET:


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

end of thread, other threads:[~2015-11-04 21:52 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-10-28 20:07 [PATCH] gssd: Make TCP the default protocol for GSSD connections Chuck Lever
2015-11-04 21:52 ` Steve Dickson

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox