projects
/
profile
/
common
/
kernel-common.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
81744ee
)
block: Honor the gfp_mask for alloc_page() in blkdev_issue_discard()
author
OGAWA Hirofumi
<hirofumi@mail.parknet.co.jp>
Tue, 29 Dec 2009 07:53:54 +0000
(08:53 +0100)
committer
Jens Axboe
<jens.axboe@oracle.com>
Tue, 29 Dec 2009 07:53:54 +0000
(08:53 +0100)
Signed-off-by: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Signed-off-by: Jens Axboe <jens.axboe@oracle.com>
block/blk-barrier.c
patch
|
blob
|
history
diff --git
a/block/blk-barrier.c
b/block/blk-barrier.c
index
8873b9b
..
8618d89
100644
(file)
--- a/
block/blk-barrier.c
+++ b/
block/blk-barrier.c
@@
-402,7
+402,7
@@
int blkdev_issue_discard(struct block_device *bdev, sector_t sector,
* our current implementations need. If we'll ever need
* more the interface will need revisiting.
*/
- page = alloc_page(
GFP_KERNEL
| __GFP_ZERO);
+ page = alloc_page(
gfp_mask
| __GFP_ZERO);
if (!page)
goto out_free_bio;
if (bio_add_pc_page(q, bio, page, sector_size, 0) < sector_size)