From mboxrd@z Thu Jan 1 00:00:00 1970 From: Steven Whitehouse Date: Thu, 12 Apr 2012 11:44:09 +0100 Subject: [Cluster-devel] [GFS2 PATCH 1/5] GFS2: Rename function gfs2_close to gfs2_release In-Reply-To: <80cd3e23-ca11-41e1-afd2-dca372c39a08@zmail12.collab.prod.int.phx2.redhat.com> References: <80cd3e23-ca11-41e1-afd2-dca372c39a08@zmail12.collab.prod.int.phx2.redhat.com> Message-ID: <1334227449.2697.2.camel@menhir> List-Id: To: cluster-devel.redhat.com MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Hi, All five patches are in the -nmw tree now. Thanks, Steve. On Wed, 2012-04-11 at 12:56 -0400, Bob Peterson wrote: > Hi, > > This patch renames function gfs2_close to gfs2_release. > > Regards, > > Bob Peterson > Red Hat File Systems > > Signed-off-by: Bob Peterson > --- > From: Bob Peterson > Date: Mon, 12 Mar 2012 10:56:01 -0500 > Subject: [PATCH 1/5] GFS2: Rename function gfs2_close to gfs2_release > > VFS now calls a release function where it used to call a close > function. This patch renames gfs2_close to gfs2_release so that > it makes more sense to someone reading the code. > --- > fs/gfs2/file.c | 12 ++++++------ > 1 files changed, 6 insertions(+), 6 deletions(-) > > diff --git a/fs/gfs2/file.c b/fs/gfs2/file.c > index 7683458..916490f 100644 > --- a/fs/gfs2/file.c > +++ b/fs/gfs2/file.c > @@ -559,14 +559,14 @@ fail: > } > > /** > - * gfs2_close - called to close a struct file > + * gfs2_release - called to close a struct file > * @inode: the inode the struct file belongs to > * @file: the struct file being closed > * > * Returns: errno > */ > > -static int gfs2_close(struct inode *inode, struct file *file) > +static int gfs2_release(struct inode *inode, struct file *file) > { > struct gfs2_sbd *sdp = inode->i_sb->s_fs_info; > struct gfs2_file *fp; > @@ -1006,7 +1006,7 @@ const struct file_operations gfs2_file_fops = { > .unlocked_ioctl = gfs2_ioctl, > .mmap = gfs2_mmap, > .open = gfs2_open, > - .release = gfs2_close, > + .release = gfs2_release, > .fsync = gfs2_fsync, > .lock = gfs2_lock, > .flock = gfs2_flock, > @@ -1020,7 +1020,7 @@ const struct file_operations gfs2_dir_fops = { > .readdir = gfs2_readdir, > .unlocked_ioctl = gfs2_ioctl, > .open = gfs2_open, > - .release = gfs2_close, > + .release = gfs2_release, > .fsync = gfs2_fsync, > .lock = gfs2_lock, > .flock = gfs2_flock, > @@ -1038,7 +1038,7 @@ const struct file_operations gfs2_file_fops_nolock = { > .unlocked_ioctl = gfs2_ioctl, > .mmap = gfs2_mmap, > .open = gfs2_open, > - .release = gfs2_close, > + .release = gfs2_release, > .fsync = gfs2_fsync, > .splice_read = generic_file_splice_read, > .splice_write = generic_file_splice_write, > @@ -1050,7 +1050,7 @@ const struct file_operations gfs2_dir_fops_nolock = { > .readdir = gfs2_readdir, > .unlocked_ioctl = gfs2_ioctl, > .open = gfs2_open, > - .release = gfs2_close, > + .release = gfs2_release, > .fsync = gfs2_fsync, > .llseek = default_llseek, > };