All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] c/r: fix omitted parameter name error
@ 2010-03-28 16:21 Stanislav O. Bezzubtsev
       [not found] ` <1269793294-3853-1-git-send-email-stas.bezzubtsev-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
  0 siblings, 1 reply; 3+ messages in thread
From: Stanislav O. Bezzubtsev @ 2010-03-28 16:21 UTC (permalink / raw)
  To: orenl-eQaUEPhvms7ENvBUuze7eA
  Cc: containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA,
	Stanislav O. Bezzubtsev

Signed-off-by: Stanislav O. Bezzubtsev <stas.bezzubtsev-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
Reviewed-by: Matt Helsley <matthltc-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
---
 include/linux/dnotify.h |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/include/linux/dnotify.h b/include/linux/dnotify.h
index b9ce13c..7093052 100644
--- a/include/linux/dnotify.h
+++ b/include/linux/dnotify.h
@@ -38,7 +38,7 @@ static inline void dnotify_flush(struct file *filp, fl_owner_t id)
 {
 }
 
-static inline int is_dnotify_attached(struct file *)
+static inline int is_dnotify_attached(struct file *filp)
 {
 	return 0;
 }
-- 
1.6.3.3

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

* Re: [PATCH] c/r: fix omitted parameter name error
       [not found] ` <1269793294-3853-1-git-send-email-stas.bezzubtsev-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
@ 2010-03-29  7:41   ` Matt Helsley
  2010-03-29 22:27   ` Oren Laadan
  1 sibling, 0 replies; 3+ messages in thread
From: Matt Helsley @ 2010-03-29  7:41 UTC (permalink / raw)
  To: Stanislav O. Bezzubtsev
  Cc: containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA

On Sun, Mar 28, 2010 at 08:21:34PM +0400, Stanislav O. Bezzubtsev wrote:
> Signed-off-by: Stanislav O. Bezzubtsev <stas.bezzubtsev-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
> Reviewed-by: Matt Helsley <matthltc-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>

Thanks!

Cheers,
	-Matt Helsley

> ---
>  include/linux/dnotify.h |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
> 
> diff --git a/include/linux/dnotify.h b/include/linux/dnotify.h
> index b9ce13c..7093052 100644
> --- a/include/linux/dnotify.h
> +++ b/include/linux/dnotify.h
> @@ -38,7 +38,7 @@ static inline void dnotify_flush(struct file *filp, fl_owner_t id)
>  {
>  }
> 
> -static inline int is_dnotify_attached(struct file *)
> +static inline int is_dnotify_attached(struct file *filp)
>  {
>  	return 0;
>  }
> -- 
> 1.6.3.3
> 
> _______________________________________________
> Containers mailing list
> Containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org
> https://lists.linux-foundation.org/mailman/listinfo/containers

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

* Re: [PATCH] c/r: fix omitted parameter name error
       [not found] ` <1269793294-3853-1-git-send-email-stas.bezzubtsev-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
  2010-03-29  7:41   ` Matt Helsley
@ 2010-03-29 22:27   ` Oren Laadan
  1 sibling, 0 replies; 3+ messages in thread
From: Oren Laadan @ 2010-03-29 22:27 UTC (permalink / raw)
  To: Stanislav O. Bezzubtsev
  Cc: containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA


Queued for v21, thanks.

Stanislav O. Bezzubtsev wrote:
> Signed-off-by: Stanislav O. Bezzubtsev <stas.bezzubtsev-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
> Reviewed-by: Matt Helsley <matthltc-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
> ---
>  include/linux/dnotify.h |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
> 
> diff --git a/include/linux/dnotify.h b/include/linux/dnotify.h
> index b9ce13c..7093052 100644
> --- a/include/linux/dnotify.h
> +++ b/include/linux/dnotify.h
> @@ -38,7 +38,7 @@ static inline void dnotify_flush(struct file *filp, fl_owner_t id)
>  {
>  }
>  
> -static inline int is_dnotify_attached(struct file *)
> +static inline int is_dnotify_attached(struct file *filp)
>  {
>  	return 0;
>  }

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

end of thread, other threads:[~2010-03-29 22:27 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-03-28 16:21 [PATCH] c/r: fix omitted parameter name error Stanislav O. Bezzubtsev
     [not found] ` <1269793294-3853-1-git-send-email-stas.bezzubtsev-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2010-03-29  7:41   ` Matt Helsley
2010-03-29 22:27   ` Oren Laadan

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.