Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 309823
b: refs/heads/master
c: 45eaa1c
h: refs/heads/master
i:
  309821: e3363ba
  309819: b95440e
  309815: 16a70fe
  309807: 5c959db
  309791: 00960bc
  309759: f82b8e1
v: v3
  • Loading branch information
J. Bruce Fields committed Jun 1, 2012
1 parent bb2c6b7 commit 457727d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 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: d1829b38241394c0c66d407a165fbd6d9897c241
refs/heads/master: 45eaa1c1a16122a98bf995c004c23806759d2e5f
4 changes: 2 additions & 2 deletions trunk/fs/nfsd/nfs4xdr.c
Original file line number Diff line number Diff line change
Expand Up @@ -1674,12 +1674,12 @@ nfsd4_decode_compound(struct nfsd4_compoundargs *argp)

static void write32(__be32 **p, u32 n)
{
*(*p)++ = n;
*(*p)++ = htonl(n);
}

static void write64(__be32 **p, u64 n)
{
write32(p, (u32)(n >> 32));
write32(p, (n >> 32));
write32(p, (u32)n);
}

Expand Down

0 comments on commit 457727d

Please sign in to comment.