Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755969Ab3GKKPT (ORCPT ); Thu, 11 Jul 2013 06:15:19 -0400 Received: from cn.fujitsu.com ([222.73.24.84]:7838 "EHLO song.cn.fujitsu.com" rhost-flags-OK-FAIL-OK-OK) by vger.kernel.org with ESMTP id S1755849Ab3GKKPR (ORCPT ); Thu, 11 Jul 2013 06:15:17 -0400 X-IronPort-AV: E=Sophos;i="4.87,1043,1363104000"; d="scan'208";a="7862848" Message-ID: <51DE84E6.80105@cn.fujitsu.com> Date: Thu, 11 Jul 2013 18:11:50 +0800 From: Gu Zheng User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:7.0.1) Gecko/20110930 Thunderbird/7.0.1 MIME-Version: 1.0 To: Andrew Morton , Mel Gorman , Al Viro , Benjamin CC: tangchen , KAMEZAWA Hiroyuki , linux-mm@kvack.org, linux-fsdevel , linux-kernel Subject: Re: [PATCH 1/2] fs/anon_inode: Introduce a new lib function, anon_inode_getfile_private() References: <51DA96BE.5080008@cn.fujitsu.com> In-Reply-To: <51DA96BE.5080008@cn.fujitsu.com> X-MIMETrack: Itemize by SMTP Server on mailserver/fnst(Release 8.5.3|September 15, 2011) at 2013/07/11 18:13:33, Serialize by Router on mailserver/fnst(Release 8.5.3|September 15, 2011) at 2013/07/11 18:13:33, Serialize complete at 2013/07/11 18:13:33 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=ISO-8859-1 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 3809 Lines: 116 ping... On 07/08/2013 06:38 PM, Gu Zheng wrote: > Introduce a new lib function anon_inode_getfile_private(), it creates a new file > instance by hooking it up to an anonymous inode, and a dentry that describe the > "class" of the file, similar to anon_inode_getfile(), but each file holds a > single inode. Furthermore, anyone who wants to create a private anon file will > benefit from this change. > > Signed-off-by: Gu Zheng > Signed-off-by: Benjamin LaHaise > --- > fs/anon_inodes.c | 66 +++++++++++++++++++++++++++++++++++++++++++ > include/linux/anon_inodes.h | 3 ++ > 2 files changed, 69 insertions(+), 0 deletions(-) > > diff --git a/fs/anon_inodes.c b/fs/anon_inodes.c > index 47a65df..85c9618 100644 > --- a/fs/anon_inodes.c > +++ b/fs/anon_inodes.c > @@ -109,6 +109,72 @@ static struct file_system_type anon_inode_fs_type = { > }; > > /** > + * anon_inode_getfile_private - creates a new file instance by hooking it up to an > + * anonymous inode, and a dentry that describe the "class" > + * of the file > + * > + * @name: [in] name of the "class" of the new file > + * @fops: [in] file operations for the new file > + * @priv: [in] private data for the new file (will be file's private_data) > + * @flags: [in] flags > + * > + * > + * Similar to anon_inode_getfile, but each file holds a single inode. > + * > + */ > +struct file *anon_inode_getfile_private(const char *name, > + const struct file_operations *fops, > + void *priv, int flags) > +{ > + struct qstr this; > + struct path path; > + struct file *file; > + struct inode *inode; > + > + if (fops->owner && !try_module_get(fops->owner)) > + return ERR_PTR(-ENOENT); > + > + inode = anon_inode_mkinode(anon_inode_mnt->mnt_sb); > + if (IS_ERR(inode)) { > + file = ERR_PTR(-ENOMEM); > + goto err_module; > + } > + > + /* > + * Link the inode to a directory entry by creating a unique name > + * using the inode sequence number. > + */ > + file = ERR_PTR(-ENOMEM); > + this.name = name; > + this.len = strlen(name); > + this.hash = 0; > + path.dentry = d_alloc_pseudo(anon_inode_mnt->mnt_sb, &this); > + if (!path.dentry) > + goto err_module; > + > + path.mnt = mntget(anon_inode_mnt); > + > + d_instantiate(path.dentry, inode); > + > + file = alloc_file(&path, OPEN_FMODE(flags), fops); > + if (IS_ERR(file)) > + goto err_dput; > + > + file->f_mapping = inode->i_mapping; > + file->f_flags = flags & (O_ACCMODE | O_NONBLOCK); > + file->private_data = priv; > + > + return file; > + > +err_dput: > + path_put(&path); > +err_module: > + module_put(fops->owner); > + return file; > +} > +EXPORT_SYMBOL_GPL(anon_inode_getfile_private); > + > +/** > * anon_inode_getfile - creates a new file instance by hooking it up to an > * anonymous inode, and a dentry that describe the "class" > * of the file > diff --git a/include/linux/anon_inodes.h b/include/linux/anon_inodes.h > index 8013a45..cf573c2 100644 > --- a/include/linux/anon_inodes.h > +++ b/include/linux/anon_inodes.h > @@ -13,6 +13,9 @@ struct file_operations; > struct file *anon_inode_getfile(const char *name, > const struct file_operations *fops, > void *priv, int flags); > +struct file *anon_inode_getfile_private(const char *name, > + const struct file_operations *fops, > + void *priv, int flags); > int anon_inode_getfd(const char *name, const struct file_operations *fops, > void *priv, int flags); > -- 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/