diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2008-09-11 11:50:15 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-09-11 11:50:15 -0700 |
commit | a551b98d5f6fce5897d497abd8bfb262efb33d2a (patch) | |
tree | 60634dfa4e501486ac6f948fca57aeff49cb9aa0 /lib | |
parent | d1c6d2e547148c5aa0c0a4ff6aac82f7c6da1d8b (diff) | |
parent | 50bed2e2862a8f3a4f7d683d0d27292e71ef18b9 (diff) | |
download | linux-3.10-a551b98d5f6fce5897d497abd8bfb262efb33d2a.tar.gz linux-3.10-a551b98d5f6fce5897d497abd8bfb262efb33d2a.tar.bz2 linux-3.10-a551b98d5f6fce5897d497abd8bfb262efb33d2a.zip |
Merge branch 'for-linus' of git://git.kernel.dk/linux-2.6-block
* 'for-linus' of git://git.kernel.dk/linux-2.6-block:
sg: disable interrupts inside sg_copy_buffer
Diffstat (limited to 'lib')
-rw-r--r-- | lib/scatterlist.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/scatterlist.c b/lib/scatterlist.c index 876ba6d5b67..8d2688ff135 100644 --- a/lib/scatterlist.c +++ b/lib/scatterlist.c @@ -422,9 +422,12 @@ static size_t sg_copy_buffer(struct scatterlist *sgl, unsigned int nents, { unsigned int offset = 0; struct sg_mapping_iter miter; + unsigned long flags; sg_miter_start(&miter, sgl, nents, SG_MITER_ATOMIC); + local_irq_save(flags); + while (sg_miter_next(&miter) && offset < buflen) { unsigned int len; @@ -442,6 +445,7 @@ static size_t sg_copy_buffer(struct scatterlist *sgl, unsigned int nents, sg_miter_stop(&miter); + local_irq_restore(flags); return offset; } |