All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ceph: fix incorrectly assigning random values to peer's members
@ 2022-06-06  7:28 Xiubo Li
  2022-06-06 10:13 ` Luís Henriques
  2022-06-06 10:23 ` Jeff Layton
  0 siblings, 2 replies; 4+ messages in thread
From: Xiubo Li @ 2022-06-06  7:28 UTC (permalink / raw)
  To: jlayton, idryomov; +Cc: vshankar, ceph-devel, Xiubo Li

For export the peer is empty in ceph.

URL: https://tracker.ceph.com/issues/55857
Signed-off-by: Xiubo Li <xiubli@redhat.com>
---
 fs/ceph/caps.c | 15 +++++----------
 1 file changed, 5 insertions(+), 10 deletions(-)

diff --git a/fs/ceph/caps.c b/fs/ceph/caps.c
index 0a48bf829671..8efa46ff4282 100644
--- a/fs/ceph/caps.c
+++ b/fs/ceph/caps.c
@@ -4127,16 +4127,11 @@ void ceph_handle_caps(struct ceph_mds_session *session,
 		p += flock_len;
 	}
 
-	if (msg_version >= 3) {
-		if (op == CEPH_CAP_OP_IMPORT) {
-			if (p + sizeof(*peer) > end)
-				goto bad;
-			peer = p;
-			p += sizeof(*peer);
-		} else if (op == CEPH_CAP_OP_EXPORT) {
-			/* recorded in unused fields */
-			peer = (void *)&h->size;
-		}
+	if (msg_version >= 3 && op == CEPH_CAP_OP_IMPORT) {
+		if (p + sizeof(*peer) > end)
+			goto bad;
+		peer = p;
+		p += sizeof(*peer);
 	}
 
 	if (msg_version >= 4) {
-- 
2.36.0.rc1


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

end of thread, other threads:[~2022-06-06 11:49 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-06-06  7:28 [PATCH] ceph: fix incorrectly assigning random values to peer's members Xiubo Li
2022-06-06 10:13 ` Luís Henriques
2022-06-06 10:23 ` Jeff Layton
2022-06-06 11:48   ` Xiubo Li

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.