From: Chris Mason Date: Thu, 20 Nov 2008 03:00:53 +0000 (-0500) Subject: Btrfs: Use current_fsuid/gid X-Git-Tag: v2.6.29-rc1~27^2~9^2~53 X-Git-Url: http://pilppa.com/gitweb/?a=commitdiff_plain;h=79683f2d685cfb6ef9c97c5194e3ce3319e80cac;p=linux-2.6-omap-h63xx.git Btrfs: Use current_fsuid/gid This fixes compile problems with linux-next Signed-off-by: Chris Mason --- diff --git a/fs/btrfs/inode.c b/fs/btrfs/inode.c index 806caacff86..2c77e0957f7 100644 --- a/fs/btrfs/inode.c +++ b/fs/btrfs/inode.c @@ -3422,8 +3422,8 @@ static struct inode *btrfs_new_inode(struct btrfs_trans_handle *trans, if (objectid > root->highest_inode) root->highest_inode = objectid; - inode->i_uid = current->fsuid; - inode->i_gid = current->fsgid; + inode->i_uid = current_fsuid(); + inode->i_gid = current_fsgid(); inode->i_mode = mode; inode->i_ino = objectid; inode_set_bytes(inode, 0);