[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20070416094225.2616c4b6.randy.dunlap@oracle.com>
Date: Mon, 16 Apr 2007 09:42:25 -0700
From: Randy Dunlap <randy.dunlap@...cle.com>
To: Andreas Gruenbacher <agruen@...e.de>
Cc: Christoph Hellwig <hch@...radead.org>, jjohansen@...e.de,
linux-kernel@...r.kernel.org,
linux-security-module@...r.kernel.org,
linux-fsdevel@...r.kernel.org, chrisw@...s-sol.org,
Tony Jones <tonyj@...e.de>
Subject: Re: [nameidata 2/2] Pass no useless nameidata to the create,
lookup, and permission IOPs
On Mon, 16 Apr 2007 18:29:20 +0200 Andreas Gruenbacher wrote:
> Here is a patch with request for comment.
>
> --- a/include/linux/namei.h
> +++ b/include/linux/namei.h
> @@ -14,21 +14,39 @@ struct open_intent {
>
> enum { MAX_NESTED_LINKS = 8 };
>
> +/**
Please don't use the kernel-doc begin-marker "/**" when the comment block
isn't in kernel-doc format.
> + * Fields shared between nameidata and nameidata2 -- nameidata2 could
> + * be embedded in nameidata, but then the vfs code would become
> + * cluttered with dereferences.
> + */
> +#define __NAMEIDATA2 \
> + struct dentry *dentry; \
> + struct vfsmount *mnt; \
> + unsigned int flags; \
> + \
> + union { \
> + struct open_intent open; \
> + } intent;
> +
---
~Randy
*** Remember to use Documentation/SubmitChecklist when testing your code ***
-
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