From: Viacheslav Dubeyko <Slava.Dubeyko@ibm.com>
To: "ceph-devel@vger.kernel.org" <ceph-devel@vger.kernel.org>,
"ionut.nechita@windriver.com" <ionut.nechita@windriver.com>
Cc: "idryomov@gmail.com" <idryomov@gmail.com>,
Xiubo Li <xiubli@redhat.com>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
"ionut_n2001@yahoo.com" <ionut_n2001@yahoo.com>
Subject: Re: [PATCH v1 08/13] ceph: make ceph_start_io_write() killable
Date: Thu, 12 Mar 2026 20:02:34 +0000 [thread overview]
Message-ID: <a86dcbd27a3f2a17d16046ecc9c19d91ab093549.camel@ibm.com> (raw)
In-Reply-To: <20260312081619.40854-9-ionut.nechita@windriver.com>
On Thu, 2026-03-12 at 10:16 +0200, Ionut Nechita (Wind River) wrote:
> From: Ionut Nechita <ionut.nechita@windriver.com>
>
> When multiple processes write to the same file and one of them is
> blocked waiting for MDS/OSD response (e.g., during MDS failover),
> other processes block indefinitely on down_write(&inode->i_rwsem)
> in ceph_start_io_write().
>
> This causes hung task warnings:
>
> INFO: task dd:12345 blocked for more than 122 seconds.
> Call Trace:
> ceph_start_io_write+0x...
> ceph_write_iter+0x...
>
> The i_rwsem is held by a process doing fsync/writeback that is
> waiting for MDS or OSD response. Other writers queue up on the
> rwsem and block indefinitely.
>
> Fix this by using down_write_killable() instead of down_write().
> This allows blocked processes to be killed with SIGKILL, preventing
> indefinite hangs. The function now returns an error code that
> callers must check.
>
> Update ceph_write_iter() to handle the new error return from
> ceph_start_io_write().
>
> Signed-off-by: Ionut Nechita <ionut.nechita@windriver.com>
> ---
> fs/ceph/file.c | 9 +++++++--
> fs/ceph/io.c | 9 +++++++--
> fs/ceph/io.h | 2 +-
> 3 files changed, 15 insertions(+), 5 deletions(-)
>
> diff --git a/fs/ceph/file.c b/fs/ceph/file.c
> index 6587c2d5af1e0..01e4f31b1f2f3 100644
> --- a/fs/ceph/file.c
> +++ b/fs/ceph/file.c
> @@ -2359,8 +2359,13 @@ static ssize_t ceph_write_iter(struct kiocb *iocb, struct iov_iter *from)
> retry_snap:
> if (direct_lock)
> ceph_start_io_direct(inode);
> - else
> - ceph_start_io_write(inode);
> + else {
> + err = ceph_start_io_write(inode);
> + if (err) {
> + ceph_free_cap_flush(prealloc_cf);
> + return err;
> + }
> + }
>
> if (iocb->ki_flags & IOCB_APPEND) {
> err = ceph_do_getattr(inode, CEPH_STAT_CAP_SIZE, false);
> diff --git a/fs/ceph/io.c b/fs/ceph/io.c
> index c456509b31c3f..f9ac89ec1d6a1 100644
> --- a/fs/ceph/io.c
> +++ b/fs/ceph/io.c
> @@ -83,11 +83,16 @@ ceph_end_io_read(struct inode *inode)
> * Declare that a buffered write operation is about to start, and ensure
> * that we block all direct I/O.
> */
> -void
> +int
> ceph_start_io_write(struct inode *inode)
> {
> - down_write(&inode->i_rwsem);
> + int ret;
> +
> + ret = down_write_killable(&inode->i_rwsem);
> + if (ret)
> + return ret;
> ceph_block_o_direct(ceph_inode(inode), inode);
> + return 0;
> }
Which kernel version do you have? Because, we have this for v.7.0.0-rc3 [1]:
/**
* ceph_start_io_write - declare the file is being used for buffered writes
* @inode: file inode
*
* Declare that a buffered write operation is about to start, and ensure
* that we block all direct I/O.
*/
int ceph_start_io_write(struct inode *inode)
{
int err = down_write_killable(&inode->i_rwsem);
if (!err)
ceph_block_o_direct(ceph_inode(inode), inode);
return err;
}
Thanks,
Slava.
>
> /**
> diff --git a/fs/ceph/io.h b/fs/ceph/io.h
> index fa594cd77348a..94ce176df9997 100644
> --- a/fs/ceph/io.h
> +++ b/fs/ceph/io.h
> @@ -4,7 +4,7 @@
>
> void ceph_start_io_read(struct inode *inode);
> void ceph_end_io_read(struct inode *inode);
> -void ceph_start_io_write(struct inode *inode);
> +int ceph_start_io_write(struct inode *inode);
> void ceph_end_io_write(struct inode *inode);
> void ceph_start_io_direct(struct inode *inode);
> void ceph_end_io_direct(struct inode *inode);
[1] https://elixir.bootlin.com/linux/v7.0-rc3/source/fs/ceph/io.c#L110
next prev parent reply other threads:[~2026-03-12 20:02 UTC|newest]
Thread overview: 31+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-03-12 8:16 [PATCH v1 00/13] ceph/libceph: fix hung tasks and connection recovery during network disruptions Ionut Nechita (Wind River)
2026-03-12 8:16 ` [PATCH v1 01/13] libceph: handle EADDRNOTAVAIL more gracefully Ionut Nechita (Wind River)
2026-03-12 18:51 ` Viacheslav Dubeyko
2026-03-12 8:16 ` [PATCH v1 02/13] ceph: add timeout protection to ceph_mdsc_sync() path Ionut Nechita (Wind River)
2026-03-12 19:19 ` Viacheslav Dubeyko
2026-03-12 8:16 ` [PATCH v1 03/13] ceph: add timeout protection to ceph_osdc_sync() path Ionut Nechita (Wind River)
2026-03-12 19:26 ` Viacheslav Dubeyko
2026-03-12 8:16 ` [PATCH v1 04/13] ceph: fix race condition in cleanup_session_requests() Ionut Nechita (Wind River)
2026-03-12 19:32 ` Viacheslav Dubeyko
2026-03-12 8:16 ` [PATCH v1 05/13] ceph: add timeout protection to ceph_lock_wait_for_completion() Ionut Nechita (Wind River)
2026-03-12 19:38 ` Viacheslav Dubeyko
2026-03-12 8:16 ` [PATCH v1 06/13] ceph: set default timeout for MDS requests Ionut Nechita (Wind River)
2026-03-12 19:41 ` Viacheslav Dubeyko
2026-03-12 8:16 ` [PATCH v1 07/13] ceph: add timeout to caps wait in __ceph_get_caps() Ionut Nechita (Wind River)
2026-03-12 19:52 ` Viacheslav Dubeyko
2026-03-12 8:16 ` [PATCH v1 08/13] ceph: make ceph_start_io_write() killable Ionut Nechita (Wind River)
2026-03-12 20:02 ` Viacheslav Dubeyko [this message]
2026-03-12 20:45 ` Ionut Nechita (Wind River)
2026-03-13 18:28 ` Viacheslav Dubeyko
2026-03-12 8:16 ` [PATCH v1 09/13] ceph: make remaining I/O lock functions killable Ionut Nechita (Wind River)
2026-03-12 20:05 ` Viacheslav Dubeyko
2026-03-12 8:16 ` [PATCH v1 10/13] ceph: force mdsmap refresh on persistent MDS connection failures Ionut Nechita (Wind River)
2026-03-12 21:23 ` Viacheslav Dubeyko
2026-03-12 8:16 ` [PATCH v1 11/13] libceph: reset source address on persistent EADDRNOTAVAIL Ionut Nechita (Wind River)
2026-03-12 21:39 ` Viacheslav Dubeyko
2026-03-12 8:16 ` [PATCH v1 12/13] libceph: force monitor reconnect " Ionut Nechita (Wind River)
2026-03-12 8:16 ` [PATCH v1 13/13] libceph: force host network namespace for kernel CephFS mounts Ionut Nechita (Wind River)
2026-03-16 15:28 ` Ilya Dryomov
2026-03-16 21:20 ` Ionut Nechita (Wind River)
2026-04-02 17:06 ` Ionut Nechita (Wind River)
2026-04-03 15:05 ` Ionut Nechita (Wind River)
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=a86dcbd27a3f2a17d16046ecc9c19d91ab093549.camel@ibm.com \
--to=slava.dubeyko@ibm.com \
--cc=ceph-devel@vger.kernel.org \
--cc=idryomov@gmail.com \
--cc=ionut.nechita@windriver.com \
--cc=ionut_n2001@yahoo.com \
--cc=linux-kernel@vger.kernel.org \
--cc=xiubli@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®