diff options
| author | Linus Torvalds <torvalds@linux-foundation.org> | 2026-09-04 13:27:58 -0700 |
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2026-09-04 13:27:58 -0700 |
| commit | 408802f1e61dad400ed5d2504165579189cc183f (patch) | |
| tree | 3056b1c323e8992630eacdd791ac2fc35590e3da /net | |
| parent | 986c24e0fe44f844b44d365b71ce831947f50298 (diff) | |
| parent | dc173b37415e8f738fc4de477490056b479ddc9f (diff) | |
Merge tag 'ceph-for-7.3-rc2' of https://github.com/ceph/ceph-client
Pull ceph fixes from Ilya Dryomov:
"A small fixup for the new nearfull_sync mount option, a potential
use-after-free fix (marked for stable) and a patch that eliminates
the last use of PageWriteback macro in the tree"
* tag 'ceph-for-7.3-rc2' of https://github.com/ceph/ceph-client:
ceph: apply nearfull_sync option on remount
libceph: remove pinning assertion in ceph_msg_data_iter_next()
ceph: lock mutex in ceph_mds_check_access()
Diffstat (limited to 'net')
| -rw-r--r-- | net/ceph/messenger.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/net/ceph/messenger.c b/net/ceph/messenger.c index 9c1b6cf8c36f..212e7797f9e4 100644 --- a/net/ceph/messenger.c +++ b/net/ceph/messenger.c @@ -1003,7 +1003,6 @@ static struct page *ceph_msg_data_iter_next(struct ceph_msg_data_cursor *cursor, * we'll get an iov_iter_get_pages2 variant that doesn't take * page refs. Until then, just put the page ref. */ - VM_BUG_ON_PAGE(!PageWriteback(page) && page_count(page) < 2, page); put_page(page); *length = min_t(size_t, len, cursor->resid); |
