Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 72215
b: refs/heads/master
c: eb68450
h: refs/heads/master
i:
  72213: 4bc460c
  72211: 07c6851
  72207: 50de4a8
v: v3
  • Loading branch information
Jörn Engel authored and David Woodhouse committed Oct 20, 2007
1 parent fe80345 commit cf2e0b0
Show file tree
Hide file tree
Showing 5 changed files with 7 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: 1dd7fdb163645f453f5ae55686511b6fcc2314cd
refs/heads/master: eb684507159de2162cd6fc62f2b3a671afd5a61d
4 changes: 2 additions & 2 deletions trunk/drivers/mtd/nand/diskonchip.c
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ static int doc_ecc_decode(struct rs_control *rs, uint8_t *data, uint8_t *ecc)
}
}
/* If the parity is wrong, no rescue possible */
return parity ? -1 : nerr;
return parity ? -EBADMSG : nerr;
}

static void DoC_Delay(struct doc_priv *doc, unsigned short cycles)
Expand Down Expand Up @@ -1034,7 +1034,7 @@ static int doc200x_correct_data(struct mtd_info *mtd, u_char *dat,
WriteDOC(DOC_ECC_DIS, docptr, Mplus_ECCConf);
else
WriteDOC(DOC_ECC_DIS, docptr, ECCConf);
if (no_ecc_failures && (ret == -1)) {
if (no_ecc_failures && (ret == -EBADMSG)) {
printk(KERN_ERR "suppressing ECC failure\n");
ret = 0;
}
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/mtd/nand/nand_ecc.c
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ int nand_correct_data(struct mtd_info *mtd, u_char *dat,
if(countbits(s0 | ((uint32_t)s1 << 8) | ((uint32_t)s2 <<16)) == 1)
return 1;

return -1;
return -EBADMSG;
}
EXPORT_SYMBOL(nand_correct_data);

Expand Down
2 changes: 1 addition & 1 deletion trunk/lib/reed_solomon/decode_rs.c
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@
* deg(lambda) unequal to number of roots => uncorrectable
* error detected
*/
count = -1;
count = -EBADMSG;
goto finish;
}
/*
Expand Down
2 changes: 2 additions & 0 deletions trunk/lib/reed_solomon/reed_solomon.c
Original file line number Diff line number Diff line change
Expand Up @@ -320,6 +320,7 @@ EXPORT_SYMBOL_GPL(encode_rs8);
* The syndrome and parity uses a uint16_t data type to enable
* symbol size > 8. The calling code must take care of decoding of the
* syndrome result and the received parity before calling this code.
* Returns the number of corrected bits or -EBADMSG for uncorrectable errors.
*/
int decode_rs8(struct rs_control *rs, uint8_t *data, uint16_t *par, int len,
uint16_t *s, int no_eras, int *eras_pos, uint16_t invmsk,
Expand Down Expand Up @@ -363,6 +364,7 @@ EXPORT_SYMBOL_GPL(encode_rs16);
* @corr: buffer to store correction bitmask on eras_pos
*
* Each field in the data array contains up to symbol size bits of valid data.
* Returns the number of corrected bits or -EBADMSG for uncorrectable errors.
*/
int decode_rs16(struct rs_control *rs, uint16_t *data, uint16_t *par, int len,
uint16_t *s, int no_eras, int *eras_pos, uint16_t invmsk,
Expand Down

0 comments on commit cf2e0b0

Please sign in to comment.