Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1674518

Re: [f2fs-dev] [PATCH 1/2] f2fs: avoid deadlock caused by lock order of page and lock_op

From Chao Yu <yuchao0@huawei.com>
Newsgroups linux.kernel
Subject Re: [f2fs-dev] [PATCH 1/2] f2fs: avoid deadlock caused by lock order of page and lock_op
Date 2017-06-26 10:20 +0200
Message-ID <tWxpw-8ko-15@gated-at.bofh.it> (permalink)
References <tVW6B-1BX-3@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


Hi Jaegeuk,

On 2017/6/25 0:25, Jaegeuk Kim wrote:
> - punch_hole
>  - fill_zero
>   - f2fs_lock_op
>   - get_new_data_page
>    - lock_page
> 
> - f2fs_write_data_pages
>  - lock_page
>  - do_write_data_page
>   - f2fs_lock_op

Good catch!

With this implementation, page writeback can fail due to concurrent checkpoint,
this will make fsync/atomic_commit which trigger synchronous write failed randomly.

How about unifying the lock order in punch_hole as one in writepages for regular
inode? We can add one more parameter in get_new_data_page to indicate whether
callee needs to lock cp_rwsem.

Thanks,

> 
> Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
> ---
>  fs/f2fs/data.c | 5 +++--
>  1 file changed, 3 insertions(+), 2 deletions(-)
> 
> diff --git a/fs/f2fs/data.c b/fs/f2fs/data.c
> index 7d3af48d34a9..9141bd19a902 100644
> --- a/fs/f2fs/data.c
> +++ b/fs/f2fs/data.c
> @@ -1404,8 +1404,9 @@ int do_write_data_page(struct f2fs_io_info *fio)
>  		}
>  	}
>  
> -	if (fio->need_lock == LOCK_REQ)
> -		f2fs_lock_op(fio->sbi);
> +	/* Deadlock due to between page->lock and f2fs_lock_op */
> +	if (fio->need_lock == LOCK_REQ && !f2fs_trylock_op(fio->sbi))
> +		return -EAGAIN;
>  
>  	err = get_dnode_of_data(&dn, page->index, LOOKUP_NODE);
>  	if (err)
> 

Back to linux.kernel | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

[PATCH 1/2] f2fs: avoid deadlock caused by lock order of page and lock_op Jaegeuk Kim <jaegeuk@kernel.org> - 2017-06-24 18:30 +0200
  [PATCH 2/2] f2fs: report # of free inodes more precisely Jaegeuk Kim <jaegeuk@kernel.org> - 2017-06-24 18:30 +0200
    Re: [f2fs-dev] [PATCH 2/2] f2fs: report # of free inodes more  precisely Chao Yu <yuchao0@huawei.com> - 2017-06-26 13:00 +0200
      Re: [f2fs-dev] [PATCH 2/2] f2fs: report # of free inodes more  precisely Jaegeuk Kim <jaegeuk@kernel.org> - 2017-06-26 17:00 +0200
        Re: [f2fs-dev] [PATCH 2/2] f2fs: report # of free inodes more  precisely Chao Yu <chao@kernel.org> - 2017-06-28 15:10 +0200
          Re: [f2fs-dev] [PATCH 2/2] f2fs: report # of free inodes more  precisely Jaegeuk Kim <jaegeuk@kernel.org> - 2017-07-01 09:30 +0200
            Re: [f2fs-dev] [PATCH 2/2] f2fs: report # of free inodes more  precisely Chao Yu <chao@kernel.org> - 2017-07-01 10:40 +0200
  Re: [f2fs-dev] [PATCH 1/2] f2fs: avoid deadlock caused by lock order  of page and lock_op Chao Yu <yuchao0@huawei.com> - 2017-06-26 10:20 +0200
    Re: [f2fs-dev] [PATCH 1/2] f2fs: avoid deadlock caused by lock order  of page and lock_op Jaegeuk Kim <jaegeuk@kernel.org> - 2017-06-26 17:00 +0200
      Re: [f2fs-dev] [PATCH 1/2] f2fs: avoid deadlock caused by lock order  of page and lock_op Chao Yu <chao@kernel.org> - 2017-06-26 17:50 +0200
        Re: [f2fs-dev] [PATCH 1/2] f2fs: avoid deadlock caused by lock order  of page and lock_op Jaegeuk Kim <jaegeuk@kernel.org> - 2017-07-01 09:30 +0200
          Re: [f2fs-dev] [PATCH 1/2] f2fs: avoid deadlock caused by lock order  of page and lock_op Chao Yu <chao@kernel.org> - 2017-07-01 10:50 +0200
            Re: [f2fs-dev] [PATCH 1/2] f2fs: avoid deadlock caused by lock order  of page and lock_op Jaegeuk Kim <jaegeuk@kernel.org> - 2017-07-01 16:30 +0200

csiph-web