Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2021-01-21 | libceph: fix "Boolean result is used in bitwise operation" warning | Ilya Dryomov | 1 | -1/+1 | |
This line dates back to 2013, but cppcheck complained because commit 2f713615ddd9 ("libceph: move msgr1 protocol implementation to its own file") moved it. Add parenthesis to silence the warning. Reported-by: kernel test robot <lkp@intel.com> Signed-off-by: Ilya Dryomov <idryomov@gmail.com> | |||||
2020-12-15 | libceph: move msgr1 protocol specific fields to its own struct | Ilya Dryomov | 1 | -208/+212 | |
A couple whitespace fixups, no functional changes. Signed-off-by: Ilya Dryomov <idryomov@gmail.com> | |||||
2020-12-15 | libceph: move msgr1 protocol implementation to its own file | Ilya Dryomov | 1 | -0/+1502 | |
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> |