Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 318014
b: refs/heads/master
c: c1743cb
h: refs/heads/master
v: v3
  • Loading branch information
Anton Vorontsov authored and Greg Kroah-Hartman committed Jul 17, 2012
1 parent 650c21d commit e138313
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 8 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: 5ca5d4e61d0cac15f36160ab48425c6e43bf2e2f
refs/heads/master: c1743cbc8d20d208bb1d2b10598204f2d89b144c
10 changes: 4 additions & 6 deletions trunk/fs/pstore/ram_core.c
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ static void notrace persistent_ram_update_ecc(struct persistent_ram_zone *prz,
int ecc_size = prz->ecc_size;
int size = prz->ecc_block_size;

if (!prz->ecc)
if (!prz->ecc_size)
return;

block = buffer->data + (start & ~(ecc_block_size - 1));
Expand All @@ -133,7 +133,7 @@ static void persistent_ram_update_header_ecc(struct persistent_ram_zone *prz)
{
struct persistent_ram_buffer *buffer = prz->buffer;

if (!prz->ecc)
if (!prz->ecc_size)
return;

persistent_ram_encode_rs8(prz, (uint8_t *)buffer, sizeof(*buffer),
Expand All @@ -146,7 +146,7 @@ static void persistent_ram_ecc_old(struct persistent_ram_zone *prz)
uint8_t *block;
uint8_t *par;

if (!prz->ecc)
if (!prz->ecc_size)
return;

block = buffer->data;
Expand Down Expand Up @@ -181,7 +181,7 @@ static int persistent_ram_init_ecc(struct persistent_ram_zone *prz,
int ecc_symsize = 8;
int ecc_poly = 0x11d;

if (!prz->ecc)
if (!ecc_size)
return 0;

prz->ecc_block_size = 128;
Expand Down Expand Up @@ -395,8 +395,6 @@ static int __devinit persistent_ram_post_init(struct persistent_ram_zone *prz,
{
int ret;

prz->ecc = ecc_size;

ret = persistent_ram_init_ecc(prz, ecc_size);
if (ret)
return ret;
Expand Down
1 change: 0 additions & 1 deletion trunk/include/linux/pstore_ram.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ struct persistent_ram_zone {
size_t buffer_size;

/* ECC correction */
bool ecc;
char *par_buffer;
char *par_header;
struct rs_control *rs_decoder;
Expand Down

0 comments on commit e138313

Please sign in to comment.