]> git.ipfire.org Git - thirdparty/kernel/stable-queue.git/commitdiff
3.14-stable patches
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 15 Sep 2014 16:34:00 +0000 (09:34 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 15 Sep 2014 16:34:00 +0000 (09:34 -0700)
added patches:
libceph-gracefully-handle-large-reply-messages-from-the-mon.patch

queue-3.14/libceph-gracefully-handle-large-reply-messages-from-the-mon.patch [new file with mode: 0644]
queue-3.14/series

diff --git a/queue-3.14/libceph-gracefully-handle-large-reply-messages-from-the-mon.patch b/queue-3.14/libceph-gracefully-handle-large-reply-messages-from-the-mon.patch
new file mode 100644 (file)
index 0000000..308518b
--- /dev/null
@@ -0,0 +1,39 @@
+From 73c3d4812b4c755efeca0140f606f83772a39ce4 Mon Sep 17 00:00:00 2001
+From: Sage Weil <sage@redhat.com>
+Date: Mon, 4 Aug 2014 07:01:54 -0700
+Subject: libceph: gracefully handle large reply messages from the mon
+
+From: Sage Weil <sage@redhat.com>
+
+commit 73c3d4812b4c755efeca0140f606f83772a39ce4 upstream.
+
+We preallocate a few of the message types we get back from the mon.  If we
+get a larger message than we are expecting, fall back to trying to allocate
+a new one instead of blindly using the one we have.
+
+Signed-off-by: Sage Weil <sage@redhat.com>
+Reviewed-by: Ilya Dryomov <ilya.dryomov@inktank.com>
+Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
+
+---
+ net/ceph/mon_client.c |    8 ++++++++
+ 1 file changed, 8 insertions(+)
+
+--- a/net/ceph/mon_client.c
++++ b/net/ceph/mon_client.c
+@@ -1041,7 +1041,15 @@ static struct ceph_msg *mon_alloc_msg(st
+       if (!m) {
+               pr_info("alloc_msg unknown type %d\n", type);
+               *skip = 1;
++      } else if (front_len > m->front_alloc_len) {
++              pr_warning("mon_alloc_msg front %d > prealloc %d (%u#%llu)\n",
++                         front_len, m->front_alloc_len,
++                         (unsigned int)con->peer_name.type,
++                         le64_to_cpu(con->peer_name.num));
++              ceph_msg_put(m);
++              m = ceph_msg_new(type, front_len, GFP_NOFS, false);
+       }
++
+       return m;
+ }
index 950a5be8893b5281fd5fab735e998a573a9982db..0a29e2037f7647c5d836c37fc0001359bc4a247b 100644 (file)
@@ -109,3 +109,4 @@ blkcg-don-t-call-into-policy-draining-if-root_blkg-is-already-gone.patch
 ib-srp-fix-deadlock-between-host-removal-and-multipathd.patch
 drm-nouveau-bump-version-from-1.1.1-to-1.1.2.patch
 vfs-fix-bad-hashing-of-dentries.patch
+libceph-gracefully-handle-large-reply-messages-from-the-mon.patch