On linux-next 20091030 I got this compile warning: fs/freevxfs/vxfs_lookup.c: In function ‘vxfs_lookup’: fs/freevxfs/vxfs_lookup.c:177: warning: ‘pp’ may be used uninitialized in this function fs/freevxfs/vxfs_lookup.c:177: note: ‘pp’ was declared here This patch solves the issue. Signed-off-by: Javier Martinez Canillas <martinez.javier@xxxxxxxxx> --- fs/freevxfs/vxfs_lookup.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/fs/freevxfs/vxfs_lookup.c b/fs/freevxfs/vxfs_lookup.c index aee049c..151b5e9 100644 --- a/fs/freevxfs/vxfs_lookup.c +++ b/fs/freevxfs/vxfs_lookup.c @@ -174,7 +174,7 @@ static ino_t vxfs_inode_by_name(struct inode *dip, struct dentry *dp) { struct vxfs_direct *de; - struct page *pp; + struct page *pp = NULL; ino_t ino = 0; de = vxfs_find_entry(dip, dp, &pp); -- 1.6.0.4 -- To unsubscribe from this list: send the line "unsubscribe kernel-janitors" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html