[PATCH] cifs: add a break after finding a new iface

Wan Jiabing posted 1 patch 4 years, 3 months ago
fs/cifs/sess.c | 1 +
1 file changed, 1 insertion(+)
[PATCH] cifs: add a break after finding a new iface
Posted by Wan Jiabing 4 years, 3 months ago
There should be a break after finding a new iface, otherwise the iface
would always be the head of the list after iterating.

Signed-off-by: Wan Jiabing <wanjiabing@vivo.com>
---
 fs/cifs/sess.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/fs/cifs/sess.c b/fs/cifs/sess.c
index fef087129c21..7802525a52ec 100644
--- a/fs/cifs/sess.c
+++ b/fs/cifs/sess.c
@@ -253,6 +253,7 @@ cifs_chan_update_iface(struct cifs_ses *ses, struct TCP_Server_Info *server)
 			continue;
 		}
 		kref_get(&iface->refcount);
+		break;
 	}
 
 	if (!iface) {
-- 
2.35.1