[MTD] [OneNAND] omap2: panic_write may be in an interrupt context
panic_write may read in an interrupt context. Signed-off-by: Adrian Hunter <adrian.hunter@nokia.com> Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
This commit is contained in:
parent
17b536cc43
commit
a29f280b73
1 changed files with 4 additions and 0 deletions
|
@ -294,6 +294,10 @@ static int omap3_onenand_read_bufferram(struct mtd_info *mtd, int area,
|
||||||
if (bram_offset & 3 || (size_t)buf & 3 || count < 384)
|
if (bram_offset & 3 || (size_t)buf & 3 || count < 384)
|
||||||
goto out_copy;
|
goto out_copy;
|
||||||
|
|
||||||
|
/* panic_write() may be in an interrupt context */
|
||||||
|
if (in_interrupt())
|
||||||
|
goto out_copy;
|
||||||
|
|
||||||
if (buf >= high_memory) {
|
if (buf >= high_memory) {
|
||||||
struct page *p1;
|
struct page *p1;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue