Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752018Ab3FWQtp (ORCPT ); Sun, 23 Jun 2013 12:49:45 -0400 Received: from cobra.newdream.net ([66.33.216.30]:48105 "EHLO cobra.newdream.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751637Ab3FWQtm (ORCPT ); Sun, 23 Jun 2013 12:49:42 -0400 Date: Sun, 23 Jun 2013 09:49:41 -0700 (PDT) From: Sage Weil X-X-Sender: sage@cobra.newdream.net To: "Yan, Zheng" cc: majianpeng , ceph-devel , "linux-kernel@vger.kernel.org" Subject: Re: [PATCH] ceph: remove sb_start/end_write in ceph_aio_write. In-Reply-To: Message-ID: References: <51BF1AE7.8040300@gmail.com> User-Agent: Alpine 2.00 (DEB 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1758 Lines: 52 Thanks everyone, pushed this to the testing branch. sage On Sun, 23 Jun 2013, Yan, Zheng wrote: > On Mon, Jun 17, 2013 at 10:19 PM, majianpeng wrote: > > > > Either in vfs_write or io_submit,it call file_start/end_write. > > The different between file_start/end_write and sb_start/end_write is > > file_ only handle regular file.But i think in ceph_aio_write,it only > > for regular file. > > > > Signed-off-by: Jianpeng Ma > > --- > > fs/ceph/file.c | 2 -- > > 1 file changed, 2 deletions(-) > > > > diff --git a/fs/ceph/file.c b/fs/ceph/file.c > > index 656e169..7c69f4f 100644 > > --- a/fs/ceph/file.c > > +++ b/fs/ceph/file.c > > @@ -716,7 +716,6 @@ static ssize_t ceph_aio_write(struct kiocb *iocb, const struct iovec *iov, > > if (ceph_snap(inode) != CEPH_NOSNAP) > > return -EROFS; > > - sb_start_write(inode->i_sb); > > mutex_lock(&inode->i_mutex); > > hold_mutex = true; > > @@ -809,7 +808,6 @@ retry_snap: > > out: > > if (hold_mutex) > > mutex_unlock(&inode->i_mutex); > > - sb_end_write(inode->i_sb); > > current->backing_dev_info = NULL; > > return written ? written : err; > > -- 1.8.3.rc1.44.gb387c77 > > > > > It looks that my commit 03d254edeb (ceph: apply write checks in > ceph_aio_write) conflicts with > Al Viro's commit 8d71db4f08 (lift sb_start_write/sb_end_write out of > ->aio_write()) > > Acked-by: Yan, Zheng > > -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/