[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <alpine.LFD.1.00.0804291610070.2548@localhost.localdomain>
Date: Tue, 29 Apr 2008 16:12:55 +0800 (CST)
From: WANG Cong <xiyou.wangcong@...il.com>
To: Jeff Dike <jdike@...toit.com>
cc: WANG Cong <xiyou.wangcong@...il.com>, akpm@...l.org,
linux-kernel@...r.kernel.org,
user-mode-linux-devel@...ts.sourceforge.net
Subject: Re: [PATCH 7/19] UML - Move hppfs_kern.c to hppfs.c
On Mon, 28 Apr 2008, Jeff Dike wrote:
> On Sat, Apr 26, 2008 at 05:17:55PM +0800, WANG Cong wrote:
>> > +static struct inode *get_inode(struct super_block *, struct dentry *);
>> > +
>> > +struct hppfs_data {
>> > + struct list_head list;
>> > + char contents[PAGE_SIZE - sizeof(struct list_head)];
>> > +};
>> > +
>> > +struct hppfs_private {
>> > + struct file *proc_file;
>> > + int host_fd;
>> > + loff_t len;
>> > + struct hppfs_data *contents;
>> > +};
>> > +
>> > +struct hppfs_inode_info {
>> > + struct dentry *proc_dentry;
>> > + struct inode vfs_inode;
>> > +};
>> > +
>> > +static inline struct hppfs_inode_info *HPPFS_I(struct inode *inode)
>> > +{
>> > + return container_of(inode, struct hppfs_inode_info, vfs_inode);
>> > +}
>> > +
>> > +#define HPPFS_SUPER_MAGIC 0xb00000ee
>>
>>
>> These can be put into a single header, e.g. hppfs.h.
>
> Why, when this one C file is the only user?
Just looks cleaner for me. ;-)
<snip>
>
> Oops, nice spotting.
>
> See what you think about the patch below...
<snip>
This patch looks OK for me. Thank you!
Cong
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists