mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 12:28:41 +08:00
[JFFS2] Fix build failure with !CONFIG_JFFS2_FS_WRITEBUFFER
Build failure introduced by 5bf1723723
[JFFS2] Write buffer offset adjustment for NOR-ECC (Sibley) flash
Signed-off-by: Steve Glendinning <steve.glendinning@smsc.com>
Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
This commit is contained in:
parent
0f0254fa8d
commit
f04de505e3
@ -261,9 +261,11 @@ static int jffs2_find_nextblock(struct jffs2_sb_info *c)
|
|||||||
|
|
||||||
jffs2_sum_reset_collected(c->summary); /* reset collected summary */
|
jffs2_sum_reset_collected(c->summary); /* reset collected summary */
|
||||||
|
|
||||||
|
#ifdef CONFIG_JFFS2_FS_WRITEBUFFER
|
||||||
/* adjust write buffer offset, else we get a non contiguous write bug */
|
/* adjust write buffer offset, else we get a non contiguous write bug */
|
||||||
if (!(c->wbuf_ofs % c->sector_size) && !c->wbuf_len)
|
if (!(c->wbuf_ofs % c->sector_size) && !c->wbuf_len)
|
||||||
c->wbuf_ofs = 0xffffffff;
|
c->wbuf_ofs = 0xffffffff;
|
||||||
|
#endif
|
||||||
|
|
||||||
D1(printk(KERN_DEBUG "jffs2_find_nextblock(): new nextblock = 0x%08x\n", c->nextblock->offset));
|
D1(printk(KERN_DEBUG "jffs2_find_nextblock(): new nextblock = 0x%08x\n", c->nextblock->offset));
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user