aboutsummaryrefslogtreecommitdiff
path: root/net/ceph
AgeCommit message (Expand)AuthorFilesLines
2022-12-19Treewide: Stop corrupting socket's task_fragGravatar Benjamin Coddington 1-0/+1
2022-12-12Merge tag 'pull-iov_iter' of git://git.kernel.org/pub/scm/linux/kernel/git/vi...Gravatar Linus Torvalds 2-9/+9
2022-11-25use less confusing names for iov_iter direction initializersGravatar Al Viro 2-9/+9
2022-11-18treewide: use get_random_u32_below() instead of deprecated functionGravatar Jason A. Donenfeld 2-2/+2
2022-10-16Merge tag 'random-6.1-rc1-for-linus' of git://git.kernel.org/pub/scm/linux/ke...Gravatar Linus Torvalds 2-2/+2
2022-10-11treewide: use prandom_u32_max() when possible, part 1Gravatar Jason A. Donenfeld 2-2/+2
2022-10-04libceph: drop last_piece flag from ceph_msg_data_cursorGravatar Jeff Layton 3-39/+9
2022-08-03libceph: clean up ceph_osdc_start_request prototypeGravatar Jeff Layton 1-9/+6
2022-08-03libceph: fix ceph_pagelist_reserve() comment typoGravatar Jason Wang 1-1/+1
2022-08-03libceph: print fsid and epoch with osd idGravatar Daichi Mukai 1-7/+23
2022-08-03libceph: check pointer before assigned to "c->rules[]"Gravatar Li Qiong 1-1/+1
2022-05-25libceph: use swap() macro instead of taking tmp variableGravatar Guo Zhengkui 1-4/+1
2022-05-18libceph: fix misleading ceph_osdc_cancel_request() commentGravatar Ilya Dryomov 1-2/+7
2022-05-18libceph: fix potential use-after-free on linger ping and resendsGravatar Ilya Dryomov 1-183/+119
2022-04-25libceph: disambiguate cluster/pool full log messageGravatar Ilya Dryomov 1-1/+5
2022-03-01libceph: drop else branches in prepare_read_data{,_cont}Gravatar Jeff Layton 1-6/+2
2022-02-02libceph: optionally use bounce buffer on recv path in crc modeGravatar Ilya Dryomov 4-20/+103
2022-02-02libceph: make recv path in secure mode work the same as send pathGravatar Ilya Dryomov 1-62/+154
2022-01-20Merge tag 'ceph-for-5.17-rc1' of git://github.com/ceph/ceph-clientGravatar Linus Torvalds 2-16/+17
2022-01-15mm: allow !GFP_KERNEL allocations for kvmallocGravatar Michal Hocko 6-38/+11
2022-01-13libceph: rename parse_fsid() to ceph_parse_fsid() and exportGravatar Venky Shankar 1-4/+5
2022-01-13libceph: generalize addr/ip parsing based on delimiterGravatar Venky Shankar 2-12/+12
2021-11-08libceph, ceph: move ceph_osdc_copy_from() into cephfs codeGravatar Luís Henriques 1-51/+9
2021-11-08libceph: drop ->monmap and err initializationGravatar Jean Sacren 1-2/+1
2021-06-28libceph: fix doc warnings in cls_lock_client.cGravatar Baokun Li 1-3/+9
2021-06-28libceph: remove unnecessary ret variable in ceph_auth_init()Gravatar zuoqilin 1-6/+1
2021-06-28libceph: fix some spelling mistakesGravatar Zheng Yongjun 3-4/+4
2021-06-28libceph: kill ceph_none_authorizer::reply_bufGravatar Ilya Dryomov 2-3/+2
2021-06-24libceph: set global_id as soon as we get an auth ticketGravatar Ilya Dryomov 3-14/+13
2021-06-24libceph: don't pass result into ac->ops->handle_reply()Gravatar Ilya Dryomov 3-11/+14
2021-05-06Merge tag 'ceph-for-5.13-rc1' of git://github.com/ceph/ceph-clientGravatar Linus Torvalds 3-20/+38
2021-05-04libceph: allow addrvecs with a single NONE/blank addressGravatar Ilya Dryomov 1-6/+14
2021-04-27libceph: don't set global_id until we get an auth ticketGravatar Ilya Dryomov 1-13/+23
2021-04-27libceph: bump CephXAuthenticate encoding versionGravatar Ilya Dryomov 1-1/+1
2021-03-25net: ceph: Fix a typo in osdmap.cGravatar Lu Wei 1-1/+1
2021-02-16libceph: remove osdtimeout option entirelyGravatar Ilya Dryomov 1-6/+0
2021-02-16libceph: deprecate [no]cephx_require_signatures optionsGravatar Ilya Dryomov 1-6/+5
2021-01-21libceph: fix "Boolean result is used in bitwise operation" warningGravatar Ilya Dryomov 1-1/+1
2021-01-04libceph, ceph: disambiguate ceph_connection_operations handlersGravatar Ilya Dryomov 2-27/+27
2021-01-04libceph: zero out session key and connection secretGravatar Ilya Dryomov 3-43/+62
2020-12-28libceph: align session_key and con_secret to 16 bytesGravatar Ilya Dryomov 1-2/+10
2020-12-28libceph: fix auth_signature buffer allocation in secure modeGravatar Ilya Dryomov 1-1/+2
2020-12-17Merge tag 'ceph-for-5.11-rc1' of git://github.com/ceph/ceph-clientGravatar Linus Torvalds 16-1914/+6384
2020-12-14libceph: drop ceph_auth_{create,update}_authorizer()Gravatar Ilya Dryomov 1-28/+0
2020-12-14libceph, ceph: make use of __ceph_auth_get_authorizer() in msgr1Gravatar Ilya Dryomov 1-16/+5
2020-12-14libceph, ceph: implement msgr2.1 protocol (crc and secure modes)Gravatar Ilya Dryomov 8-24/+4046
2020-12-14libceph: introduce connection modes and ms_mode optionGravatar Ilya Dryomov 4-6/+87
2020-12-14libceph, rbd: ignore addr->type while comparing in some casesGravatar Ilya Dryomov 1-2/+4
2020-12-14libceph, ceph: get and handle cluster maps with addrvecsGravatar Ilya Dryomov 4-55/+195
2020-12-14libceph: factor out finish_auth()Gravatar Ilya Dryomov 1-22/+30