Received: by 10.213.65.68 with SMTP id h4csp716914imn; Fri, 6 Apr 2018 07:46:25 -0700 (PDT) X-Google-Smtp-Source: AIpwx4/2XQKZYXsp8v5RwHPethEyDi4JKitAA1J+DDgVFRGfpXFECBRqpSLpzkLfohWiXm0KYiqc X-Received: by 10.98.69.142 with SMTP id n14mr20598795pfi.42.1523025985474; Fri, 06 Apr 2018 07:46:25 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1523025985; cv=none; d=google.com; s=arc-20160816; b=iln8mptS0ShKWbmzRdIfgMKiG+nfa+ZrDRrBxP2a+R2bjnqmwT0rdfxgJverUZy8CW q6Ug8PlhszLF4rcXu/Wts3F6U6ZD1tpfiNMafdgd/zf3FRKxLz3maU8RpPNT7mjoLwpB UeTawofd2JTkeiYBQKyUjr+H9DGNI5HOzFvw+Y7pjRn4SEfozww/j1AUA86lBJa2BMJO YvwoY/CNylkHzXHP1532oprg5V5RHT1kqjrUt1MaNcXRDJS8SJmslBNKHpC7mKfdVQdi yWm5S3gtPFxGbdCgguBhwxsEtfc7PyxsVepid1TubYot+JKtKI9r7S3xy6DMPWO+3+/C oR9w== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:mime-version:user-agent:references :in-reply-to:message-id:date:subject:cc:to:from :arc-authentication-results; bh=sY86L39RHWMGZ1NZtsx0vKANoUAZrfBvE4U8Jq+QZSg=; b=iLKkqnuexTSOa3cm/Vze87GUn66wx+pASqTIHySvmY8vecLBnwNpkRRDqyPn1daHlR UhVtZat4xMM4UhhPtfqU/sr5kwE0GKY16q6IxB6XAmQdKozklNDhvsmc8+U8P/gWWbTg T9mcnCCMUMcdGCcG683Z66oqGJiSXJ3weJ6+N/AfWhNFiIxHYwOQq9fMK5HhcXL86OzC Bj811bSace5TN/FCPwoSl2yu/UCu25KYEj2l8YiiULBTyz3XkW3cw/kxzTRe2YRGPjXe ZrvlaDW1jCUxI012prb2yYZUtW5GLIkYi2eOKLHrzrwIZpFFR80bY9dTu+8dpRmcv0dF JsBA== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id y13si8168114pfd.47.2018.04.06.07.46.11; Fri, 06 Apr 2018 07:46:25 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755721AbeDFNd4 (ORCPT + 99 others); Fri, 6 Apr 2018 09:33:56 -0400 Received: from mail.linuxfoundation.org ([140.211.169.12]:58072 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755374AbeDFNdw (ORCPT ); Fri, 6 Apr 2018 09:33:52 -0400 Received: from localhost (LFbn-1-12247-202.w90-92.abo.wanadoo.fr [90.92.61.202]) by mail.linuxfoundation.org (Postfix) with ESMTPSA id 1667BD02; Fri, 6 Apr 2018 13:33:51 +0000 (UTC) From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, stable@kernel.org, "Yan, Zheng" , Ilya Dryomov Subject: [PATCH 4.9 007/102] ceph: only dirty ITER_IOVEC pages for direct read Date: Fri, 6 Apr 2018 15:22:48 +0200 Message-Id: <20180406084332.549269814@linuxfoundation.org> X-Mailer: git-send-email 2.17.0 In-Reply-To: <20180406084331.507038179@linuxfoundation.org> References: <20180406084331.507038179@linuxfoundation.org> User-Agent: quilt/0.65 X-stable: review MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org 4.9-stable review patch. If anyone has any objections, please let me know. ------------------ From: Yan, Zheng commit 85784f9395987a422fa04263e7c0fb13da11eb5c upstream. If a page is already locked, attempting to dirty it leads to a deadlock in lock_page(). This is what currently happens to ITER_BVEC pages when a dio-enabled loop device is backed by ceph: $ losetup --direct-io /dev/loop0 /mnt/cephfs/img $ xfs_io -c 'pread 0 4k' /dev/loop0 Follow other file systems and only dirty ITER_IOVEC pages. Cc: stable@kernel.org Signed-off-by: "Yan, Zheng" Reviewed-by: Ilya Dryomov Signed-off-by: Ilya Dryomov Signed-off-by: Greg Kroah-Hartman --- fs/ceph/file.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) --- a/fs/ceph/file.c +++ b/fs/ceph/file.c @@ -598,7 +598,8 @@ static ssize_t ceph_sync_read(struct kio struct ceph_aio_request { struct kiocb *iocb; size_t total_len; - int write; + bool write; + bool should_dirty; int error; struct list_head osd_reqs; unsigned num_reqs; @@ -708,7 +709,7 @@ static void ceph_aio_complete_req(struct } } - ceph_put_page_vector(osd_data->pages, num_pages, !aio_req->write); + ceph_put_page_vector(osd_data->pages, num_pages, aio_req->should_dirty); ceph_osdc_put_request(req); if (rc < 0) @@ -890,6 +891,7 @@ ceph_direct_read_write(struct kiocb *ioc size_t count = iov_iter_count(iter); loff_t pos = iocb->ki_pos; bool write = iov_iter_rw(iter) == WRITE; + bool should_dirty = !write && iter_is_iovec(iter); if (write && ceph_snap(file_inode(file)) != CEPH_NOSNAP) return -EROFS; @@ -954,6 +956,7 @@ ceph_direct_read_write(struct kiocb *ioc if (aio_req) { aio_req->iocb = iocb; aio_req->write = write; + aio_req->should_dirty = should_dirty; INIT_LIST_HEAD(&aio_req->osd_reqs); if (write) { aio_req->mtime = mtime; @@ -1012,7 +1015,7 @@ ceph_direct_read_write(struct kiocb *ioc len = ret; } - ceph_put_page_vector(pages, num_pages, !write); + ceph_put_page_vector(pages, num_pages, should_dirty); ceph_osdc_put_request(req); if (ret < 0)