[PATCH] AFS: fix compilation warning

From: Artem Bityutskiy
Date: Thu Jul 09 2009 - 02:15:10 EST


Fix the following warning:

fs/afs/dir.c: In function â??afs_d_revalidateâ??:
fs/afs/dir.c:567: warning: â??fid.vnodeâ?? may be used uninitialized in this function
fs/afs/dir.c:567: warning: â??fid.uniqueâ?? may be used uninitialized in this function

Cc: linux-afs@xxxxxxxxxxxxxxxxxxx
Cc: linux-kernel@xxxxxxxxxxxxxxx
Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@xxxxxxxxx>

---
fs/afs/dir.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/fs/afs/dir.c b/fs/afs/dir.c
index 9bd7577..88067f3 100644
--- a/fs/afs/dir.c
+++ b/fs/afs/dir.c
@@ -564,7 +564,7 @@ static struct dentry *afs_lookup(struct inode *dir, struct dentry *dentry,
static int afs_d_revalidate(struct dentry *dentry, struct nameidata *nd)
{
struct afs_vnode *vnode, *dir;
- struct afs_fid fid;
+ struct afs_fid uninitialized_var(fid);
struct dentry *parent;
struct key *key;
void *dir_version;
--
1.6.0.6

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/