From: Chris Ball Date: Wed, 4 Feb 2009 14:29:54 +0000 (-0500) Subject: Btrfs: Handle SGID bit when creating inodes X-Git-Tag: v2.6.29-rc4~9^2~9 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=8c087b5183adab186a298f2d6ed39aefdcae413c;p=~emulex%2Finfiniband.git Btrfs: Handle SGID bit when creating inodes Before this patch, new files/dirs would ignore the SGID bit on their parent directory and always be owned by the creating user's uid/gid. Signed-off-by: Chris Ball Signed-off-by: Chris Mason --- diff --git a/fs/btrfs/inode.c b/fs/btrfs/inode.c index 95ea58cb306..5792816d4fc 100644 --- a/fs/btrfs/inode.c +++ b/fs/btrfs/inode.c @@ -3472,7 +3472,14 @@ static struct inode *btrfs_new_inode(struct btrfs_trans_handle *trans, root->highest_inode = objectid; inode->i_uid = current_fsuid(); - inode->i_gid = current_fsgid(); + + if (dir->i_mode & S_ISGID) { + inode->i_gid = dir->i_gid; + if (S_ISDIR(mode)) + mode |= S_ISGID; + } else + inode->i_gid = current_fsgid(); + inode->i_mode = mode; inode->i_ino = objectid; inode_set_bytes(inode, 0);