From: Dave Chinner Date: Thu, 25 Oct 2012 06:22:30 +0000 (+1100) Subject: xfs: silence uninitialised f.file warning. X-Git-Tag: v3.7-rc5~17^2~4 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1e7acbb7bc1ae7c1c62fd1310b3176a820225056;p=profile%2Fivi%2Fkernel-adaptation-intel-automotive.git xfs: silence uninitialised f.file warning. Uninitialised variable build warning introduced by 2903ff0 ("switch simple cases of fget_light to fdget"), gcc is not smart enough to work out that the variable is not used uninitialised, and the commit removed the initialisation at declaration that the old variable had. Signed-off-by: Dave Chinner Reviewed-by: Christoph Hellwig Reviewed-by: Mark Tinguely Signed-off-by: Ben Myers --- diff --git a/fs/xfs/xfs_ioctl.c b/fs/xfs/xfs_ioctl.c index 8305f2a..c1df3c6 100644 --- a/fs/xfs/xfs_ioctl.c +++ b/fs/xfs/xfs_ioctl.c @@ -70,7 +70,7 @@ xfs_find_handle( int hsize; xfs_handle_t handle; struct inode *inode; - struct fd f; + struct fd f = {0}; struct path path; int error; struct xfs_inode *ip;