Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 357764
b: refs/heads/master
c: ff3d004
h: refs/heads/master
v: v3
  • Loading branch information
Eric W. Biederman committed Feb 12, 2013
1 parent 9ec5bf0 commit c6d6c0b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: ab871b903e9095772c219b512d9eae96c4663a5d
refs/heads/master: ff3d0046625c1b37df37beb8477135d44dae2823
4 changes: 2 additions & 2 deletions trunk/fs/ceph/mds_client.c
Original file line number Diff line number Diff line change
Expand Up @@ -1658,8 +1658,8 @@ static struct ceph_msg *create_request_message(struct ceph_mds_client *mdsc,

head->mdsmap_epoch = cpu_to_le32(mdsc->mdsmap->m_epoch);
head->op = cpu_to_le32(req->r_op);
head->caller_uid = cpu_to_le32(req->r_uid);
head->caller_gid = cpu_to_le32(req->r_gid);
head->caller_uid = cpu_to_le32(from_kuid(&init_user_ns, req->r_uid));
head->caller_gid = cpu_to_le32(from_kgid(&init_user_ns, req->r_gid));
head->args = req->r_args;

ceph_encode_filepath(&p, end, ino1, path1);
Expand Down
4 changes: 2 additions & 2 deletions trunk/fs/ceph/mds_client.h
Original file line number Diff line number Diff line change
Expand Up @@ -184,8 +184,8 @@ struct ceph_mds_request {

union ceph_mds_request_args r_args;
int r_fmode; /* file mode, if expecting cap */
uid_t r_uid;
gid_t r_gid;
kuid_t r_uid;
kgid_t r_gid;

/* for choosing which mds to send this request to */
int r_direct_mode;
Expand Down

0 comments on commit c6d6c0b

Please sign in to comment.