linux-fsdevel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] VFS: Fixup kerneldoc for generic_permission()
@ 2011-07-01 11:44 Tobias Klauser
  2011-07-06 16:00 ` Randy Dunlap
  0 siblings, 1 reply; 4+ messages in thread
From: Tobias Klauser @ 2011-07-01 11:44 UTC (permalink / raw)
  To: Alexander Viro; +Cc: Randy Dunlap, linux-fsdevel, linux-kernel

The flags parameter went away in
5c90c1601f00154f8695951469f25f33579272ed

Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
---
 fs/namei.c |    1 -
 1 files changed, 0 insertions(+), 1 deletions(-)

diff --git a/fs/namei.c b/fs/namei.c
index f181e4c..73fc34a 100644
--- a/fs/namei.c
+++ b/fs/namei.c
@@ -213,7 +213,6 @@ other_perms:
  * generic_permission -  check for access rights on a Posix-like filesystem
  * @inode:	inode to check access rights for
  * @mask:	right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
- * @flags:	IPERM_FLAG_ flags.
  *
  * Used to check for read/write/execute permissions on a file.
  * We use "fsuid" for this, letting us set arbitrary permissions
-- 
1.7.5.4


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] VFS: Fixup kerneldoc for generic_permission()
  2011-07-01 11:44 [PATCH] VFS: Fixup kerneldoc for generic_permission() Tobias Klauser
@ 2011-07-06 16:00 ` Randy Dunlap
  2011-07-06 20:02   ` Tobias Klauser
  0 siblings, 1 reply; 4+ messages in thread
From: Randy Dunlap @ 2011-07-06 16:00 UTC (permalink / raw)
  To: Tobias Klauser; +Cc: Alexander Viro, linux-fsdevel, linux-kernel

On Fri,  1 Jul 2011 13:44:51 +0200 Tobias Klauser wrote:

> The flags parameter went away in
> 5c90c1601f00154f8695951469f25f33579272ed

What git tree is that commit ID in?

This patch applies to linux-next, right?

> Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
> ---
>  fs/namei.c |    1 -
>  1 files changed, 0 insertions(+), 1 deletions(-)
> 
> diff --git a/fs/namei.c b/fs/namei.c
> index f181e4c..73fc34a 100644
> --- a/fs/namei.c
> +++ b/fs/namei.c
> @@ -213,7 +213,6 @@ other_perms:
>   * generic_permission -  check for access rights on a Posix-like filesystem
>   * @inode:	inode to check access rights for
>   * @mask:	right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
> - * @flags:	IPERM_FLAG_ flags.
>   *
>   * Used to check for read/write/execute permissions on a file.
>   * We use "fsuid" for this, letting us set arbitrary permissions
> -- 


---
~Randy
*** Remember to use Documentation/SubmitChecklist when testing your code ***

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] VFS: Fixup kerneldoc for generic_permission()
  2011-07-06 16:00 ` Randy Dunlap
@ 2011-07-06 20:02   ` Tobias Klauser
  2011-07-06 20:04     ` Randy Dunlap
  0 siblings, 1 reply; 4+ messages in thread
From: Tobias Klauser @ 2011-07-06 20:02 UTC (permalink / raw)
  To: Randy Dunlap; +Cc: Alexander Viro, linux-fsdevel, linux-kernel

On 2011-07-06 at 18:00:14 +0200, Randy Dunlap <rdunlap@xenotime.net> wrote:
> On Fri,  1 Jul 2011 13:44:51 +0200 Tobias Klauser wrote:
> 
> > The flags parameter went away in
> > 5c90c1601f00154f8695951469f25f33579272ed
> 
> What git tree is that commit ID in?

I made the patch against linux-next as of 1 July. The commit comes from
Al Viro's vfs-2.6 tree I guess.

> This patch applies to linux-next, right?

Yup, it should. Sorry, I should have mentioned that in the subject.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] VFS: Fixup kerneldoc for generic_permission()
  2011-07-06 20:02   ` Tobias Klauser
@ 2011-07-06 20:04     ` Randy Dunlap
  0 siblings, 0 replies; 4+ messages in thread
From: Randy Dunlap @ 2011-07-06 20:04 UTC (permalink / raw)
  To: Tobias Klauser; +Cc: Alexander Viro, linux-fsdevel, linux-kernel

On Wed, 6 Jul 2011 22:02:21 +0200 Tobias Klauser wrote:

> On 2011-07-06 at 18:00:14 +0200, Randy Dunlap <rdunlap@xenotime.net> wrote:
> > On Fri,  1 Jul 2011 13:44:51 +0200 Tobias Klauser wrote:
> > 
> > > The flags parameter went away in
> > > 5c90c1601f00154f8695951469f25f33579272ed
> > 
> > What git tree is that commit ID in?
> 
> I made the patch against linux-next as of 1 July. The commit comes from
> Al Viro's vfs-2.6 tree I guess.
> 
> > This patch applies to linux-next, right?
> 
> Yup, it should. Sorry, I should have mentioned that in the subject.
> --

Thanks.  Hopefully Al will merge it.  If he misses it, please resend it
and I can merge it.

---
~Randy
*** Remember to use Documentation/SubmitChecklist when testing your code ***

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2011-07-06 20:04 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-07-01 11:44 [PATCH] VFS: Fixup kerneldoc for generic_permission() Tobias Klauser
2011-07-06 16:00 ` Randy Dunlap
2011-07-06 20:02   ` Tobias Klauser
2011-07-06 20:04     ` Randy Dunlap

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).