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

From: Wan Jiabing
Date: Thu Mar 10 2022 - 06:37:36 EST


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@xxxxxxxx>
---
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