summaryrefslogtreecommitdiff
path: root/net/ceph/Makefile
diff options
context:
space:
mode:
authorIlya Dryomov <idryomov@gmail.com>2020-11-12 15:48:06 +0100
committerIlya Dryomov <idryomov@gmail.com>2020-12-14 23:21:50 +0100
commit2f713615ddd9d805b6c5e79c52e0e11af99d2bf1 (patch)
tree1a2940cfdb53882ace9f27167d594828cdbf6658 /net/ceph/Makefile
parent566050e17e53db283d4e26b73b4b50556f97ce7b (diff)
libceph: move msgr1 protocol implementation to its own file
A pure move, no other changes. Note that ceph_tcp_recv{msg,page}() and ceph_tcp_send{msg,page}() helpers are also moved. msgr2 will bring its own, more efficient, variants based on iov_iter. Switching msgr1 to them was considered but decided against to avoid subtle regressions. Signed-off-by: Ilya Dryomov <idryomov@gmail.com>
Diffstat (limited to 'net/ceph/Makefile')
-rw-r--r--net/ceph/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/net/ceph/Makefile b/net/ceph/Makefile
index ce09bb4fb249..df02bd8d6c7b 100644
--- a/net/ceph/Makefile
+++ b/net/ceph/Makefile
@@ -14,4 +14,5 @@ libceph-y := ceph_common.o messenger.o msgpool.o buffer.o pagelist.o \
crypto.o armor.o \
auth_x.o \
ceph_strings.o ceph_hash.o \
- pagevec.o snapshot.o string_table.o
+ pagevec.o snapshot.o string_table.o \
+ messenger_v1.o