summaryrefslogtreecommitdiffstats
path: root/fs/btrfs/inode.c
diff options
context:
space:
mode:
authorChris Mason2008-05-02 22:13:49 +0200
committerChris Mason2008-09-25 17:04:02 +0200
commitb9d86667c94e5fe4bf9f6aa500e7ff1138e717ff (patch)
tree2932ca5389b8985b234bd3d59d0fbf1c04398927 /fs/btrfs/inode.c
parentBtrfs: Add workaround for AppArmor changing remove_suid() (diff)
downloadkernel-qcow2-linux-b9d86667c94e5fe4bf9f6aa500e7ff1138e717ff.tar.gz
kernel-qcow2-linux-b9d86667c94e5fe4bf9f6aa500e7ff1138e717ff.tar.xz
kernel-qcow2-linux-b9d86667c94e5fe4bf9f6aa500e7ff1138e717ff.zip
Btrfs: Silence bogus inode.c compiler warnings
Signed-off-by: Chris Mason <chris.mason@oracle.com>
Diffstat (limited to 'fs/btrfs/inode.c')
-rw-r--r--fs/btrfs/inode.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/btrfs/inode.c b/fs/btrfs/inode.c
index c6fae29c0b9e..5204599e4309 100644
--- a/fs/btrfs/inode.c
+++ b/fs/btrfs/inode.c
@@ -2035,12 +2035,12 @@ fail:
static int btrfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
{
- struct inode *inode;
+ struct inode *inode = NULL;
struct btrfs_trans_handle *trans;
struct btrfs_root *root = BTRFS_I(dir)->root;
int err = 0;
int drop_on_err = 0;
- u64 objectid;
+ u64 objectid = 0;
unsigned long nr = 1;
mutex_lock(&root->fs_info->fs_mutex);