public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [2.6 patch] #if 0 v9fs_fid_lookup_remove()
@ 2007-07-29 14:57 Adrian Bunk
  0 siblings, 0 replies; 3+ messages in thread
From: Adrian Bunk @ 2007-07-29 14:57 UTC (permalink / raw)
  To: Latchesar Ionkov, Eric Van Hensbergen, rminnich
  Cc: v9fs-developer, linux-kernel

This patch #if 0's the unused v9fs_fid_lookup_remove().

Signed-off-by: Adrian Bunk <bunk@stusta.de>

---

 fs/9p/fid.c |    2 ++
 fs/9p/fid.h |    1 -
 2 files changed, 2 insertions(+), 1 deletion(-)

--- linux-2.6.23-rc1-mm1/fs/9p/fid.h.old	2007-07-26 13:22:00.000000000 +0200
+++ linux-2.6.23-rc1-mm1/fs/9p/fid.h	2007-07-26 13:22:07.000000000 +0200
@@ -28,6 +28,5 @@
 };
 
 struct p9_fid *v9fs_fid_lookup(struct dentry *dentry);
-struct p9_fid *v9fs_fid_lookup_remove(struct dentry *dentry);
 struct p9_fid *v9fs_fid_clone(struct dentry *dentry);
 int v9fs_fid_add(struct dentry *dentry, struct p9_fid *fid);
--- linux-2.6.23-rc1-mm1/fs/9p/fid.c.old	2007-07-26 13:22:22.000000000 +0200
+++ linux-2.6.23-rc1-mm1/fs/9p/fid.c	2007-07-26 13:22:40.000000000 +0200
@@ -92,6 +92,7 @@
 	return fid;
 }
 
+#if 0
 struct p9_fid *v9fs_fid_lookup_remove(struct dentry *dentry)
 {
 	struct p9_fid *fid;
@@ -107,6 +108,7 @@
 
 	return fid;
 }
+#endif  /*  0  */
 
 
 /**


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

* [2.6 patch] #if 0 v9fs_fid_lookup_remove()
@ 2007-08-14 21:26 Adrian Bunk
  2007-08-15  3:08 ` Eric Van Hensbergen
  0 siblings, 1 reply; 3+ messages in thread
From: Adrian Bunk @ 2007-08-14 21:26 UTC (permalink / raw)
  To: Andrew Morton, Latchesar Ionkov, Eric Van Hensbergen, rminnich
  Cc: v9fs-developer, linux-kernel

This patch #if 0's the unused v9fs_fid_lookup_remove().

Signed-off-by: Adrian Bunk <bunk@kernel.org>

---

This patch has been sent on:
- 29 Jul 2007

 fs/9p/fid.c |    2 ++
 fs/9p/fid.h |    1 -
 2 files changed, 2 insertions(+), 1 deletion(-)

--- linux-2.6.23-rc1-mm1/fs/9p/fid.h.old	2007-07-26 13:22:00.000000000 +0200
+++ linux-2.6.23-rc1-mm1/fs/9p/fid.h	2007-07-26 13:22:07.000000000 +0200
@@ -28,6 +28,5 @@
 };
 
 struct p9_fid *v9fs_fid_lookup(struct dentry *dentry);
-struct p9_fid *v9fs_fid_lookup_remove(struct dentry *dentry);
 struct p9_fid *v9fs_fid_clone(struct dentry *dentry);
 int v9fs_fid_add(struct dentry *dentry, struct p9_fid *fid);
--- linux-2.6.23-rc1-mm1/fs/9p/fid.c.old	2007-07-26 13:22:22.000000000 +0200
+++ linux-2.6.23-rc1-mm1/fs/9p/fid.c	2007-07-26 13:22:40.000000000 +0200
@@ -92,6 +92,7 @@
 	return fid;
 }
 
+#if 0
 struct p9_fid *v9fs_fid_lookup_remove(struct dentry *dentry)
 {
 	struct p9_fid *fid;
@@ -107,6 +108,7 @@
 
 	return fid;
 }
+#endif  /*  0  */
 
 
 /**


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

* Re: [2.6 patch] #if 0 v9fs_fid_lookup_remove()
  2007-08-14 21:26 [2.6 patch] #if 0 v9fs_fid_lookup_remove() Adrian Bunk
@ 2007-08-15  3:08 ` Eric Van Hensbergen
  0 siblings, 0 replies; 3+ messages in thread
From: Eric Van Hensbergen @ 2007-08-15  3:08 UTC (permalink / raw)
  To: Adrian Bunk
  Cc: Andrew Morton, Latchesar Ionkov, rminnich, v9fs-developer,
	linux-kernel

Sorry- its in my merge queue, but I've been fighting other fires.
Will try and get this regression tested and merged into v9fs-devel
tomorrow afternoon along with a few other patches.

                -eric


On 8/14/07, Adrian Bunk <bunk@kernel.org> wrote:
> This patch #if 0's the unused v9fs_fid_lookup_remove().
>
> Signed-off-by: Adrian Bunk <bunk@kernel.org>
>
> ---
>
> This patch has been sent on:
> - 29 Jul 2007
>
>  fs/9p/fid.c |    2 ++
>  fs/9p/fid.h |    1 -
>  2 files changed, 2 insertions(+), 1 deletion(-)
>
> --- linux-2.6.23-rc1-mm1/fs/9p/fid.h.old        2007-07-26 13:22:00.000000000 +0200
> +++ linux-2.6.23-rc1-mm1/fs/9p/fid.h    2007-07-26 13:22:07.000000000 +0200
> @@ -28,6 +28,5 @@
>  };
>
>  struct p9_fid *v9fs_fid_lookup(struct dentry *dentry);
> -struct p9_fid *v9fs_fid_lookup_remove(struct dentry *dentry);
>  struct p9_fid *v9fs_fid_clone(struct dentry *dentry);
>  int v9fs_fid_add(struct dentry *dentry, struct p9_fid *fid);
> --- linux-2.6.23-rc1-mm1/fs/9p/fid.c.old        2007-07-26 13:22:22.000000000 +0200
> +++ linux-2.6.23-rc1-mm1/fs/9p/fid.c    2007-07-26 13:22:40.000000000 +0200
> @@ -92,6 +92,7 @@
>         return fid;
>  }
>
> +#if 0
>  struct p9_fid *v9fs_fid_lookup_remove(struct dentry *dentry)
>  {
>         struct p9_fid *fid;
> @@ -107,6 +108,7 @@
>
>         return fid;
>  }
> +#endif  /*  0  */
>
>
>  /**
>
>

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

end of thread, other threads:[~2007-08-15  3:08 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-08-14 21:26 [2.6 patch] #if 0 v9fs_fid_lookup_remove() Adrian Bunk
2007-08-15  3:08 ` Eric Van Hensbergen
  -- strict thread matches above, loose matches on Subject: below --
2007-07-29 14:57 Adrian Bunk

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox