Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 243165
b: refs/heads/master
c: 7e75bf3
h: refs/heads/master
i:
  243163: ffef12e
v: v3
  • Loading branch information
David Sterba authored and root committed Mar 28, 2011
1 parent d7feec4 commit 734f277
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 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: db5b493ac78e46c7b6bad22cd25d8041564cd8ea
refs/heads/master: 7e75bf3ff3a716d7b21d8fb43bf823115801c1e9
3 changes: 2 additions & 1 deletion trunk/fs/btrfs/disk-io.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
#include <linux/crc32c.h>
#include <linux/slab.h>
#include <linux/migrate.h>
#include <asm/unaligned.h>
#include "compat.h"
#include "ctree.h"
#include "disk-io.h"
Expand Down Expand Up @@ -198,7 +199,7 @@ u32 btrfs_csum_data(struct btrfs_root *root, char *data, u32 seed, size_t len)

void btrfs_csum_final(u32 crc, char *result)
{
*(__le32 *)result = ~cpu_to_le32(crc);
put_unaligned_le32(~crc, result);
}

/*
Expand Down

0 comments on commit 734f277

Please sign in to comment.