Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 45699
b: refs/heads/master
c: 61a7e19
h: refs/heads/master
i:
  45697: cdaf6b5
  45695: c91787f
v: v3
  • Loading branch information
Artem Bityutskiy authored and Artem Bityutskiy committed Jan 10, 2007
1 parent f5ef8e4 commit cb8e5c5
Show file tree
Hide file tree
Showing 2 changed files with 10 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: 60d84f9739a47d0ed8e19805d9056e39fba31c79
refs/heads/master: 61a7e1983e773b93aac172dadc97f1eb484536b4
16 changes: 9 additions & 7 deletions trunk/drivers/mtd/onenand/onenand_base.c
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,6 @@ static int onenand_wait(struct mtd_info *mtd, int state)

if (state != FL_READING)
cond_resched();
touch_softlockup_watchdog();
}
/* To get correct interrupt status in timeout case */
interrupt = this->read_word(this->base + ONENAND_REG_INTERRUPT);
Expand Down Expand Up @@ -367,9 +366,6 @@ static int onenand_interrupt_wait(struct mtd_info *mtd, int state)
{
struct onenand_chip *this = mtd->priv;

/* To prevent soft lockup */
touch_softlockup_watchdog();

wait_for_completion(&this->complete);

return onenand_wait(mtd, state);
Expand All @@ -390,9 +386,6 @@ static int onenand_try_interrupt_wait(struct mtd_info *mtd, int state)
/* We use interrupt wait first */
this->wait = onenand_interrupt_wait;

/* To prevent soft lockup */
touch_softlockup_watchdog();

timeout = msecs_to_jiffies(100);
remain = wait_for_completion_timeout(&this->complete, timeout);
if (!remain) {
Expand Down Expand Up @@ -734,6 +727,8 @@ static int onenand_read(struct mtd_info *mtd, loff_t from, size_t len,

stats = mtd->ecc_stats;
while (read < len) {
cond_resched();

thislen = min_t(int, mtd->writesize, len - read);

column = from & (mtd->writesize - 1);
Expand Down Expand Up @@ -815,6 +810,8 @@ int onenand_do_read_oob(struct mtd_info *mtd, loff_t from, size_t len,
column = from & (mtd->oobsize - 1);

while (read < len) {
cond_resched();

thislen = mtd->oobsize - column;
thislen = min_t(int, thislen, len);

Expand Down Expand Up @@ -989,6 +986,8 @@ static int onenand_write(struct mtd_info *mtd, loff_t to, size_t len,
int thislen = min_t(int, bytes, len - written);
u_char *wbuf = (u_char *) buf;

cond_resched();

this->command(mtd, ONENAND_CMD_BUFFERRAM, to, bytes);

/* Partial page write */
Expand Down Expand Up @@ -1075,6 +1074,8 @@ static int onenand_do_write_oob(struct mtd_info *mtd, loff_t to, size_t len,
while (written < len) {
int thislen = min_t(int, mtd->oobsize, len - written);

cond_resched();

column = to & (mtd->oobsize - 1);

this->command(mtd, ONENAND_CMD_BUFFERRAM, to, mtd->oobsize);
Expand Down Expand Up @@ -1202,6 +1203,7 @@ static int onenand_erase(struct mtd_info *mtd, struct erase_info *instr)
instr->state = MTD_ERASING;

while (len) {
cond_resched();

/* Check if we have a bad block, we do not erase bad blocks */
if (onenand_block_checkbad(mtd, addr, 0, 0)) {
Expand Down

0 comments on commit cb8e5c5

Please sign in to comment.