Re: [patch resend 2/3] block, drbd: fix drbd_req_new() initialization

2015-03-24 Thread Jens Axboe
On 03/24/2015 05:22 PM, David Rientjes wrote: mempool_alloc() does not support __GFP_ZERO since elements may come from memory that has already been released by mempool_free(). Remove __GFP_ZERO from mempool_alloc() in drbd_req_new() and properly initialize it to 0. This (and the other drbd pat

[patch resend 2/3] block, drbd: fix drbd_req_new() initialization

2015-03-24 Thread David Rientjes
mempool_alloc() does not support __GFP_ZERO since elements may come from memory that has already been released by mempool_free(). Remove __GFP_ZERO from mempool_alloc() in drbd_req_new() and properly initialize it to 0. Cc: Lars Ellenberg Cc: Jens Axboe Signed-off-by: David Rientjes --- drive