Skip to content

Commit

Permalink
try to merge btrfs 3.14.1
Browse files Browse the repository at this point in the history
Conflicts:
	src/btrfs/disk-io.c
  • Loading branch information
Thomas Tsai committed May 14, 2014
1 parent e1aa90d commit 7c5d889
Show file tree
Hide file tree
Showing 29 changed files with 3,206 additions and 2,037 deletions.
4 changes: 2 additions & 2 deletions src/btrfs/crc32c.c
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ static uint32_t crc32c_intel_le_hw_byte(uint32_t crc, unsigned char const *data,
* Steps through buffer one byte at at time, calculates reflected
* crc using table.
*/
uint32_t crc32c_intel(u32 crc, unsigned char const *data, unsigned long length)
static uint32_t crc32c_intel(u32 crc, unsigned char const *data, unsigned long length)
{
unsigned int iquotient = length / SCALE_F;
unsigned int iremainder = length % SCALE_F;
Expand Down Expand Up @@ -100,7 +100,7 @@ static void do_cpuid(unsigned int *eax, unsigned int *ebx, unsigned int *ecx,
: "eax", "ebx", "ecx", "edx");
}

void crc32c_intel_probe(void)
static void crc32c_intel_probe(void)
{
if (!crc32c_probed) {
unsigned int eax, ebx, ecx, edx;
Expand Down
Loading

0 comments on commit 7c5d889

Please sign in to comment.