Commit d4ef4e35 authored by Eric W. Biederman's avatar Eric W. Biederman

9p: Modify v9fs_get_fsgid_for_create to return a kgid

Modify v9fs_get_fsgid_for_create to return a kgid and modify all of
the variables that hold the result of v9fs_get_fsgid_for_create to be
of type kgid_t.

Cc: Eric Van Hensbergen <ericvh@gmail.com>
Cc: Ron Minnich <rminnich@gmail.com>
Cc: Latchesar Ionkov <lucho@ionkov.net>
Signed-off-by: default avatar"Eric W. Biederman" <ebiederm@xmission.com>
parent 76ed23a5
...@@ -57,7 +57,7 @@ v9fs_vfs_mknod_dotl(struct inode *dir, struct dentry *dentry, umode_t omode, ...@@ -57,7 +57,7 @@ v9fs_vfs_mknod_dotl(struct inode *dir, struct dentry *dentry, umode_t omode,
* group of the new file system object. * group of the new file system object.
*/ */
static gid_t v9fs_get_fsgid_for_create(struct inode *dir_inode) static kgid_t v9fs_get_fsgid_for_create(struct inode *dir_inode)
{ {
BUG_ON(dir_inode == NULL); BUG_ON(dir_inode == NULL);
...@@ -246,7 +246,7 @@ v9fs_vfs_atomic_open_dotl(struct inode *dir, struct dentry *dentry, ...@@ -246,7 +246,7 @@ v9fs_vfs_atomic_open_dotl(struct inode *dir, struct dentry *dentry,
int *opened) int *opened)
{ {
int err = 0; int err = 0;
gid_t gid; kgid_t gid;
umode_t mode; umode_t mode;
char *name = NULL; char *name = NULL;
struct p9_qid qid; struct p9_qid qid;
...@@ -391,7 +391,7 @@ static int v9fs_vfs_mkdir_dotl(struct inode *dir, ...@@ -391,7 +391,7 @@ static int v9fs_vfs_mkdir_dotl(struct inode *dir,
int err; int err;
struct v9fs_session_info *v9ses; struct v9fs_session_info *v9ses;
struct p9_fid *fid = NULL, *dfid = NULL; struct p9_fid *fid = NULL, *dfid = NULL;
gid_t gid; kgid_t gid;
char *name; char *name;
umode_t mode; umode_t mode;
struct inode *inode; struct inode *inode;
...@@ -692,7 +692,7 @@ v9fs_vfs_symlink_dotl(struct inode *dir, struct dentry *dentry, ...@@ -692,7 +692,7 @@ v9fs_vfs_symlink_dotl(struct inode *dir, struct dentry *dentry,
const char *symname) const char *symname)
{ {
int err; int err;
gid_t gid; kgid_t gid;
char *name; char *name;
struct p9_qid qid; struct p9_qid qid;
struct inode *inode; struct inode *inode;
...@@ -832,7 +832,7 @@ v9fs_vfs_mknod_dotl(struct inode *dir, struct dentry *dentry, umode_t omode, ...@@ -832,7 +832,7 @@ v9fs_vfs_mknod_dotl(struct inode *dir, struct dentry *dentry, umode_t omode,
dev_t rdev) dev_t rdev)
{ {
int err; int err;
gid_t gid; kgid_t gid;
char *name; char *name;
umode_t mode; umode_t mode;
struct v9fs_session_info *v9ses; struct v9fs_session_info *v9ses;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment